mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-06-27 08:58:30 +00:00
Merge e5acc63c2e
into 06c1a8cdff
This commit is contained in:
commit
b8517221d0
@ -1693,7 +1693,12 @@ # Download the best video with worst codec no worse than h264,
|
|||||||
# or the best video with best codec if there is no such video
|
# or the best video with best codec if there is no such video
|
||||||
$ yt-dlp -S "+codec:h264"
|
$ yt-dlp -S "+codec:h264"
|
||||||
|
|
||||||
|
# Youtube added Dynamic Range Compression (DRC aka "Stable Volume")
|
||||||
|
# as a separate audio track. To avoid these altered tracks, you must
|
||||||
|
# exclude audio format IDs which end with "-drc": "251-drc" vs "251".
|
||||||
|
# Download audio only that's not .mp4 and does not end in "-drc":
|
||||||
|
# Note, you must use single-quotes in POSIX shell due to special characters.
|
||||||
|
$ yt-dlp -f 'bestaudio[ext!=mp4][format_id!$=-drc]'
|
||||||
|
|
||||||
# More complex examples
|
# More complex examples
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user