├── .github └── workflows │ └── publish.yml ├── .gitignore ├── Dockerfile ├── Dockerfile.cpu ├── LICENSE ├── README.md ├── figs ├── VAD_auditok.png ├── VAD_silero_v3.1.png ├── VAD_silero_v4.0.png └── example_alignement_plot.png ├── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── data │ ├── apollo11.mp3 │ ├── bonjour.wav │ ├── bonjour_vous_allez_bien.mp3 │ ├── empty.mp3 │ ├── empty.wav │ ├── gaenswein15.mp3 │ ├── gloria.mp3 │ ├── japanese.mp3 │ ├── laugh1.mp3 │ ├── laugh2.mp3 │ ├── no_punctuations.mp3.words.json │ ├── punctuations.mp3 │ ├── radio_short.mp3 │ ├── smartphone.mp3 │ ├── smartphone.mp3.words.json │ ├── words.wav │ └── yes_punctuations.mp3.words.json ├── expected │ ├── corner_cases.cpu │ │ ├── accurate.tiny_apollo11.mp3.words.json │ │ ├── large_apollo11.mp3.words.json │ │ ├── nocond.random_music.mp4.words.json │ │ ├── nocond_music.mp4.words.json │ │ ├── random.nocond_apollo11.mp3.words.json │ │ ├── random_apollo11.mp3.words.json │ │ └── stucked_lm_apollo11.mp3.words.json │ ├── corner_cases │ │ ├── accurate.tiny_apollo11.mp3.words.json │ │ ├── arabic.mp3.words.json │ │ ├── issue24_empty.wav.words.json │ │ ├── large-v2.accurate_gloria.mp3.words.json │ │ ├── large-v2.efficient_gloria.mp3.words.json │ │ ├── large_apollo11.mp3.words.json │ │ ├── medium.accurate_gloria.mp3.words.json │ │ ├── medium.efficient_gloria.mp3.words.json │ │ ├── nocond.random_music.mp4.words.json │ │ ├── nocond_music.mp4.words.json │ │ ├── random.nocond_apollo11.mp3.words.json │ │ ├── random_apollo11.mp3.words.json │ │ └── stucked_lm_apollo11.mp3.words.json │ ├── medium_auto.cpu │ │ ├── empty.mp3.words.json │ │ ├── radio_short.mp3.words.json │ │ └── smartphone.mp3.words.json │ ├── medium_auto │ │ ├── bonjour.wav.words.json │ │ ├── bonjour_vous_allez_bien.mp3.words.json │ │ ├── empty.mp3.words.json │ │ ├── gaenswein15.mp3.words.json │ │ ├── gloria.mp3.words.json │ │ ├── laugh1.mp3.words.json │ │ ├── laugh2.mp3.words.json │ │ ├── punctuations.mp3.words.json │ │ ├── radio_short.mp3.words.json │ │ └── smartphone.mp3.words.json │ ├── medium_fr.cpu │ │ ├── radio_short.mp3.words.json │ │ └── smartphone.mp3.words.json │ ├── medium_fr │ │ ├── bonjour.wav.words.json │ │ ├── bonjour_vous_allez_bien.mp3.words.json │ │ ├── empty.mp3.words.json │ │ ├── gaenswein15.mp3.words.json │ │ ├── gloria.mp3.words.json │ │ ├── laugh1.mp3.words.json │ │ ├── laugh2.mp3.words.json │ │ ├── punctuations.mp3.words.json │ │ ├── radio_short.mp3.words.json │ │ └── smartphone.mp3.words.json │ ├── naive.cpu │ │ ├── accurate_apollo11.mp3.words.json │ │ └── naive_apollo11.mp3.words.json │ ├── naive.cuda │ │ ├── accurate_apollo11.mp3.words.json │ │ └── naive_apollo11.mp3.words.json │ ├── naive │ │ ├── accurate_apollo11.mp3.words.json │ │ └── naive_apollo11.mp3.words.json │ ├── punctuations_no │ │ ├── bonjour.wav.csv │ │ ├── bonjour.wav.srt │ │ ├── bonjour.wav.tsv │ │ ├── bonjour.wav.txt │ │ ├── bonjour.wav.vtt │ │ ├── bonjour.wav.words.csv │ │ ├── bonjour.wav.words.json │ │ ├── bonjour.wav.words.srt │ │ ├── bonjour.wav.words.tsv │ │ ├── bonjour.wav.words.vtt │ │ ├── punctuations.mp3.csv │ │ ├── punctuations.mp3.srt │ │ ├── punctuations.mp3.tsv │ │ ├── punctuations.mp3.txt │ │ ├── punctuations.mp3.vtt │ │ ├── punctuations.mp3.words.csv │ │ ├── punctuations.mp3.words.json │ │ ├── punctuations.mp3.words.srt │ │ ├── punctuations.mp3.words.tsv │ │ └── punctuations.mp3.words.vtt │ ├── punctuations_yes │ │ ├── bonjour.wav.csv │ │ ├── bonjour.wav.srt │ │ ├── bonjour.wav.tsv │ │ ├── bonjour.wav.txt │ │ ├── bonjour.wav.vtt │ │ ├── bonjour.wav.words.csv │ │ ├── bonjour.wav.words.json │ │ ├── bonjour.wav.words.srt │ │ ├── bonjour.wav.words.tsv │ │ ├── bonjour.wav.words.vtt │ │ ├── punctuations.mp3.csv │ │ ├── punctuations.mp3.srt │ │ ├── punctuations.mp3.tsv │ │ ├── punctuations.mp3.txt │ │ ├── punctuations.mp3.vtt │ │ ├── punctuations.mp3.words.csv │ │ ├── punctuations.mp3.words.json │ │ ├── punctuations.mp3.words.srt │ │ ├── punctuations.mp3.words.tsv │ │ └── punctuations.mp3.words.vtt │ ├── small.en.cpu │ │ └── arabic.mp3.words.json │ ├── small.en │ │ └── arabic.mp3.words.json │ ├── split_subtitles │ │ ├── punctuations.mp3_20.srt │ │ ├── punctuations.mp3_20.vtt │ │ ├── punctuations.mp3_50.srt │ │ ├── punctuations.mp3_50.vtt │ │ ├── punctuations.mp3_6.srt │ │ ├── punctuations.mp3_6.vtt │ │ ├── smartphone.mp3_20.srt │ │ ├── smartphone.mp3_20.vtt │ │ ├── smartphone.mp3_50.srt │ │ ├── smartphone.mp3_50.vtt │ │ ├── smartphone.mp3_6.srt │ │ └── smartphone.mp3_6.vtt │ ├── tiny.en.cpu │ │ └── nocond_bonjour_vous_allez_bien.mp3.words.json │ ├── tiny.en │ │ ├── accurate_bonjour_vous_allez_bien.mp3.words.json │ │ ├── efficient_bonjour_vous_allez_bien.mp3.words.json │ │ └── nocond_bonjour_vous_allez_bien.mp3.words.json │ ├── tiny_auto.cpu │ │ ├── gaenswein15.mp3.words.json │ │ ├── radio_short.mp3.words.json │ │ └── smartphone.mp3.words.json │ ├── tiny_auto │ │ ├── accurate_japanese.mp3.words.json │ │ ├── accurate_jp_japanese.mp3.words.json │ │ ├── bonjour.wav.words.json │ │ ├── bonjour_vous_allez_bien.mp3.words.json │ │ ├── empty.mp3.words.json │ │ ├── gaenswein15.mp3.words.json │ │ ├── gloria.mp3.words.json │ │ ├── japanese.mp3.words.json │ │ ├── jp_japanese.mp3.words.json │ │ ├── laugh1.mp3.words.json │ │ ├── laugh2.mp3.words.json │ │ ├── punctuations.mp3.words.json │ │ ├── radio_short.mp3.words.json │ │ └── smartphone.mp3.words.json │ ├── tiny_fr.cpu │ │ ├── bonjour_vous_allez_bien.mp3.words.json │ │ ├── radio_short.mp3.words.json │ │ └── smartphone.mp3.words.json │ ├── tiny_fr │ │ ├── bonjour.wav.words.json │ │ ├── bonjour_vous_allez_bien.mp3.words.json │ │ ├── empty.mp3.words.json │ │ ├── gaenswein15.mp3.words.json │ │ ├── gloria.mp3.words.json │ │ ├── laugh1.mp3.words.json │ │ ├── laugh2.mp3.words.json │ │ ├── punctuations.mp3.words.json │ │ ├── radio_short.mp3.words.json │ │ └── smartphone.mp3.words.json │ ├── verbose.cpu │ │ ├── accurate.auto_bonjour_vous_allez_bien.mp3.stdout │ │ ├── accurate.fr_bonjour_vous_allez_bien.mp3.stdout │ │ ├── efficient.auto_bonjour_vous_allez_bien.mp3.stdout │ │ ├── efficient.fr_bonjour_vous_allez_bien.mp3.stdout │ │ └── hf_bonjour.wav.stdout │ └── verbose │ │ ├── accurate.auto_bonjour_vous_allez_bien.mp3.stdout │ │ ├── accurate.fr_bonjour_vous_allez_bien.mp3.stdout │ │ ├── efficient.auto_bonjour_vous_allez_bien.mp3.stdout │ │ ├── efficient.fr_bonjour_vous_allez_bien.mp3.stdout │ │ ├── hf_bonjour.wav.stdout │ │ ├── vad_auditok_words.wav.stdout │ │ ├── vad_silero3.0_words.wav.stdout │ │ ├── vad_silero3.1_words.wav.stdout │ │ └── vad_words.wav.stdout ├── json_schema.json ├── run_tests.py └── test_transcribe.py └── whisper_timestamped ├── __init__.py ├── make_subtitles.py └── transcribe.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/Dockerfile.cpu -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/README.md -------------------------------------------------------------------------------- /figs/VAD_auditok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/figs/VAD_auditok.png -------------------------------------------------------------------------------- /figs/VAD_silero_v3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/figs/VAD_silero_v3.1.png -------------------------------------------------------------------------------- /figs/VAD_silero_v4.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/figs/VAD_silero_v4.0.png -------------------------------------------------------------------------------- /figs/example_alignement_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/figs/example_alignement_plot.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/data/apollo11.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/apollo11.mp3 -------------------------------------------------------------------------------- /tests/data/bonjour.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/bonjour.wav -------------------------------------------------------------------------------- /tests/data/bonjour_vous_allez_bien.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/bonjour_vous_allez_bien.mp3 -------------------------------------------------------------------------------- /tests/data/empty.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/empty.mp3 -------------------------------------------------------------------------------- /tests/data/empty.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/empty.wav -------------------------------------------------------------------------------- /tests/data/gaenswein15.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/gaenswein15.mp3 -------------------------------------------------------------------------------- /tests/data/gloria.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/gloria.mp3 -------------------------------------------------------------------------------- /tests/data/japanese.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/japanese.mp3 -------------------------------------------------------------------------------- /tests/data/laugh1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/laugh1.mp3 -------------------------------------------------------------------------------- /tests/data/laugh2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/laugh2.mp3 -------------------------------------------------------------------------------- /tests/data/no_punctuations.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/no_punctuations.mp3.words.json -------------------------------------------------------------------------------- /tests/data/punctuations.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/punctuations.mp3 -------------------------------------------------------------------------------- /tests/data/radio_short.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/radio_short.mp3 -------------------------------------------------------------------------------- /tests/data/smartphone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/smartphone.mp3 -------------------------------------------------------------------------------- /tests/data/smartphone.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/smartphone.mp3.words.json -------------------------------------------------------------------------------- /tests/data/words.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/words.wav -------------------------------------------------------------------------------- /tests/data/yes_punctuations.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/data/yes_punctuations.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases.cpu/accurate.tiny_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases.cpu/accurate.tiny_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases.cpu/large_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases.cpu/large_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases.cpu/nocond.random_music.mp4.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases.cpu/nocond.random_music.mp4.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases.cpu/nocond_music.mp4.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases.cpu/nocond_music.mp4.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases.cpu/random.nocond_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases.cpu/random.nocond_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases.cpu/random_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases.cpu/random_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases.cpu/stucked_lm_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases.cpu/stucked_lm_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases/accurate.tiny_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases/accurate.tiny_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases/arabic.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases/arabic.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases/issue24_empty.wav.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases/issue24_empty.wav.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases/large-v2.accurate_gloria.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases/large-v2.accurate_gloria.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases/large-v2.efficient_gloria.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases/large-v2.efficient_gloria.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases/large_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases/large_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases/medium.accurate_gloria.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases/medium.accurate_gloria.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases/medium.efficient_gloria.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases/medium.efficient_gloria.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases/nocond.random_music.mp4.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases/nocond.random_music.mp4.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases/nocond_music.mp4.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases/nocond_music.mp4.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases/random.nocond_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases/random.nocond_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases/random_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases/random_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/corner_cases/stucked_lm_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/corner_cases/stucked_lm_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_auto.cpu/empty.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_auto.cpu/empty.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_auto.cpu/radio_short.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_auto.cpu/radio_short.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_auto.cpu/smartphone.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_auto.cpu/smartphone.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_auto/bonjour.wav.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_auto/bonjour.wav.words.json -------------------------------------------------------------------------------- /tests/expected/medium_auto/bonjour_vous_allez_bien.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_auto/bonjour_vous_allez_bien.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_auto/empty.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_auto/empty.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_auto/gaenswein15.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_auto/gaenswein15.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_auto/gloria.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_auto/gloria.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_auto/laugh1.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_auto/laugh1.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_auto/laugh2.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_auto/laugh2.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_auto/punctuations.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_auto/punctuations.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_auto/radio_short.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_auto/radio_short.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_auto/smartphone.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_auto/smartphone.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_fr.cpu/radio_short.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_fr.cpu/radio_short.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_fr.cpu/smartphone.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_fr.cpu/smartphone.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_fr/bonjour.wav.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_fr/bonjour.wav.words.json -------------------------------------------------------------------------------- /tests/expected/medium_fr/bonjour_vous_allez_bien.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_fr/bonjour_vous_allez_bien.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_fr/empty.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_fr/empty.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_fr/gaenswein15.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_fr/gaenswein15.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_fr/gloria.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_fr/gloria.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_fr/laugh1.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_fr/laugh1.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_fr/laugh2.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_fr/laugh2.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_fr/punctuations.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_fr/punctuations.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_fr/radio_short.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_fr/radio_short.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/medium_fr/smartphone.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/medium_fr/smartphone.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/naive.cpu/accurate_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/naive.cpu/accurate_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/naive.cpu/naive_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/naive.cpu/naive_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/naive.cuda/accurate_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/naive.cuda/accurate_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/naive.cuda/naive_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/naive.cuda/naive_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/naive/accurate_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/naive/accurate_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/naive/naive_apollo11.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/naive/naive_apollo11.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/punctuations_no/bonjour.wav.csv: -------------------------------------------------------------------------------- 1 | Bonjour !,0.14,0.94 2 | -------------------------------------------------------------------------------- /tests/expected/punctuations_no/bonjour.wav.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_no/bonjour.wav.srt -------------------------------------------------------------------------------- /tests/expected/punctuations_no/bonjour.wav.tsv: -------------------------------------------------------------------------------- 1 | start end text 2 | 140 940 Bonjour ! 3 | -------------------------------------------------------------------------------- /tests/expected/punctuations_no/bonjour.wav.txt: -------------------------------------------------------------------------------- 1 | Bonjour ! 2 | -------------------------------------------------------------------------------- /tests/expected/punctuations_no/bonjour.wav.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_no/bonjour.wav.vtt -------------------------------------------------------------------------------- /tests/expected/punctuations_no/bonjour.wav.words.csv: -------------------------------------------------------------------------------- 1 | Bonjour,0.14,0.94 2 | -------------------------------------------------------------------------------- /tests/expected/punctuations_no/bonjour.wav.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_no/bonjour.wav.words.json -------------------------------------------------------------------------------- /tests/expected/punctuations_no/bonjour.wav.words.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_no/bonjour.wav.words.srt -------------------------------------------------------------------------------- /tests/expected/punctuations_no/bonjour.wav.words.tsv: -------------------------------------------------------------------------------- 1 | start end text 2 | 140 940 Bonjour 3 | -------------------------------------------------------------------------------- /tests/expected/punctuations_no/bonjour.wav.words.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_no/bonjour.wav.words.vtt -------------------------------------------------------------------------------- /tests/expected/punctuations_no/punctuations.mp3.csv: -------------------------------------------------------------------------------- 1 | "Dis-moi, est-ce que l'avion vole ?",0.38,2.76 2 | -------------------------------------------------------------------------------- /tests/expected/punctuations_no/punctuations.mp3.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_no/punctuations.mp3.srt -------------------------------------------------------------------------------- /tests/expected/punctuations_no/punctuations.mp3.tsv: -------------------------------------------------------------------------------- 1 | start end text 2 | 380 2760 Dis-moi, est-ce que l'avion vole ? 3 | -------------------------------------------------------------------------------- /tests/expected/punctuations_no/punctuations.mp3.txt: -------------------------------------------------------------------------------- 1 | Dis-moi, est-ce que l'avion vole ? 2 | -------------------------------------------------------------------------------- /tests/expected/punctuations_no/punctuations.mp3.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_no/punctuations.mp3.vtt -------------------------------------------------------------------------------- /tests/expected/punctuations_no/punctuations.mp3.words.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_no/punctuations.mp3.words.csv -------------------------------------------------------------------------------- /tests/expected/punctuations_no/punctuations.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_no/punctuations.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/punctuations_no/punctuations.mp3.words.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_no/punctuations.mp3.words.srt -------------------------------------------------------------------------------- /tests/expected/punctuations_no/punctuations.mp3.words.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_no/punctuations.mp3.words.tsv -------------------------------------------------------------------------------- /tests/expected/punctuations_no/punctuations.mp3.words.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_no/punctuations.mp3.words.vtt -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/bonjour.wav.csv: -------------------------------------------------------------------------------- 1 | Bonjour !,0.14,0.94 2 | -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/bonjour.wav.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_yes/bonjour.wav.srt -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/bonjour.wav.tsv: -------------------------------------------------------------------------------- 1 | start end text 2 | 140 940 Bonjour ! 3 | -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/bonjour.wav.txt: -------------------------------------------------------------------------------- 1 | Bonjour ! 2 | -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/bonjour.wav.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_yes/bonjour.wav.vtt -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/bonjour.wav.words.csv: -------------------------------------------------------------------------------- 1 | Bonjour !,0.14,0.94 2 | -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/bonjour.wav.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_yes/bonjour.wav.words.json -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/bonjour.wav.words.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_yes/bonjour.wav.words.srt -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/bonjour.wav.words.tsv: -------------------------------------------------------------------------------- 1 | start end text 2 | 140 940 Bonjour ! 3 | -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/bonjour.wav.words.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_yes/bonjour.wav.words.vtt -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/punctuations.mp3.csv: -------------------------------------------------------------------------------- 1 | "Dis-moi, est-ce que l'avion vole ?",0.38,2.76 2 | -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/punctuations.mp3.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_yes/punctuations.mp3.srt -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/punctuations.mp3.tsv: -------------------------------------------------------------------------------- 1 | start end text 2 | 380 2760 Dis-moi, est-ce que l'avion vole ? 3 | -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/punctuations.mp3.txt: -------------------------------------------------------------------------------- 1 | Dis-moi, est-ce que l'avion vole ? 2 | -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/punctuations.mp3.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_yes/punctuations.mp3.vtt -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/punctuations.mp3.words.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_yes/punctuations.mp3.words.csv -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/punctuations.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_yes/punctuations.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/punctuations.mp3.words.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_yes/punctuations.mp3.words.srt -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/punctuations.mp3.words.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_yes/punctuations.mp3.words.tsv -------------------------------------------------------------------------------- /tests/expected/punctuations_yes/punctuations.mp3.words.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/punctuations_yes/punctuations.mp3.words.vtt -------------------------------------------------------------------------------- /tests/expected/small.en.cpu/arabic.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/small.en.cpu/arabic.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/small.en/arabic.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/small.en/arabic.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/split_subtitles/punctuations.mp3_20.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/split_subtitles/punctuations.mp3_20.srt -------------------------------------------------------------------------------- /tests/expected/split_subtitles/punctuations.mp3_20.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/split_subtitles/punctuations.mp3_20.vtt -------------------------------------------------------------------------------- /tests/expected/split_subtitles/punctuations.mp3_50.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/split_subtitles/punctuations.mp3_50.srt -------------------------------------------------------------------------------- /tests/expected/split_subtitles/punctuations.mp3_50.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/split_subtitles/punctuations.mp3_50.vtt -------------------------------------------------------------------------------- /tests/expected/split_subtitles/punctuations.mp3_6.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/split_subtitles/punctuations.mp3_6.srt -------------------------------------------------------------------------------- /tests/expected/split_subtitles/punctuations.mp3_6.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/split_subtitles/punctuations.mp3_6.vtt -------------------------------------------------------------------------------- /tests/expected/split_subtitles/smartphone.mp3_20.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/split_subtitles/smartphone.mp3_20.srt -------------------------------------------------------------------------------- /tests/expected/split_subtitles/smartphone.mp3_20.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/split_subtitles/smartphone.mp3_20.vtt -------------------------------------------------------------------------------- /tests/expected/split_subtitles/smartphone.mp3_50.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/split_subtitles/smartphone.mp3_50.srt -------------------------------------------------------------------------------- /tests/expected/split_subtitles/smartphone.mp3_50.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/split_subtitles/smartphone.mp3_50.vtt -------------------------------------------------------------------------------- /tests/expected/split_subtitles/smartphone.mp3_6.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/split_subtitles/smartphone.mp3_6.srt -------------------------------------------------------------------------------- /tests/expected/split_subtitles/smartphone.mp3_6.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/split_subtitles/smartphone.mp3_6.vtt -------------------------------------------------------------------------------- /tests/expected/tiny.en.cpu/nocond_bonjour_vous_allez_bien.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny.en.cpu/nocond_bonjour_vous_allez_bien.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny.en/accurate_bonjour_vous_allez_bien.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny.en/accurate_bonjour_vous_allez_bien.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny.en/efficient_bonjour_vous_allez_bien.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny.en/efficient_bonjour_vous_allez_bien.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny.en/nocond_bonjour_vous_allez_bien.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny.en/nocond_bonjour_vous_allez_bien.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto.cpu/gaenswein15.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto.cpu/gaenswein15.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto.cpu/radio_short.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto.cpu/radio_short.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto.cpu/smartphone.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto.cpu/smartphone.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto/accurate_japanese.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto/accurate_japanese.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto/accurate_jp_japanese.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto/accurate_jp_japanese.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto/bonjour.wav.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto/bonjour.wav.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto/bonjour_vous_allez_bien.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto/bonjour_vous_allez_bien.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto/empty.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto/empty.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto/gaenswein15.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto/gaenswein15.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto/gloria.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto/gloria.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto/japanese.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto/japanese.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto/jp_japanese.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto/jp_japanese.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto/laugh1.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto/laugh1.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto/laugh2.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto/laugh2.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto/punctuations.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto/punctuations.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto/radio_short.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto/radio_short.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_auto/smartphone.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_auto/smartphone.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_fr.cpu/bonjour_vous_allez_bien.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_fr.cpu/bonjour_vous_allez_bien.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_fr.cpu/radio_short.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_fr.cpu/radio_short.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_fr.cpu/smartphone.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_fr.cpu/smartphone.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_fr/bonjour.wav.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_fr/bonjour.wav.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_fr/bonjour_vous_allez_bien.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_fr/bonjour_vous_allez_bien.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_fr/empty.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_fr/empty.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_fr/gaenswein15.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_fr/gaenswein15.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_fr/gloria.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_fr/gloria.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_fr/laugh1.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_fr/laugh1.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_fr/laugh2.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_fr/laugh2.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_fr/punctuations.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_fr/punctuations.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_fr/radio_short.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_fr/radio_short.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/tiny_fr/smartphone.mp3.words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/tiny_fr/smartphone.mp3.words.json -------------------------------------------------------------------------------- /tests/expected/verbose.cpu/accurate.auto_bonjour_vous_allez_bien.mp3.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/verbose.cpu/accurate.auto_bonjour_vous_allez_bien.mp3.stdout -------------------------------------------------------------------------------- /tests/expected/verbose.cpu/accurate.fr_bonjour_vous_allez_bien.mp3.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/verbose.cpu/accurate.fr_bonjour_vous_allez_bien.mp3.stdout -------------------------------------------------------------------------------- /tests/expected/verbose.cpu/efficient.auto_bonjour_vous_allez_bien.mp3.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/verbose.cpu/efficient.auto_bonjour_vous_allez_bien.mp3.stdout -------------------------------------------------------------------------------- /tests/expected/verbose.cpu/efficient.fr_bonjour_vous_allez_bien.mp3.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/verbose.cpu/efficient.fr_bonjour_vous_allez_bien.mp3.stdout -------------------------------------------------------------------------------- /tests/expected/verbose.cpu/hf_bonjour.wav.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/verbose.cpu/hf_bonjour.wav.stdout -------------------------------------------------------------------------------- /tests/expected/verbose/accurate.auto_bonjour_vous_allez_bien.mp3.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/verbose/accurate.auto_bonjour_vous_allez_bien.mp3.stdout -------------------------------------------------------------------------------- /tests/expected/verbose/accurate.fr_bonjour_vous_allez_bien.mp3.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/verbose/accurate.fr_bonjour_vous_allez_bien.mp3.stdout -------------------------------------------------------------------------------- /tests/expected/verbose/efficient.auto_bonjour_vous_allez_bien.mp3.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/verbose/efficient.auto_bonjour_vous_allez_bien.mp3.stdout -------------------------------------------------------------------------------- /tests/expected/verbose/efficient.fr_bonjour_vous_allez_bien.mp3.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/verbose/efficient.fr_bonjour_vous_allez_bien.mp3.stdout -------------------------------------------------------------------------------- /tests/expected/verbose/hf_bonjour.wav.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/verbose/hf_bonjour.wav.stdout -------------------------------------------------------------------------------- /tests/expected/verbose/vad_auditok_words.wav.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/verbose/vad_auditok_words.wav.stdout -------------------------------------------------------------------------------- /tests/expected/verbose/vad_silero3.0_words.wav.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/verbose/vad_silero3.0_words.wav.stdout -------------------------------------------------------------------------------- /tests/expected/verbose/vad_silero3.1_words.wav.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/verbose/vad_silero3.1_words.wav.stdout -------------------------------------------------------------------------------- /tests/expected/verbose/vad_words.wav.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/expected/verbose/vad_words.wav.stdout -------------------------------------------------------------------------------- /tests/json_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/json_schema.json -------------------------------------------------------------------------------- /tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/run_tests.py -------------------------------------------------------------------------------- /tests/test_transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/tests/test_transcribe.py -------------------------------------------------------------------------------- /whisper_timestamped/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/whisper_timestamped/__init__.py -------------------------------------------------------------------------------- /whisper_timestamped/make_subtitles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/whisper_timestamped/make_subtitles.py -------------------------------------------------------------------------------- /whisper_timestamped/transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/whisper-timestamped/HEAD/whisper_timestamped/transcribe.py --------------------------------------------------------------------------------