User:Zuhui/Prototyping/BASH: Difference between revisions
< User:Zuhui | Prototyping
(→Vosk 2) |
(→Vosk 2) |
||
Line 31: | Line 31: | ||
$ vosk-transcriber -l en-us -i adventure.wav -t json -o adventure.json | $ vosk-transcriber -l en-us -i adventure.wav -t json -o adventure.json | ||
$ ../py_script/srt2vtt.py adventure.json adventure_words.vtt | $ ../py_script/srt2vtt.py adventure.json adventure_words.vtt | ||
[https://hub.xpub.nl/cerealbox/~zuhui/transcriptt/interview/adventuretime_transcript_ver2.html ↘︎doesn't work and it's vtt file problem] | [https://hub.xpub.nl/cerealbox/~zuhui/transcriptt/interview/adventuretime_transcript_ver2.html ↘︎doesn't work and it's vtt file problem → ok now it works, used wrong python file to make vtt out of json] |
Revision as of 00:16, 26 November 2024
Scripts
yt-dlp
//go to directory I want to save the youtube file $yt-dlp (video url) //copy the name of the file $ffmpeg -i (name of the file) (filename+filetype) //this will convert to filetype that I want to download
Stream segments
Vosk
Vosk 2
251124 with Michael
Trial 1, with Adventure Time clip
$ yt-dlp "https://www.youtube.com/watch?v=qbsvZclUXh8" --write-info-json $ mv *.info.json *.webm interview/ $ ffmpeg -i adventure.webm adventure.wav $ vosk-transcriber -l en-us -i adventure.wav -t srt -o adventure.srt $ ../py_script/srt2vtt.py adventure.srt adventure.vtt $ chmod +x ../py_script/srt2vtt.py //if permission denied $ ffmpeg -i adventure.wav adventure.mp3 //for html
↘︎it works
Trial 2, with Json to vtt
$ vosk-transcriber -l en-us -i adventure.wav -t json -o adventure.json $ ../py_script/srt2vtt.py adventure.json adventure_words.vtt