User:Zuhui/Prototyping/BASH

From XPUB & Lens-Based wiki
< User:Zuhui‎ | Prototyping
Revision as of 11:43, 26 November 2024 by Zuhui (talk | contribs) (→‎Vosk 2)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Scripts

Tuesday with Manetta 151024

yt-dlp

151024 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

151024 stream segments

Vosk

151024 with Manetta

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

↘︎doesn't work and it's vtt file problem → ok now it works, used wrong python file to make vtt out of json

Command line