├── .dockerignore ├── .env.example ├── .eslintrc ├── .github └── workflows │ └── render-video.yml ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── Dockerfile ├── README.md ├── package.json ├── remotion.config.ts ├── server.tsx ├── src ├── Timeline.tsx ├── Video.tsx ├── clips │ ├── 1-Intro.tsx │ ├── 2-Overall.tsx │ ├── 3-Devices.tsx │ ├── 4-VideoTitles.tsx │ ├── 5-States.tsx │ ├── 6-Browsers.tsx │ ├── 7-Outro.tsx │ ├── MuxLogo.tsx │ └── config.ts ├── components │ ├── Layout.tsx │ ├── MapChart.tsx │ ├── Measure.tsx │ ├── Trend.tsx │ └── icons │ │ ├── Desktop.tsx │ │ ├── Mobile.tsx │ │ ├── Play.tsx │ │ ├── Tablet.tsx │ │ ├── TrendingDown.tsx │ │ ├── TrendingUp.tsx │ │ └── Tv.tsx ├── index.tsx ├── scripts │ └── hydrate.ts ├── seeds │ ├── overall.json │ ├── unique_viewers_by_browser.json │ ├── unique_viewers_by_us_state.json │ ├── views_by_device.json │ └── views_by_title.json ├── static │ ├── MuxLogo.webm │ ├── audio.mp3 │ ├── clip-1.gif │ ├── clip-2.gif │ ├── clip-3.gif │ ├── clip-4.gif │ ├── clip-5.gif │ └── clip-intro.gif ├── style.css └── utils.tsx ├── tailwind.config.js └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/render-video.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/.github/workflows/render-video.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/package.json -------------------------------------------------------------------------------- /remotion.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/remotion.config.ts -------------------------------------------------------------------------------- /server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/server.tsx -------------------------------------------------------------------------------- /src/Timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/Timeline.tsx -------------------------------------------------------------------------------- /src/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/Video.tsx -------------------------------------------------------------------------------- /src/clips/1-Intro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/clips/1-Intro.tsx -------------------------------------------------------------------------------- /src/clips/2-Overall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/clips/2-Overall.tsx -------------------------------------------------------------------------------- /src/clips/3-Devices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/clips/3-Devices.tsx -------------------------------------------------------------------------------- /src/clips/4-VideoTitles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/clips/4-VideoTitles.tsx -------------------------------------------------------------------------------- /src/clips/5-States.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/clips/5-States.tsx -------------------------------------------------------------------------------- /src/clips/6-Browsers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/clips/6-Browsers.tsx -------------------------------------------------------------------------------- /src/clips/7-Outro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/clips/7-Outro.tsx -------------------------------------------------------------------------------- /src/clips/MuxLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/clips/MuxLogo.tsx -------------------------------------------------------------------------------- /src/clips/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/clips/config.ts -------------------------------------------------------------------------------- /src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/components/Layout.tsx -------------------------------------------------------------------------------- /src/components/MapChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/components/MapChart.tsx -------------------------------------------------------------------------------- /src/components/Measure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/components/Measure.tsx -------------------------------------------------------------------------------- /src/components/Trend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/components/Trend.tsx -------------------------------------------------------------------------------- /src/components/icons/Desktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/components/icons/Desktop.tsx -------------------------------------------------------------------------------- /src/components/icons/Mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/components/icons/Mobile.tsx -------------------------------------------------------------------------------- /src/components/icons/Play.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/components/icons/Play.tsx -------------------------------------------------------------------------------- /src/components/icons/Tablet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/components/icons/Tablet.tsx -------------------------------------------------------------------------------- /src/components/icons/TrendingDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/components/icons/TrendingDown.tsx -------------------------------------------------------------------------------- /src/components/icons/TrendingUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/components/icons/TrendingUp.tsx -------------------------------------------------------------------------------- /src/components/icons/Tv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/components/icons/Tv.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/scripts/hydrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/scripts/hydrate.ts -------------------------------------------------------------------------------- /src/seeds/overall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/seeds/overall.json -------------------------------------------------------------------------------- /src/seeds/unique_viewers_by_browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/seeds/unique_viewers_by_browser.json -------------------------------------------------------------------------------- /src/seeds/unique_viewers_by_us_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/seeds/unique_viewers_by_us_state.json -------------------------------------------------------------------------------- /src/seeds/views_by_device.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/seeds/views_by_device.json -------------------------------------------------------------------------------- /src/seeds/views_by_title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/seeds/views_by_title.json -------------------------------------------------------------------------------- /src/static/MuxLogo.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/static/MuxLogo.webm -------------------------------------------------------------------------------- /src/static/audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/static/audio.mp3 -------------------------------------------------------------------------------- /src/static/clip-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/static/clip-1.gif -------------------------------------------------------------------------------- /src/static/clip-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/static/clip-2.gif -------------------------------------------------------------------------------- /src/static/clip-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/static/clip-3.gif -------------------------------------------------------------------------------- /src/static/clip-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/static/clip-4.gif -------------------------------------------------------------------------------- /src/static/clip-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/static/clip-5.gif -------------------------------------------------------------------------------- /src/static/clip-intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/static/clip-intro.gif -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/style.css -------------------------------------------------------------------------------- /src/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/src/utils.tsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davekiss/mux-remotion-demo/HEAD/tsconfig.json --------------------------------------------------------------------------------