4 from __future__ 
import unicode_literals
 
   6 __license__ 
= 'Public Domain' 
  15 from .options 
import ( 
  22     workaround_optparse_bug9161
, 
  39 from .update 
import update_self
 
  40 from .downloader 
import ( 
  43 from .extractor 
import gen_extractors
, list_extractors
 
  44 from .extractor
.adobepass 
import MSO_INFO
 
  45 from .YoutubeDL 
import YoutubeDL
 
  48 def _real_main(argv
=None): 
  49     # Compatibility fixes for Windows 
  50     if sys
.platform 
== 'win32': 
  51         # https://github.com/rg3/youtube-dl/issues/820 
  52         codecs
.register(lambda name
: codecs
.lookup('utf-8') if name 
== 'cp65001' else None) 
  54     workaround_optparse_bug9161() 
  56     setproctitle('youtube-dl') 
  58     parser
, opts
, args 
= parseOpts(argv
) 
  61     if opts
.user_agent 
is not None: 
  62         std_headers
['User-Agent'] = opts
.user_agent
 
  65     if opts
.referer 
is not None: 
  66         std_headers
['Referer'] = opts
.referer
 
  69     if opts
.headers 
is not None: 
  70         for h 
in opts
.headers
: 
  72                 parser
.error('wrong header formatting, it should be key:value, not "%s"' % h
) 
  73             key
, value 
= h
.split(':', 1) 
  75                 write_string('[debug] Adding header from command line option %s:%s\n' % (key
, value
)) 
  76             std_headers
[key
] = value
 
  79     if opts
.dump_user_agent
: 
  80         write_string(std_headers
['User-Agent'] + '\n', out
=sys
.stdout
) 
  83     # Batch file verification 
  85     if opts
.batchfile 
is not None: 
  87             if opts
.batchfile 
== '-': 
  91                     compat_expanduser(opts
.batchfile
), 
  92                     'r', encoding
='utf-8', errors
='ignore') 
  93             batch_urls 
= read_batch_urls(batchfd
) 
  95                 write_string('[debug] Batch file urls: ' + repr(batch_urls
) + '\n') 
  97             sys
.exit('ERROR: batch file could not be read') 
  98     all_urls 
= batch_urls 
+ [url
.strip() for url 
in args
]  # batch_urls are already striped in read_batch_urls 
  99     _enc 
= preferredencoding() 
 100     all_urls 
= [url
.decode(_enc
, 'ignore') if isinstance(url
, bytes) else url 
for url 
in all_urls
] 
 102     if opts
.list_extractors
: 
 103         for ie 
in list_extractors(opts
.age_limit
): 
 104             write_string(ie
.IE_NAME 
+ (' (CURRENTLY BROKEN)' if not ie
._WORKING 
else '') + '\n', out
=sys
.stdout
) 
 105             matchedUrls 
= [url 
for url 
in all_urls 
if ie
.suitable(url
)] 
 106             for mu 
in matchedUrls
: 
 107                 write_string('  ' + mu 
+ '\n', out
=sys
.stdout
) 
 109     if opts
.list_extractor_descriptions
: 
 110         for ie 
in list_extractors(opts
.age_limit
): 
 113             desc 
= getattr(ie
, 'IE_DESC', ie
.IE_NAME
) 
 116             if hasattr(ie
, 'SEARCH_KEY'): 
 117                 _SEARCHES 
= ('cute kittens', 'slithering pythons', 'falling cat', 'angry poodle', 'purple fish', 'running tortoise', 'sleeping bunny', 'burping cow') 
 118                 _COUNTS 
= ('', '5', '10', 'all') 
 119                 desc 
+= ' (Example: "%s%s:%s" )' % (ie
.SEARCH_KEY
, random
.choice(_COUNTS
), random
.choice(_SEARCHES
)) 
 120             write_string(desc 
+ '\n', out
=sys
.stdout
) 
 123         table 
= [[mso_id
, mso_info
['name']] for mso_id
, mso_info 
in MSO_INFO
.items()] 
 124         write_string('Supported TV Providers:\n' + render_table(['mso', 'mso name'], table
) + '\n', out
=sys
.stdout
) 
 127     # Conflicting, missing and erroneous options 
 128     if opts
.usenetrc 
and (opts
.username 
is not None or opts
.password 
is not None): 
 129         parser
.error('using .netrc conflicts with giving username/password') 
 130     if opts
.password 
is not None and opts
.username 
is None: 
 131         parser
.error('account username missing\n') 
 132     if opts
.ap_password 
is not None and opts
.ap_username 
is None: 
 133         parser
.error('TV Provider account username missing\n') 
 134     if opts
.outtmpl 
is not None and (opts
.usetitle 
or opts
.autonumber 
or opts
.useid
): 
 135         parser
.error('using output template conflicts with using title, video ID or auto number') 
 136     if opts
.autonumber_size 
is not None: 
 137         if opts
.autonumber_size 
<= 0: 
 138             parser
.error('auto number size must be positive') 
 139     if opts
.autonumber_start 
is not None: 
 140         if opts
.autonumber_start 
< 0: 
 141             parser
.error('auto number start must be positive or 0') 
 142     if opts
.usetitle 
and opts
.useid
: 
 143         parser
.error('using title conflicts with using video ID') 
 144     if opts
.username 
is not None and opts
.password 
is None: 
 145         opts
.password 
= compat_getpass('Type account password and press [Return]: ') 
 146     if opts
.ap_username 
is not None and opts
.ap_password 
is None: 
 147         opts
.ap_password 
= compat_getpass('Type TV provider account password and press [Return]: ') 
 148     if opts
.ratelimit 
is not None: 
 149         numeric_limit 
= FileDownloader
.parse_bytes(opts
.ratelimit
) 
 150         if numeric_limit 
is None: 
 151             parser
.error('invalid rate limit specified') 
 152         opts
.ratelimit 
= numeric_limit
 
 153     if opts
.min_filesize 
is not None: 
 154         numeric_limit 
= FileDownloader
.parse_bytes(opts
.min_filesize
) 
 155         if numeric_limit 
is None: 
 156             parser
.error('invalid min_filesize specified') 
 157         opts
.min_filesize 
= numeric_limit
 
 158     if opts
.max_filesize 
is not None: 
 159         numeric_limit 
= FileDownloader
.parse_bytes(opts
.max_filesize
) 
 160         if numeric_limit 
is None: 
 161             parser
.error('invalid max_filesize specified') 
 162         opts
.max_filesize 
= numeric_limit
 
 163     if opts
.sleep_interval 
is not None: 
 164         if opts
.sleep_interval 
< 0: 
 165             parser
.error('sleep interval must be positive or 0') 
 166     if opts
.max_sleep_interval 
is not None: 
 167         if opts
.max_sleep_interval 
< 0: 
 168             parser
.error('max sleep interval must be positive or 0') 
 169         if opts
.max_sleep_interval 
< opts
.sleep_interval
: 
 170             parser
.error('max sleep interval must be greater than or equal to min sleep interval') 
 172         opts
.max_sleep_interval 
= opts
.sleep_interval
 
 173     if opts
.ap_mso 
and opts
.ap_mso 
not in MSO_INFO
: 
 174         parser
.error('Unsupported TV Provider, use --ap-list-mso to get a list of supported TV Providers') 
 176     def parse_retries(retries
): 
 177         if retries 
in ('inf', 'infinite'): 
 178             parsed_retries 
= float('inf') 
 181                 parsed_retries 
= int(retries
) 
 182             except (TypeError, ValueError): 
 183                 parser
.error('invalid retry count specified') 
 184         return parsed_retries
 
 185     if opts
.retries 
is not None: 
 186         opts
.retries 
= parse_retries(opts
.retries
) 
 187     if opts
.fragment_retries 
is not None: 
 188         opts
.fragment_retries 
= parse_retries(opts
.fragment_retries
) 
 189     if opts
.buffersize 
is not None: 
 190         numeric_buffersize 
= FileDownloader
.parse_bytes(opts
.buffersize
) 
 191         if numeric_buffersize 
is None: 
 192             parser
.error('invalid buffer size specified') 
 193         opts
.buffersize 
= numeric_buffersize
 
 194     if opts
.playliststart 
<= 0: 
 195         raise ValueError('Playlist start must be positive') 
 196     if opts
.playlistend 
not in (-1, None) and opts
.playlistend 
< opts
.playliststart
: 
 197         raise ValueError('Playlist end must be greater than playlist start') 
 198     if opts
.extractaudio
: 
 199         if opts
.audioformat 
not in ['best', 'aac', 'mp3', 'm4a', 'opus', 'vorbis', 'wav']: 
 200             parser
.error('invalid audio format specified') 
 201     if opts
.audioquality
: 
 202         opts
.audioquality 
= opts
.audioquality
.strip('k').strip('K') 
 203         if not opts
.audioquality
.isdigit(): 
 204             parser
.error('invalid audio quality specified') 
 205     if opts
.recodevideo 
is not None: 
 206         if opts
.recodevideo 
not in ['mp4', 'flv', 'webm', 'ogg', 'mkv', 'avi']: 
 207             parser
.error('invalid video recode format specified') 
 208     if opts
.convertsubtitles 
is not None: 
 209         if opts
.convertsubtitles 
not in ['srt', 'vtt', 'ass']: 
 210             parser
.error('invalid subtitle format specified') 
 212     if opts
.date 
is not None: 
 213         date 
= DateRange
.day(opts
.date
) 
 215         date 
= DateRange(opts
.dateafter
, opts
.datebefore
) 
 217     # Do not download videos when there are audio-only formats 
 218     if opts
.extractaudio 
and not opts
.keepvideo 
and opts
.format 
is None: 
 219         opts
.format 
= 'bestaudio/best' 
 221     # --all-sub automatically sets --write-sub if --write-auto-sub is not given 
 222     # this was the old behaviour if only --all-sub was given. 
 223     if opts
.allsubtitles 
and not opts
.writeautomaticsub
: 
 224         opts
.writesubtitles 
= True 
 226     outtmpl 
= ((opts
.outtmpl 
is not None and opts
.outtmpl
) or 
 227                (opts
.format 
== '-1' and opts
.usetitle 
and '%(title)s-%(id)s-%(format)s.%(ext)s') or 
 228                (opts
.format 
== '-1' and '%(id)s-%(format)s.%(ext)s') or 
 229                (opts
.usetitle 
and opts
.autonumber 
and '%(autonumber)s-%(title)s-%(id)s.%(ext)s') or 
 230                (opts
.usetitle 
and '%(title)s-%(id)s.%(ext)s') or 
 231                (opts
.useid 
and '%(id)s.%(ext)s') or 
 232                (opts
.autonumber 
and '%(autonumber)s-%(id)s.%(ext)s') or 
 234     if not os
.path
.splitext(outtmpl
)[1] and opts
.extractaudio
: 
 235         parser
.error('Cannot download a video and extract audio into the same' 
 236                      ' file! Use "{0}.%(ext)s" instead of "{0}" as the output' 
 237                      ' template'.format(outtmpl
)) 
 239     any_getting 
= opts
.geturl 
or opts
.gettitle 
or opts
.getid 
or opts
.getthumbnail 
or opts
.getdescription 
or opts
.getfilename 
or opts
.getformat 
or opts
.getduration 
or opts
.dumpjson 
or opts
.dump_single_json
 
 240     any_printing 
= opts
.print_json
 
 241     download_archive_fn 
= compat_expanduser(opts
.download_archive
) if opts
.download_archive 
is not None else opts
.download_archive
 
 245     if opts
.metafromtitle
: 
 246         postprocessors
.append({ 
 247             'key': 'MetadataFromTitle', 
 248             'titleformat': opts
.metafromtitle
 
 250     if opts
.extractaudio
: 
 251         postprocessors
.append({ 
 252             'key': 'FFmpegExtractAudio', 
 253             'preferredcodec': opts
.audioformat
, 
 254             'preferredquality': opts
.audioquality
, 
 255             'nopostoverwrites': opts
.nopostoverwrites
, 
 258         postprocessors
.append({ 
 259             'key': 'FFmpegVideoConvertor', 
 260             'preferedformat': opts
.recodevideo
, 
 262     if opts
.convertsubtitles
: 
 263         postprocessors
.append({ 
 264             'key': 'FFmpegSubtitlesConvertor', 
 265             'format': opts
.convertsubtitles
, 
 267     if opts
.embedsubtitles
: 
 268         postprocessors
.append({ 
 269             'key': 'FFmpegEmbedSubtitle', 
 271     if opts
.embedthumbnail
: 
 272         already_have_thumbnail 
= opts
.writethumbnail 
or opts
.write_all_thumbnails
 
 273         postprocessors
.append({ 
 274             'key': 'EmbedThumbnail', 
 275             'already_have_thumbnail': already_have_thumbnail
 
 277         if not already_have_thumbnail
: 
 278             opts
.writethumbnail 
= True 
 279     # FFmpegMetadataPP should be run after FFmpegVideoConvertorPP and 
 280     # FFmpegExtractAudioPP as containers before conversion may not support 
 281     # metadata (3gp, webm, etc.) 
 283         postprocessors
.append({'key': 'FFmpegMetadata'}) 
 284     # XAttrMetadataPP should be run after post-processors that may change file 
 287         postprocessors
.append({'key': 'XAttrMetadata'}) 
 288     # Please keep ExecAfterDownload towards the bottom as it allows the user to modify the final file in any way. 
 289     # So if the user is able to remove the file before your postprocessor runs it might cause a few problems. 
 291         postprocessors
.append({ 
 292             'key': 'ExecAfterDownload', 
 293             'exec_cmd': opts
.exec_cmd
, 
 295     external_downloader_args 
= None 
 296     if opts
.external_downloader_args
: 
 297         external_downloader_args 
= compat_shlex_split(opts
.external_downloader_args
) 
 298     postprocessor_args 
= None 
 299     if opts
.postprocessor_args
: 
 300         postprocessor_args 
= compat_shlex_split(opts
.postprocessor_args
) 
 302         None if opts
.match_filter 
is None 
 303         else match_filter_func(opts
.match_filter
)) 
 306         'usenetrc': opts
.usenetrc
, 
 307         'username': opts
.username
, 
 308         'password': opts
.password
, 
 309         'twofactor': opts
.twofactor
, 
 310         'videopassword': opts
.videopassword
, 
 311         'ap_mso': opts
.ap_mso
, 
 312         'ap_username': opts
.ap_username
, 
 313         'ap_password': opts
.ap_password
, 
 314         'quiet': (opts
.quiet 
or any_getting 
or any_printing
), 
 315         'no_warnings': opts
.no_warnings
, 
 316         'forceurl': opts
.geturl
, 
 317         'forcetitle': opts
.gettitle
, 
 318         'forceid': opts
.getid
, 
 319         'forcethumbnail': opts
.getthumbnail
, 
 320         'forcedescription': opts
.getdescription
, 
 321         'forceduration': opts
.getduration
, 
 322         'forcefilename': opts
.getfilename
, 
 323         'forceformat': opts
.getformat
, 
 324         'forcejson': opts
.dumpjson 
or opts
.print_json
, 
 325         'dump_single_json': opts
.dump_single_json
, 
 326         'simulate': opts
.simulate 
or any_getting
, 
 327         'skip_download': opts
.skip_download
, 
 328         'format': opts
.format
, 
 329         'listformats': opts
.listformats
, 
 331         'autonumber_size': opts
.autonumber_size
, 
 332         'autonumber_start': opts
.autonumber_start
, 
 333         'restrictfilenames': opts
.restrictfilenames
, 
 334         'ignoreerrors': opts
.ignoreerrors
, 
 335         'force_generic_extractor': opts
.force_generic_extractor
, 
 336         'ratelimit': opts
.ratelimit
, 
 337         'nooverwrites': opts
.nooverwrites
, 
 338         'retries': opts
.retries
, 
 339         'fragment_retries': opts
.fragment_retries
, 
 340         'skip_unavailable_fragments': opts
.skip_unavailable_fragments
, 
 341         'buffersize': opts
.buffersize
, 
 342         'noresizebuffer': opts
.noresizebuffer
, 
 343         'continuedl': opts
.continue_dl
, 
 344         'noprogress': opts
.noprogress
, 
 345         'progress_with_newline': opts
.progress_with_newline
, 
 346         'playliststart': opts
.playliststart
, 
 347         'playlistend': opts
.playlistend
, 
 348         'playlistreverse': opts
.playlist_reverse
, 
 349         'playlistrandom': opts
.playlist_random
, 
 350         'noplaylist': opts
.noplaylist
, 
 351         'logtostderr': opts
.outtmpl 
== '-', 
 352         'consoletitle': opts
.consoletitle
, 
 353         'nopart': opts
.nopart
, 
 354         'updatetime': opts
.updatetime
, 
 355         'writedescription': opts
.writedescription
, 
 356         'writeannotations': opts
.writeannotations
, 
 357         'writeinfojson': opts
.writeinfojson
, 
 358         'writethumbnail': opts
.writethumbnail
, 
 359         'write_all_thumbnails': opts
.write_all_thumbnails
, 
 360         'writesubtitles': opts
.writesubtitles
, 
 361         'writeautomaticsub': opts
.writeautomaticsub
, 
 362         'allsubtitles': opts
.allsubtitles
, 
 363         'listsubtitles': opts
.listsubtitles
, 
 364         'subtitlesformat': opts
.subtitlesformat
, 
 365         'subtitleslangs': opts
.subtitleslangs
, 
 366         'matchtitle': decodeOption(opts
.matchtitle
), 
 367         'rejecttitle': decodeOption(opts
.rejecttitle
), 
 368         'max_downloads': opts
.max_downloads
, 
 369         'prefer_free_formats': opts
.prefer_free_formats
, 
 370         'verbose': opts
.verbose
, 
 371         'dump_intermediate_pages': opts
.dump_intermediate_pages
, 
 372         'write_pages': opts
.write_pages
, 
 374         'keepvideo': opts
.keepvideo
, 
 375         'min_filesize': opts
.min_filesize
, 
 376         'max_filesize': opts
.max_filesize
, 
 377         'min_views': opts
.min_views
, 
 378         'max_views': opts
.max_views
, 
 380         'cachedir': opts
.cachedir
, 
 381         'youtube_print_sig_code': opts
.youtube_print_sig_code
, 
 382         'age_limit': opts
.age_limit
, 
 383         'download_archive': download_archive_fn
, 
 384         'cookiefile': opts
.cookiefile
, 
 385         'nocheckcertificate': opts
.no_check_certificate
, 
 386         'prefer_insecure': opts
.prefer_insecure
, 
 388         'socket_timeout': opts
.socket_timeout
, 
 389         'bidi_workaround': opts
.bidi_workaround
, 
 390         'debug_printtraffic': opts
.debug_printtraffic
, 
 391         'prefer_ffmpeg': opts
.prefer_ffmpeg
, 
 392         'include_ads': opts
.include_ads
, 
 393         'default_search': opts
.default_search
, 
 394         'youtube_include_dash_manifest': opts
.youtube_include_dash_manifest
, 
 395         'encoding': opts
.encoding
, 
 396         'extract_flat': opts
.extract_flat
, 
 397         'mark_watched': opts
.mark_watched
, 
 398         'merge_output_format': opts
.merge_output_format
, 
 399         'postprocessors': postprocessors
, 
 401         'source_address': opts
.source_address
, 
 402         'call_home': opts
.call_home
, 
 403         'sleep_interval': opts
.sleep_interval
, 
 404         'max_sleep_interval': opts
.max_sleep_interval
, 
 405         'external_downloader': opts
.external_downloader
, 
 406         'list_thumbnails': opts
.list_thumbnails
, 
 407         'playlist_items': opts
.playlist_items
, 
 408         'xattr_set_filesize': opts
.xattr_set_filesize
, 
 409         'match_filter': match_filter
, 
 410         'no_color': opts
.no_color
, 
 411         'ffmpeg_location': opts
.ffmpeg_location
, 
 412         'hls_prefer_native': opts
.hls_prefer_native
, 
 413         'hls_use_mpegts': opts
.hls_use_mpegts
, 
 414         'external_downloader_args': external_downloader_args
, 
 415         'postprocessor_args': postprocessor_args
, 
 416         'cn_verification_proxy': opts
.cn_verification_proxy
, 
 417         'geo_verification_proxy': opts
.geo_verification_proxy
, 
 418         'config_location': opts
.config_location
, 
 419         'geo_bypass': opts
.geo_bypass
, 
 420         'geo_bypass_country': opts
.geo_bypass_country
, 
 421         # just for deprecation check 
 422         'autonumber': opts
.autonumber 
if opts
.autonumber 
is True else None, 
 423         'usetitle': opts
.usetitle 
if opts
.usetitle 
is True else None, 
 426     with YoutubeDL(ydl_opts
) as ydl
: 
 429             update_self(ydl
.to_screen
, opts
.verbose
, ydl
._opener
) 
 436         if (len(all_urls
) < 1) and (opts
.load_info_filename 
is None): 
 437             if opts
.update_self 
or opts
.rm_cachedir
: 
 440             ydl
.warn_if_short_id(sys
.argv
[1:] if argv 
is None else argv
) 
 442                 'You must provide at least one URL.\n' 
 443                 'Type youtube-dl --help to see a list of all options.') 
 446             if opts
.load_info_filename 
is not None: 
 447                 retcode 
= ydl
.download_with_info_file(compat_expanduser(opts
.load_info_filename
)) 
 449                 retcode 
= ydl
.download(all_urls
) 
 450         except MaxDownloadsReached
: 
 451             ydl
.to_screen('--max-download limit reached, aborting.') 
 460     except DownloadError
: 
 462     except SameFileError
: 
 463         sys
.exit('ERROR: fixed output name but more than one file to download') 
 464     except KeyboardInterrupt: 
 465         sys
.exit('\nERROR: Interrupted by user') 
 468 __all__ 
= ['main', 'YoutubeDL', 'gen_extractors', 'list_extractors']