X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=youtube_dl%2F__init__.py;h=a948b1d90166efcc1181c868f17b0f254f7bdd11;hb=4ca5d43cd8c874da82be5754548d2419266cba19;hp=8f783a86c3218056cdb8d9f501fdc3d6278126ca;hpb=4950f30890495d76d0738b0fae252d4b509196e9;p=youtube-dl.git diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index 8f783a86c..a948b1d90 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -39,6 +39,7 @@ __authors__ = ( 'Sergey M.', 'Michael Orlitzky', 'Chris Gahan', + 'Saimadhav Heblikar', ) __license__ = 'Public Domain' @@ -237,7 +238,10 @@ def parseOpts(overrideArguments=None): selection.add_option('--download-archive', metavar='FILE', dest='download_archive', help='Download only videos not listed in the archive file. Record the IDs of all downloaded videos in it.') - + selection.add_option( + '--include-ads', dest='include_ads', + action='store_true', + help='Download advertisements as well (experimental)') authentication.add_option('-u', '--username', dest='username', metavar='USERNAME', help='account username') @@ -715,6 +719,7 @@ def _real_main(argv=None): 'bidi_workaround': opts.bidi_workaround, 'debug_printtraffic': opts.debug_printtraffic, 'prefer_ffmpeg': opts.prefer_ffmpeg, + 'include_ads': opts.include_ads, } with YoutubeDL(ydl_opts) as ydl: