Allow users to specify an age limit (fixes #1545)
With these changes, users can now restrict what videos are downloaded by the intented audience, by specifying their age with --age-limit YEARS . Add rudimentary support in youtube, pornotube, and youporn.
This commit is contained in:
parent
f4aac741d5
commit
8dbe9899a9
7 changed files with 81 additions and 3 deletions
|
@ -188,6 +188,9 @@ def parseOpts(overrideArguments=None):
|
|||
selection.add_option('--datebefore', metavar='DATE', dest='datebefore', help='download only videos uploaded before this date', default=None)
|
||||
selection.add_option('--dateafter', metavar='DATE', dest='dateafter', help='download only videos uploaded after this date', default=None)
|
||||
selection.add_option('--no-playlist', action='store_true', dest='noplaylist', help='download only the currently playing video', default=False)
|
||||
selection.add_option('--age-limit', metavar='YEARS', dest='age_limit',
|
||||
help='download only videos suitable for the given age',
|
||||
default=None, type=int)
|
||||
|
||||
|
||||
authentication.add_option('-u', '--username',
|
||||
|
@ -631,6 +634,7 @@ def _real_main(argv=None):
|
|||
'daterange': date,
|
||||
'cachedir': opts.cachedir,
|
||||
'youtube_print_sig_code': opts.youtube_print_sig_code,
|
||||
'age_limit': opts.age_limit,
|
||||
})
|
||||
|
||||
if opts.verbose:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue