Guest User

Untitled

a guest
Apr 2nd, 2025
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #!/bin/bash
  2. url=$1
  3. title=$(yt-dlp -J $url | jq '.title')
  4. yt-dlp -f "bestaudio/best" $url -o out.webm
  5. whisper-ctranslate2 out.webm --output_format srt --model turbo --language Japanese --compute_type auto
  6. rm out.webm
Advertisement
Add Comment
Please, Sign In to add comment