├── .dockerignore ├── .eslintrc.js ├── .github └── workflows │ └── render-video.yml ├── .gitignore ├── .prettierrc.js ├── .vscode └── settings.json ├── Dockerfile ├── README.md ├── assets ├── Background.jpg ├── font.css ├── fonts │ ├── CarosSoftHeavy.woff │ └── VisbyCF-Heavy.woff2 ├── france.svg └── theme.ts ├── package.json ├── remotion.config.ts ├── server.tsx ├── src ├── Video.tsx ├── WeatherComposition.tsx ├── WeatherScene │ ├── WeatherScene.tsx │ ├── components │ │ ├── MapLegend.tsx │ │ ├── Temperature.tsx │ │ ├── WeatherIcon.tsx │ │ ├── WeatherMap.tsx │ │ ├── WeatherMapBackground.tsx │ │ ├── icons │ │ │ ├── icon01d.tsx │ │ │ ├── icon01n.tsx │ │ │ ├── icon02d.tsx │ │ │ ├── icon02n.tsx │ │ │ ├── icon03d.tsx │ │ │ ├── icon03n.tsx │ │ │ ├── icon04d.tsx │ │ │ ├── icon04n.tsx │ │ │ ├── icon09d.tsx │ │ │ ├── icon09n.tsx │ │ │ ├── icon10d.tsx │ │ │ ├── icon10n.tsx │ │ │ ├── icon11d.tsx │ │ │ ├── icon11n.tsx │ │ │ ├── icon13d.tsx │ │ │ ├── icon13n.tsx │ │ │ ├── icon50d.tsx │ │ │ └── icon50n.tsx │ │ ├── useTranslate.tsx │ │ └── utils.ts │ └── interface.ts ├── api │ ├── api.js │ ├── citiesCoordinates copy.json │ ├── citiesCoordinates.json │ ├── rawData.json │ └── useGetWeatherData.ts ├── constants.ts └── index.tsx ├── tsconfig.json ├── yarn-error.log └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/render-video.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/.github/workflows/render-video.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/README.md -------------------------------------------------------------------------------- /assets/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/assets/Background.jpg -------------------------------------------------------------------------------- /assets/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/assets/font.css -------------------------------------------------------------------------------- /assets/fonts/CarosSoftHeavy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/assets/fonts/CarosSoftHeavy.woff -------------------------------------------------------------------------------- /assets/fonts/VisbyCF-Heavy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/assets/fonts/VisbyCF-Heavy.woff2 -------------------------------------------------------------------------------- /assets/france.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/assets/france.svg -------------------------------------------------------------------------------- /assets/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/assets/theme.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/package.json -------------------------------------------------------------------------------- /remotion.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/remotion.config.ts -------------------------------------------------------------------------------- /server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/server.tsx -------------------------------------------------------------------------------- /src/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/Video.tsx -------------------------------------------------------------------------------- /src/WeatherComposition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherComposition.tsx -------------------------------------------------------------------------------- /src/WeatherScene/WeatherScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/WeatherScene.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/MapLegend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/MapLegend.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/Temperature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/Temperature.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/WeatherIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/WeatherIcon.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/WeatherMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/WeatherMap.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/WeatherMapBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/WeatherMapBackground.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon01d.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon01d.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon01n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon01n.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon02d.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon02d.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon02n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon02n.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon03d.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon03d.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon03n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon03n.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon04d.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon04d.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon04n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon04n.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon09d.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon09d.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon09n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon09n.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon10d.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon10d.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon10n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon10n.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon11d.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon11d.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon11n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon11n.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon13d.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon13d.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon13n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon13n.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon50d.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon50d.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/icons/icon50n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/icons/icon50n.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/useTranslate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/useTranslate.tsx -------------------------------------------------------------------------------- /src/WeatherScene/components/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/components/utils.ts -------------------------------------------------------------------------------- /src/WeatherScene/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/WeatherScene/interface.ts -------------------------------------------------------------------------------- /src/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/api/api.js -------------------------------------------------------------------------------- /src/api/citiesCoordinates copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/api/citiesCoordinates copy.json -------------------------------------------------------------------------------- /src/api/citiesCoordinates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/api/citiesCoordinates.json -------------------------------------------------------------------------------- /src/api/rawData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/api/rawData.json -------------------------------------------------------------------------------- /src/api/useGetWeatherData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/api/useGetWeatherData.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentpergoud/remotion-weather/HEAD/yarn.lock --------------------------------------------------------------------------------