@ -42,7 +42,7 @@ Provide the complete verbose output of yt-dlp that clearly demonstrates the prob
Add the `-v` flag to your command line you run yt-dlp with (`yt-dlp -v <yourcommandline>`), copy the WHOLE output and insert it below. It should look similar to this:
Add the `-v` flag to your command line you run yt-dlp with (`yt-dlp -v <yourcommandline>`), copy the WHOLE output and insert it below. It should look similar to this:
@ -44,7 +44,7 @@ Provide the complete verbose output of yt-dlp that clearly demonstrates the prob
Add the `-v` flag to your command line you run yt-dlp with (`yt-dlp -v <yourcommandline>`), copy the WHOLE output and insert it below. It should look similar to this:
Add the `-v` flag to your command line you run yt-dlp with (`yt-dlp -v <yourcommandline>`), copy the WHOLE output and insert it below. It should look similar to this:
@ -42,7 +42,7 @@ Provide the complete verbose output of yt-dlp that clearly demonstrates the prob
Add the `-v` flag to your command line you run yt-dlp with (`yt-dlp -v <yourcommandline>`), copy the WHOLE output and insert it below. It should look similar to this:
Add the `-v` flag to your command line you run yt-dlp with (`yt-dlp -v <yourcommandline>`), copy the WHOLE output and insert it below. It should look similar to this:
@ -44,7 +44,7 @@ Provide the complete verbose output of yt-dlp that clearly demonstrates the prob
Add the `-v` flag to your command line you run yt-dlp with (`yt-dlp -v <yourcommandline>`), copy the WHOLE output and insert it below. It should look similar to this:
Add the `-v` flag to your command line you run yt-dlp with (`yt-dlp -v <yourcommandline>`), copy the WHOLE output and insert it below. It should look similar to this:
@ -1015,7 +1015,7 @@ Available only when used in `--print`:
Each aforementioned sequence when referenced in an output template will be replaced by the actual value corresponding to the sequence name. Note that some of the sequences are not guaranteed to be present since they depend on the metadata obtained by a particular extractor. Such sequences will be replaced with placeholder value provided with `--output-na-placeholder` (`NA` by default).
Each aforementioned sequence when referenced in an output template will be replaced by the actual value corresponding to the sequence name. Note that some of the sequences are not guaranteed to be present since they depend on the metadata obtained by a particular extractor. Such sequences will be replaced with placeholder value provided with `--output-na-placeholder` (`NA` by default).
For example for `-o %(title)s-%(id)s.%(ext)s` and an mp4 video with title `yt-dlp test video` and id `BaW_jenozKcj`, this will result in a `yt-dlp test video-BaW_jenozKcj.mp4` file created in the current directory.
For example for `-o %(title)s-%(id)s.%(ext)s` and an mp4 video with title `yt-dlp test video` and id `BaW_jenozKc`, this will result in a `yt-dlp test video-BaW_jenozKc.mp4` file created in the current directory.
For numeric sequences you can use numeric related formatting, for example, `%(view_count)05d` will result in a string with view count padded with zeros up to 5 characters, like in `00042`.
For numeric sequences you can use numeric related formatting, for example, `%(view_count)05d` will result in a string with view count padded with zeros up to 5 characters, like in `00042`.
Some extractors accept additional arguments which can be passed using `--extractor-args KEY:ARGS`. `ARGS` is a `;` (colon) seperated string of `ARG=VAL1,VAL2`. Eg: `--extractor-args youtube:skip=dash,hls`
Some extractors accept additional arguments which can be passed using `--extractor-args KEY:ARGS`. `ARGS` is a `;` (semicolon) seperated string of `ARG=VAL1,VAL2`. Eg: `--extractor-args youtube:skip=dash,hls`
The following extractors use this feature:
The following extractors use this feature:
* **youtube**
* **youtube**
* `skip`: `hls` or `dash` (or both) to skip download of the respective manifests
* `skip`: `hls` or `dash` (or both) to skip download of the respective manifests
* `player_client`: `web`(default) or `android` (force use the android client fallbacks for video extraction)
* `player_client`: `web` (default) or `android` (force use the android client fallbacks for video extraction)
* `player_skip`: `configs`- skip requests if applicable for client configs and use defaults
* `player_skip`: `configs` - skip requests if applicable for client configs and use defaults
NOTE: These options may be changed/removed in the future without concern for backward compatibility