yt-dlp: add pt_PT translation (#8936)

This commit is contained in:
Miguel Mano
2022-10-19 20:49:50 +01:00
committed by GitHub
parent 7112c19555
commit 8edd0814dd
2 changed files with 40 additions and 3 deletions

View File

@@ -8,15 +8,15 @@
`yt-dlp "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"`
- Download a video with a defined format. In this case merging the best video format with the best audio format (Default):
- Download a video with a defined format, in this case the best mp4 video available (default is "bv\*+ba/b"):
`yt-dlp --format "{{bv*+ba/b}}" "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"`
`yt-dlp --format "{{bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4]}}" "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"`
- Extract audio from videos (required ffmpeg or ffprobe):
`yt-dlp --extract-audio "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"`
- Specify audio format of extracted audio (best(default), aac, flac, mp3, m4a, opus, vorbis, wav, alac):
- Specify audio format of extracted audio (the default is "best"):
`yt-dlp --extract-audio --audio-format {{mp3}} "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"`