mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-15 22:05:39 +00:00
Update mark_watched doc
This commit is contained in:
parent
6b65df9cad
commit
b83889a20e
2 changed files with 4 additions and 3 deletions
|
@ -92,8 +92,9 @@ Alternatively, refer to the [developer instructions](#developer-instructions) fo
|
||||||
containing directory.
|
containing directory.
|
||||||
--flat-playlist Do not extract the videos of a
|
--flat-playlist Do not extract the videos of a
|
||||||
playlist, only list them.
|
playlist, only list them.
|
||||||
--mark-watched Mark videos watched
|
--mark-watched Mark videos watched (YouTube only)
|
||||||
--no-mark-watched Do not mark videos watched
|
--no-mark-watched Do not mark videos watched (YouTube
|
||||||
|
only)
|
||||||
--no-color Do not emit color codes in output
|
--no-color Do not emit color codes in output
|
||||||
|
|
||||||
## Network Options:
|
## Network Options:
|
||||||
|
|
|
@ -188,7 +188,7 @@ def parseOpts(overrideArguments=None):
|
||||||
general.add_option(
|
general.add_option(
|
||||||
'--mark-watched',
|
'--mark-watched',
|
||||||
action='store_true', dest='mark_watched', default=False,
|
action='store_true', dest='mark_watched', default=False,
|
||||||
help='Mark videos watched')
|
help='Mark videos watched (if supported for site)')
|
||||||
general.add_option(
|
general.add_option(
|
||||||
'--no-mark-watched',
|
'--no-mark-watched',
|
||||||
action='store_false', dest='mark_watched', default=False,
|
action='store_false', dest='mark_watched', default=False,
|
||||||
|
|
Loading…
Reference in a new issue