[YoutubeDL] Add wait-for-video yt-dlp option

This commit is contained in:
Emeric Verschuur
2022-09-01 09:05:11 +02:00
committed by Emeric Verschuur
parent 62a7ac8d8b
commit 95cbd4b69b
2 changed files with 2 additions and 0 deletions

View File

@@ -171,6 +171,7 @@ class Options
'no-flat-playlist' => 'the videos of a playlist',
'live-from-start' => 'livestreams from the start. Currently only supported for YouTube (Experimental)',
'no-live-from-start' => 'livestreams from the current time (default)',
'wait-for-video' => 'Wait for scheduled streams to become available. Pass the minimum number of seconds (or range) to wait between retries',
'no-wait-for-video' => 'not wait for scheduled streams (default)',
'no-colors' => 'not emit color codes in output',
'compat-options' => 'Options that can help keep compatibility with youtube-dl or youtube-dl-dlc configurations by reverting some of the',

View File

@@ -156,6 +156,7 @@ const options = {
"no-flat-playlist": "the videos of a playlist",
"live-from-start": "livestreams from the start. Currently only supported for YouTube (Experimental)",
"no-live-from-start": "livestreams from the current time (default)",
"wait-for-video": "Wait for scheduled streams to become available. Pass the minimum number of seconds (or range) to wait between retries",
"no-wait-for-video": "not wait for scheduled streams (default)",
"no-colors": "not emit color codes in output",
"compat-options": "Options that can help keep compatibility with ytdl or ytdl-dlc configurations by reverting some of the",