From 66b5b61dcf6e2d44ff92d33e2580b7312c11f31e Mon Sep 17 00:00:00 2001 From: Topping1 <78745143+Topping1@users.noreply.github.com> Date: Mon, 10 Oct 2022 21:13:02 -0500 Subject: [PATCH 1/2] Update README.md Updated README.md to list new features, such as subtitle file support (VTT and SRT) --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index d8f6c937c20..9606f9f9038 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ High-performance inference of [OpenAI's Whisper](https://github.com/openai/whisp - Runs on the CPU - [C-style API](https://github.com/ggerganov/whisper.cpp/blob/master/whisper.h) - Supported platforms: Linux, Mac OS (Intel and Arm), Windows (MinGW), Raspberry Pi, Android +- Can output the transcription/translation to a text file or subtitle file (VTT or SRT formats) ## Usage @@ -45,8 +46,12 @@ options: -h, --help show this help message and exit -s SEED, --seed SEED RNG seed (default: -1) -t N, --threads N number of threads to use during computation (default: 4) + -o N, --offset N offset in milliseconds (default: 0) -v, --verbose verbose output --translate translate from source language to english + -otxt, --output-txt output result in a text file + -ovtt, --output-vtt output result in a vtt file + -osrt, --output-srt output result in a srt file -ps, --print_special print special tokens -nt, --no_timestamps do not print timestamps -l LANG, --language LANG spoken language (default: en) From d03cd9408c10cf6e51cf4b11a9da4d63261fcd5a Mon Sep 17 00:00:00 2001 From: Topping1 <78745143+Topping1@users.noreply.github.com> Date: Tue, 11 Oct 2022 20:08:56 -0500 Subject: [PATCH 2/2] Update README.md Co-authored-by: Georgi Gerganov --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 9606f9f9038..29ccc7487d2 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,6 @@ High-performance inference of [OpenAI's Whisper](https://github.com/openai/whisp - Runs on the CPU - [C-style API](https://github.com/ggerganov/whisper.cpp/blob/master/whisper.h) - Supported platforms: Linux, Mac OS (Intel and Arm), Windows (MinGW), Raspberry Pi, Android -- Can output the transcription/translation to a text file or subtitle file (VTT or SRT formats) ## Usage