├── .eslintrc ├── .github └── workflows │ └── render-video.yml ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── out └── video.mp4 ├── package.json ├── remotion.config.ts ├── src ├── Composition.tsx ├── ToneJS │ ├── EndCard.tsx │ ├── Note.tsx │ └── index.tsx ├── Video.tsx └── index.tsx └── tsconfig.json /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@remotion" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/render-video.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/tone-js-example/HEAD/.github/workflows/render-video.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store 4 | 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/tone-js-example/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/tone-js-example/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/tone-js-example/HEAD/README.md -------------------------------------------------------------------------------- /out/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/tone-js-example/HEAD/out/video.mp4 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/tone-js-example/HEAD/package.json -------------------------------------------------------------------------------- /remotion.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/tone-js-example/HEAD/remotion.config.ts -------------------------------------------------------------------------------- /src/Composition.tsx: -------------------------------------------------------------------------------- 1 | export const MyComposition = () => { 2 | return null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/ToneJS/EndCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/tone-js-example/HEAD/src/ToneJS/EndCard.tsx -------------------------------------------------------------------------------- /src/ToneJS/Note.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/tone-js-example/HEAD/src/ToneJS/Note.tsx -------------------------------------------------------------------------------- /src/ToneJS/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/tone-js-example/HEAD/src/ToneJS/index.tsx -------------------------------------------------------------------------------- /src/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/tone-js-example/HEAD/src/Video.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/tone-js-example/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/tone-js-example/HEAD/tsconfig.json --------------------------------------------------------------------------------