├── CODE_LICENSE ├── Makefile ├── README.md ├── audio_timecodes.txt ├── audio_timestamps.txt ├── isekai_ojisan_10_ffsubsync_english.vtt ├── isekai_ojisan_10_ffsubsync_japanese.vtt ├── isekai_ojisan_10_opus_english.vtt ├── isekai_ojisan_10_translation.vtt ├── isekai_ojisan_10_whisper_large_english.vtt ├── isekai_ojisan_10_whisper_small_english.vtt ├── isekai_ojisan_10_whisper_small_japanese.vtt ├── isekai_ojisan_11_ffsubsync_english.vtt ├── isekai_ojisan_11_ffsubsync_japanese.vtt ├── isekai_ojisan_11_translation.vtt ├── isekai_ojisan_11_whisper_large_english.vtt ├── isekai_ojisan_11_whisper_small_japanese.vtt └── snippets ├── Opus-MT ├── docker-compose.yaml └── services.json ├── audio_timecodes.txt ├── audio_timestamps.txt ├── autosync.sh ├── configAdd.el ├── enviromentvariables.sh ├── exportSubs.sh ├── formatToVtt.sh ├── functions.sh ├── installOpus.sh ├── modelToText.sh ├── mpvLoadSubs.sh ├── opus.sh ├── opusInstallExample.sh ├── sceneTimestamps.sh ├── setupModel.sh ├── speechTimestamps.sh ├── streamtranslate.sh ├── timeformat.sh └── vad.py /CODE_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/CODE_LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/README.md -------------------------------------------------------------------------------- /audio_timecodes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /audio_timestamps.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /isekai_ojisan_10_ffsubsync_english.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/isekai_ojisan_10_ffsubsync_english.vtt -------------------------------------------------------------------------------- /isekai_ojisan_10_ffsubsync_japanese.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/isekai_ojisan_10_ffsubsync_japanese.vtt -------------------------------------------------------------------------------- /isekai_ojisan_10_opus_english.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/isekai_ojisan_10_opus_english.vtt -------------------------------------------------------------------------------- /isekai_ojisan_10_translation.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/isekai_ojisan_10_translation.vtt -------------------------------------------------------------------------------- /isekai_ojisan_10_whisper_large_english.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/isekai_ojisan_10_whisper_large_english.vtt -------------------------------------------------------------------------------- /isekai_ojisan_10_whisper_small_english.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/isekai_ojisan_10_whisper_small_english.vtt -------------------------------------------------------------------------------- /isekai_ojisan_10_whisper_small_japanese.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/isekai_ojisan_10_whisper_small_japanese.vtt -------------------------------------------------------------------------------- /isekai_ojisan_11_ffsubsync_english.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/isekai_ojisan_11_ffsubsync_english.vtt -------------------------------------------------------------------------------- /isekai_ojisan_11_ffsubsync_japanese.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/isekai_ojisan_11_ffsubsync_japanese.vtt -------------------------------------------------------------------------------- /isekai_ojisan_11_translation.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/isekai_ojisan_11_translation.vtt -------------------------------------------------------------------------------- /isekai_ojisan_11_whisper_large_english.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/isekai_ojisan_11_whisper_large_english.vtt -------------------------------------------------------------------------------- /isekai_ojisan_11_whisper_small_japanese.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/isekai_ojisan_11_whisper_small_japanese.vtt -------------------------------------------------------------------------------- /snippets/Opus-MT/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/Opus-MT/docker-compose.yaml -------------------------------------------------------------------------------- /snippets/Opus-MT/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/Opus-MT/services.json -------------------------------------------------------------------------------- /snippets/audio_timecodes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/audio_timestamps.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/autosync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/autosync.sh -------------------------------------------------------------------------------- /snippets/configAdd.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/configAdd.el -------------------------------------------------------------------------------- /snippets/enviromentvariables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/enviromentvariables.sh -------------------------------------------------------------------------------- /snippets/exportSubs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/exportSubs.sh -------------------------------------------------------------------------------- /snippets/formatToVtt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/formatToVtt.sh -------------------------------------------------------------------------------- /snippets/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/functions.sh -------------------------------------------------------------------------------- /snippets/installOpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/installOpus.sh -------------------------------------------------------------------------------- /snippets/modelToText.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/modelToText.sh -------------------------------------------------------------------------------- /snippets/mpvLoadSubs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/mpvLoadSubs.sh -------------------------------------------------------------------------------- /snippets/opus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/opus.sh -------------------------------------------------------------------------------- /snippets/opusInstallExample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/opusInstallExample.sh -------------------------------------------------------------------------------- /snippets/sceneTimestamps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/sceneTimestamps.sh -------------------------------------------------------------------------------- /snippets/setupModel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/setupModel.sh -------------------------------------------------------------------------------- /snippets/speechTimestamps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/speechTimestamps.sh -------------------------------------------------------------------------------- /snippets/streamtranslate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/streamtranslate.sh -------------------------------------------------------------------------------- /snippets/timeformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/timeformat.sh -------------------------------------------------------------------------------- /snippets/vad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekakutli/anime_translation/HEAD/snippets/vad.py --------------------------------------------------------------------------------