Spaces:
Running
Running
File size: 312 Bytes
629187a 19f1cf0 629187a 19f1cf0 629187a |
1 2 3 4 5 6 7 8 9 |
#!/bin/bash
# https://www.youtube.com/watch?v=-v6M_MEbkbI
video_url=$1
uuid_dir=$(uuidgen)
yt-dlp --write-auto-subs --sub-lang en --convert-subs srt --skip-download -P "home:$uuid_dir" $video_url
yt-dlp --write-subs --sub-lang en --convert-subs srt --skip-download -P "home:$uuid_dir" $video_url
echo $uuid_dir
|