├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── audit.yml │ ├── check.yml │ ├── examples.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── _typos.toml ├── examples ├── demo.sh ├── demo.typ ├── first.sh ├── first.typ ├── google.sh ├── google.typ ├── math.typ ├── zonos.sh └── zonos.typ ├── src ├── audio.rs ├── image.rs ├── main.rs ├── path.rs ├── scripts │ ├── cleanup-tags.sh │ └── release.sh ├── slide.rs ├── video.rs └── watch.rs └── tests ├── cli.rs ├── common └── mod.rs ├── examples.rs ├── test_cache.typ ├── test_duration_matches.typ ├── test_elevenlabs.typ ├── test_google.typ ├── test_notes.typ └── test_openai_compatible.typ /.gitattributes: -------------------------------------------------------------------------------- 1 | src/scripts/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/.github/workflows/audit.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/.github/workflows/examples.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/README.md -------------------------------------------------------------------------------- /_typos.toml: -------------------------------------------------------------------------------- 1 | [default.extend-words] 2 | typ = "typ" -------------------------------------------------------------------------------- /examples/demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/examples/demo.sh -------------------------------------------------------------------------------- /examples/demo.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/examples/demo.typ -------------------------------------------------------------------------------- /examples/first.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/examples/first.sh -------------------------------------------------------------------------------- /examples/first.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/examples/first.typ -------------------------------------------------------------------------------- /examples/google.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/examples/google.sh -------------------------------------------------------------------------------- /examples/google.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/examples/google.typ -------------------------------------------------------------------------------- /examples/math.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/examples/math.typ -------------------------------------------------------------------------------- /examples/zonos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/examples/zonos.sh -------------------------------------------------------------------------------- /examples/zonos.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/examples/zonos.typ -------------------------------------------------------------------------------- /src/audio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/src/audio.rs -------------------------------------------------------------------------------- /src/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/src/image.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/src/path.rs -------------------------------------------------------------------------------- /src/scripts/cleanup-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/src/scripts/cleanup-tags.sh -------------------------------------------------------------------------------- /src/scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/src/scripts/release.sh -------------------------------------------------------------------------------- /src/slide.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/src/slide.rs -------------------------------------------------------------------------------- /src/video.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/src/video.rs -------------------------------------------------------------------------------- /src/watch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/src/watch.rs -------------------------------------------------------------------------------- /tests/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/tests/cli.rs -------------------------------------------------------------------------------- /tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/tests/common/mod.rs -------------------------------------------------------------------------------- /tests/examples.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/tests/examples.rs -------------------------------------------------------------------------------- /tests/test_cache.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/tests/test_cache.typ -------------------------------------------------------------------------------- /tests/test_duration_matches.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/tests/test_duration_matches.typ -------------------------------------------------------------------------------- /tests/test_elevenlabs.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/tests/test_elevenlabs.typ -------------------------------------------------------------------------------- /tests/test_google.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/tests/test_google.typ -------------------------------------------------------------------------------- /tests/test_notes.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/tests/test_notes.typ -------------------------------------------------------------------------------- /tests/test_openai_compatible.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformrs/trv/HEAD/tests/test_openai_compatible.typ --------------------------------------------------------------------------------