Open barrars opened 7 months ago
The multi-output support currently only works for multiple inputs:
stable-ts 1.mp3 2.mp3 -o 1.srt 2.srt
To avoid re-transcribing, you can do this:
stable-ts sound.mp3 -o out.json
stable-ts out.json -o out.txt
stable-ts out.json -o out.ass
You can use --persist
/-p
with the first line avoid reloading stable-ts.
Thanks for the help!
I want to run stable-ts on an mp3 and output both
.txt
file and.ass
at the same time.neither of these work:
stable-ts sound.mp3 -o out.txt out.ass
stable-ts sound.mp3 -o out.txt -o out.ass