├── .gitignore ├── .prettierrc ├── README.md ├── eslint.config.mjs ├── package.json ├── public ├── sample-video.mp4 ├── theboldfont-license.rtf └── theboldfont.ttf ├── remotion.config.ts ├── src ├── CaptionedVideo │ ├── NoCaptionFile.tsx │ ├── Page.tsx │ ├── SubtitlePage.tsx │ └── index.tsx ├── Root.tsx ├── index.ts └── load-font.ts ├── sub.mjs ├── tsconfig.json └── whisper-config.mjs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/package.json -------------------------------------------------------------------------------- /public/sample-video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/public/sample-video.mp4 -------------------------------------------------------------------------------- /public/theboldfont-license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/public/theboldfont-license.rtf -------------------------------------------------------------------------------- /public/theboldfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/public/theboldfont.ttf -------------------------------------------------------------------------------- /remotion.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/remotion.config.ts -------------------------------------------------------------------------------- /src/CaptionedVideo/NoCaptionFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/src/CaptionedVideo/NoCaptionFile.tsx -------------------------------------------------------------------------------- /src/CaptionedVideo/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/src/CaptionedVideo/Page.tsx -------------------------------------------------------------------------------- /src/CaptionedVideo/SubtitlePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/src/CaptionedVideo/SubtitlePage.tsx -------------------------------------------------------------------------------- /src/CaptionedVideo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/src/CaptionedVideo/index.tsx -------------------------------------------------------------------------------- /src/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/src/Root.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/load-font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/src/load-font.ts -------------------------------------------------------------------------------- /sub.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/sub.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/tsconfig.json -------------------------------------------------------------------------------- /whisper-config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/template-tiktok/HEAD/whisper-config.mjs --------------------------------------------------------------------------------