__init__.py 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487
  1. #!/usr/bin/env python
  2. # coding: utf-8
  3. from __future__ import unicode_literals
  4. __license__ = 'Public Domain'
  5. import io
  6. import os
  7. import random
  8. import sys
  9. from .options import (
  10. parseOpts,
  11. )
  12. from .compat import (
  13. compat_getpass,
  14. compat_register_utf8,
  15. compat_shlex_split,
  16. workaround_optparse_bug9161,
  17. )
  18. from .utils import (
  19. _UnsafeExtensionError,
  20. DateRange,
  21. decodeOption,
  22. DEFAULT_OUTTMPL,
  23. DownloadError,
  24. expand_path,
  25. match_filter_func,
  26. MaxDownloadsReached,
  27. preferredencoding,
  28. read_batch_urls,
  29. SameFileError,
  30. setproctitle,
  31. std_headers,
  32. write_string,
  33. render_table,
  34. )
  35. from .update import update_self
  36. from .downloader import (
  37. FileDownloader,
  38. )
  39. from .extractor import gen_extractors, list_extractors
  40. from .extractor.adobepass import MSO_INFO
  41. from .YoutubeDL import YoutubeDL
  42. def _real_main(argv=None):
  43. # Compatibility fix for Windows
  44. compat_register_utf8()
  45. workaround_optparse_bug9161()
  46. setproctitle('youtube-dl')
  47. parser, opts, args = parseOpts(argv)
  48. # Set user agent
  49. if opts.user_agent is not None:
  50. std_headers['User-Agent'] = opts.user_agent
  51. # Set referer
  52. if opts.referer is not None:
  53. std_headers['Referer'] = opts.referer
  54. # Custom HTTP headers
  55. if opts.headers is not None:
  56. for h in opts.headers:
  57. if ':' not in h:
  58. parser.error('wrong header formatting, it should be key:value, not "%s"' % h)
  59. key, value = h.split(':', 1)
  60. if opts.verbose:
  61. write_string('[debug] Adding header from command line option %s:%s\n' % (key, value))
  62. std_headers[key] = value
  63. # Dump user agent
  64. if opts.dump_user_agent:
  65. write_string(std_headers['User-Agent'] + '\n', out=sys.stdout)
  66. sys.exit(0)
  67. # Batch file verification
  68. batch_urls = []
  69. if opts.batchfile is not None:
  70. try:
  71. if opts.batchfile == '-':
  72. batchfd = sys.stdin
  73. else:
  74. batchfd = io.open(
  75. expand_path(opts.batchfile),
  76. 'r', encoding='utf-8', errors='ignore')
  77. batch_urls = read_batch_urls(batchfd)
  78. if opts.verbose:
  79. write_string('[debug] Batch file urls: ' + repr(batch_urls) + '\n')
  80. except IOError:
  81. sys.exit('ERROR: batch file %s could not be read' % opts.batchfile)
  82. all_urls = batch_urls + [url.strip() for url in args] # batch_urls are already striped in read_batch_urls
  83. _enc = preferredencoding()
  84. all_urls = [url.decode(_enc, 'ignore') if isinstance(url, bytes) else url for url in all_urls]
  85. if opts.list_extractors:
  86. for ie in list_extractors(opts.age_limit):
  87. write_string(ie.IE_NAME + (' (CURRENTLY BROKEN)' if not ie._WORKING else '') + '\n', out=sys.stdout)
  88. matchedUrls = [url for url in all_urls if ie.suitable(url)]
  89. for mu in matchedUrls:
  90. write_string(' ' + mu + '\n', out=sys.stdout)
  91. sys.exit(0)
  92. if opts.list_extractor_descriptions:
  93. for ie in list_extractors(opts.age_limit):
  94. if not ie._WORKING:
  95. continue
  96. desc = getattr(ie, 'IE_DESC', ie.IE_NAME)
  97. if desc is False:
  98. continue
  99. if hasattr(ie, 'SEARCH_KEY'):
  100. _SEARCHES = ('cute kittens', 'slithering pythons', 'falling cat', 'angry poodle', 'purple fish', 'running tortoise', 'sleeping bunny', 'burping cow')
  101. _COUNTS = ('', '5', '10', 'all')
  102. desc += ' (Example: "%s%s:%s" )' % (ie.SEARCH_KEY, random.choice(_COUNTS), random.choice(_SEARCHES))
  103. write_string(desc + '\n', out=sys.stdout)
  104. sys.exit(0)
  105. if opts.ap_list_mso:
  106. table = [[mso_id, mso_info['name']] for mso_id, mso_info in MSO_INFO.items()]
  107. write_string('Supported TV Providers:\n' + render_table(['mso', 'mso name'], table) + '\n', out=sys.stdout)
  108. sys.exit(0)
  109. # Conflicting, missing and erroneous options
  110. if opts.usenetrc and (opts.username is not None or opts.password is not None):
  111. parser.error('using .netrc conflicts with giving username/password')
  112. if opts.password is not None and opts.username is None:
  113. parser.error('account username missing\n')
  114. if opts.ap_password is not None and opts.ap_username is None:
  115. parser.error('TV Provider account username missing\n')
  116. if opts.outtmpl is not None and (opts.usetitle or opts.autonumber or opts.useid):
  117. parser.error('using output template conflicts with using title, video ID or auto number')
  118. if opts.autonumber_size is not None:
  119. if opts.autonumber_size <= 0:
  120. parser.error('auto number size must be positive')
  121. if opts.autonumber_start is not None:
  122. if opts.autonumber_start < 0:
  123. parser.error('auto number start must be positive or 0')
  124. if opts.usetitle and opts.useid:
  125. parser.error('using title conflicts with using video ID')
  126. if opts.username is not None and opts.password is None:
  127. opts.password = compat_getpass('Type account password and press [Return]: ')
  128. if opts.ap_username is not None and opts.ap_password is None:
  129. opts.ap_password = compat_getpass('Type TV provider account password and press [Return]: ')
  130. if opts.ratelimit is not None:
  131. numeric_limit = FileDownloader.parse_bytes(opts.ratelimit)
  132. if numeric_limit is None:
  133. parser.error('invalid rate limit specified')
  134. opts.ratelimit = numeric_limit
  135. if opts.min_filesize is not None:
  136. numeric_limit = FileDownloader.parse_bytes(opts.min_filesize)
  137. if numeric_limit is None:
  138. parser.error('invalid min_filesize specified')
  139. opts.min_filesize = numeric_limit
  140. if opts.max_filesize is not None:
  141. numeric_limit = FileDownloader.parse_bytes(opts.max_filesize)
  142. if numeric_limit is None:
  143. parser.error('invalid max_filesize specified')
  144. opts.max_filesize = numeric_limit
  145. if opts.sleep_interval is not None:
  146. if opts.sleep_interval < 0:
  147. parser.error('sleep interval must be positive or 0')
  148. if opts.max_sleep_interval is not None:
  149. if opts.max_sleep_interval < 0:
  150. parser.error('max sleep interval must be positive or 0')
  151. if opts.sleep_interval is None:
  152. parser.error('min sleep interval must be specified, use --min-sleep-interval')
  153. if opts.max_sleep_interval < opts.sleep_interval:
  154. parser.error('max sleep interval must be greater than or equal to min sleep interval')
  155. else:
  156. opts.max_sleep_interval = opts.sleep_interval
  157. if opts.ap_mso and opts.ap_mso not in MSO_INFO:
  158. parser.error('Unsupported TV Provider, use --ap-list-mso to get a list of supported TV Providers')
  159. if opts.no_check_extensions:
  160. _UnsafeExtensionError.lenient = True
  161. def parse_retries(retries):
  162. if retries in ('inf', 'infinite'):
  163. parsed_retries = float('inf')
  164. else:
  165. try:
  166. parsed_retries = int(retries)
  167. except (TypeError, ValueError):
  168. parser.error('invalid retry count specified')
  169. return parsed_retries
  170. if opts.retries is not None:
  171. opts.retries = parse_retries(opts.retries)
  172. if opts.fragment_retries is not None:
  173. opts.fragment_retries = parse_retries(opts.fragment_retries)
  174. if opts.buffersize is not None:
  175. numeric_buffersize = FileDownloader.parse_bytes(opts.buffersize)
  176. if numeric_buffersize is None:
  177. parser.error('invalid buffer size specified')
  178. opts.buffersize = numeric_buffersize
  179. if opts.http_chunk_size is not None:
  180. numeric_chunksize = FileDownloader.parse_bytes(opts.http_chunk_size)
  181. if not numeric_chunksize:
  182. parser.error('invalid http chunk size specified')
  183. opts.http_chunk_size = numeric_chunksize
  184. if opts.playliststart <= 0:
  185. raise ValueError('Playlist start must be positive')
  186. if opts.playlistend not in (-1, None) and opts.playlistend < opts.playliststart:
  187. raise ValueError('Playlist end must be greater than playlist start')
  188. if opts.extractaudio:
  189. if opts.audioformat not in ['best', 'aac', 'flac', 'mp3', 'm4a', 'opus', 'vorbis', 'wav']:
  190. parser.error('invalid audio format specified')
  191. if opts.audioquality:
  192. opts.audioquality = opts.audioquality.strip('k').strip('K')
  193. if not opts.audioquality.isdigit():
  194. parser.error('invalid audio quality specified')
  195. if opts.recodevideo is not None:
  196. if opts.recodevideo not in ['mp4', 'flv', 'webm', 'ogg', 'mkv', 'avi']:
  197. parser.error('invalid video recode format specified')
  198. if opts.convertsubtitles is not None:
  199. if opts.convertsubtitles not in ['srt', 'vtt', 'ass', 'lrc']:
  200. parser.error('invalid subtitle format specified')
  201. if opts.date is not None:
  202. date = DateRange.day(opts.date)
  203. else:
  204. date = DateRange(opts.dateafter, opts.datebefore)
  205. # Do not download videos when there are audio-only formats
  206. if opts.extractaudio and not opts.keepvideo and opts.format is None:
  207. opts.format = 'bestaudio/best'
  208. # --all-sub automatically sets --write-sub if --write-auto-sub is not given
  209. # this was the old behaviour if only --all-sub was given.
  210. if opts.allsubtitles and not opts.writeautomaticsub:
  211. opts.writesubtitles = True
  212. outtmpl = ((opts.outtmpl is not None and opts.outtmpl)
  213. or (opts.format == '-1' and opts.usetitle and '%(title)s-%(id)s-%(format)s.%(ext)s')
  214. or (opts.format == '-1' and '%(id)s-%(format)s.%(ext)s')
  215. or (opts.usetitle and opts.autonumber and '%(autonumber)s-%(title)s-%(id)s.%(ext)s')
  216. or (opts.usetitle and '%(title)s-%(id)s.%(ext)s')
  217. or (opts.useid and '%(id)s.%(ext)s')
  218. or (opts.autonumber and '%(autonumber)s-%(id)s.%(ext)s')
  219. or DEFAULT_OUTTMPL)
  220. if not os.path.splitext(outtmpl)[1] and opts.extractaudio:
  221. parser.error('Cannot download a video and extract audio into the same'
  222. ' file! Use "{0}.%(ext)s" instead of "{0}" as the output'
  223. ' template'.format(outtmpl))
  224. 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
  225. any_printing = opts.print_json
  226. download_archive_fn = expand_path(opts.download_archive) if opts.download_archive is not None else opts.download_archive
  227. # PostProcessors
  228. postprocessors = []
  229. if opts.metafromtitle:
  230. postprocessors.append({
  231. 'key': 'MetadataFromTitle',
  232. 'titleformat': opts.metafromtitle
  233. })
  234. if opts.extractaudio:
  235. postprocessors.append({
  236. 'key': 'FFmpegExtractAudio',
  237. 'preferredcodec': opts.audioformat,
  238. 'preferredquality': opts.audioquality,
  239. 'nopostoverwrites': opts.nopostoverwrites,
  240. })
  241. if opts.recodevideo:
  242. postprocessors.append({
  243. 'key': 'FFmpegVideoConvertor',
  244. 'preferedformat': opts.recodevideo,
  245. })
  246. # FFmpegMetadataPP should be run after FFmpegVideoConvertorPP and
  247. # FFmpegExtractAudioPP as containers before conversion may not support
  248. # metadata (3gp, webm, etc.)
  249. # And this post-processor should be placed before other metadata
  250. # manipulating post-processors (FFmpegEmbedSubtitle) to prevent loss of
  251. # extra metadata. By default ffmpeg preserves metadata applicable for both
  252. # source and target containers. From this point the container won't change,
  253. # so metadata can be added here.
  254. if opts.addmetadata:
  255. postprocessors.append({'key': 'FFmpegMetadata'})
  256. if opts.convertsubtitles:
  257. postprocessors.append({
  258. 'key': 'FFmpegSubtitlesConvertor',
  259. 'format': opts.convertsubtitles,
  260. })
  261. if opts.embedsubtitles:
  262. postprocessors.append({
  263. 'key': 'FFmpegEmbedSubtitle',
  264. })
  265. if opts.embedthumbnail:
  266. already_have_thumbnail = opts.writethumbnail or opts.write_all_thumbnails
  267. postprocessors.append({
  268. 'key': 'EmbedThumbnail',
  269. 'already_have_thumbnail': already_have_thumbnail
  270. })
  271. if not already_have_thumbnail:
  272. opts.writethumbnail = True
  273. # XAttrMetadataPP should be run after post-processors that may change file
  274. # contents
  275. if opts.xattrs:
  276. postprocessors.append({'key': 'XAttrMetadata'})
  277. # Please keep ExecAfterDownload towards the bottom as it allows the user to modify the final file in any way.
  278. # So if the user is able to remove the file before your postprocessor runs it might cause a few problems.
  279. if opts.exec_cmd:
  280. postprocessors.append({
  281. 'key': 'ExecAfterDownload',
  282. 'exec_cmd': opts.exec_cmd,
  283. })
  284. external_downloader_args = None
  285. if opts.external_downloader_args:
  286. external_downloader_args = compat_shlex_split(opts.external_downloader_args)
  287. postprocessor_args = None
  288. if opts.postprocessor_args:
  289. postprocessor_args = compat_shlex_split(opts.postprocessor_args)
  290. match_filter = (
  291. None if opts.match_filter is None
  292. else match_filter_func(opts.match_filter))
  293. ydl_opts = {
  294. 'usenetrc': opts.usenetrc,
  295. 'username': opts.username,
  296. 'password': opts.password,
  297. 'twofactor': opts.twofactor,
  298. 'videopassword': opts.videopassword,
  299. 'ap_mso': opts.ap_mso,
  300. 'ap_username': opts.ap_username,
  301. 'ap_password': opts.ap_password,
  302. 'quiet': (opts.quiet or any_getting or any_printing),
  303. 'no_warnings': opts.no_warnings,
  304. 'forceurl': opts.geturl,
  305. 'forcetitle': opts.gettitle,
  306. 'forceid': opts.getid,
  307. 'forcethumbnail': opts.getthumbnail,
  308. 'forcedescription': opts.getdescription,
  309. 'forceduration': opts.getduration,
  310. 'forcefilename': opts.getfilename,
  311. 'forceformat': opts.getformat,
  312. 'forcejson': opts.dumpjson or opts.print_json,
  313. 'dump_single_json': opts.dump_single_json,
  314. 'simulate': opts.simulate or any_getting,
  315. 'skip_download': opts.skip_download,
  316. 'format': opts.format,
  317. 'listformats': opts.listformats,
  318. 'outtmpl': outtmpl,
  319. 'outtmpl_na_placeholder': opts.outtmpl_na_placeholder,
  320. 'autonumber_size': opts.autonumber_size,
  321. 'autonumber_start': opts.autonumber_start,
  322. 'restrictfilenames': opts.restrictfilenames,
  323. 'ignoreerrors': opts.ignoreerrors,
  324. 'force_generic_extractor': opts.force_generic_extractor,
  325. 'ratelimit': opts.ratelimit,
  326. 'nooverwrites': opts.nooverwrites,
  327. 'retries': opts.retries,
  328. 'fragment_retries': opts.fragment_retries,
  329. 'skip_unavailable_fragments': opts.skip_unavailable_fragments,
  330. 'keep_fragments': opts.keep_fragments,
  331. 'buffersize': opts.buffersize,
  332. 'noresizebuffer': opts.noresizebuffer,
  333. 'http_chunk_size': opts.http_chunk_size,
  334. 'continuedl': opts.continue_dl,
  335. 'noprogress': opts.noprogress,
  336. 'progress_with_newline': opts.progress_with_newline,
  337. 'playliststart': opts.playliststart,
  338. 'playlistend': opts.playlistend,
  339. 'playlistreverse': opts.playlist_reverse,
  340. 'playlistrandom': opts.playlist_random,
  341. 'noplaylist': opts.noplaylist,
  342. 'logtostderr': opts.outtmpl == '-',
  343. 'consoletitle': opts.consoletitle,
  344. 'nopart': opts.nopart,
  345. 'updatetime': opts.updatetime,
  346. 'writedescription': opts.writedescription,
  347. 'writeannotations': opts.writeannotations,
  348. 'writeinfojson': opts.writeinfojson,
  349. 'writethumbnail': opts.writethumbnail,
  350. 'write_all_thumbnails': opts.write_all_thumbnails,
  351. 'writesubtitles': opts.writesubtitles,
  352. 'writeautomaticsub': opts.writeautomaticsub,
  353. 'allsubtitles': opts.allsubtitles,
  354. 'listsubtitles': opts.listsubtitles,
  355. 'subtitlesformat': opts.subtitlesformat,
  356. 'subtitleslangs': opts.subtitleslangs,
  357. 'matchtitle': decodeOption(opts.matchtitle),
  358. 'rejecttitle': decodeOption(opts.rejecttitle),
  359. 'max_downloads': opts.max_downloads,
  360. 'prefer_free_formats': opts.prefer_free_formats,
  361. 'verbose': opts.verbose,
  362. 'dump_intermediate_pages': opts.dump_intermediate_pages,
  363. 'write_pages': opts.write_pages,
  364. 'test': opts.test,
  365. 'keepvideo': opts.keepvideo,
  366. 'min_filesize': opts.min_filesize,
  367. 'max_filesize': opts.max_filesize,
  368. 'min_views': opts.min_views,
  369. 'max_views': opts.max_views,
  370. 'daterange': date,
  371. 'cachedir': opts.cachedir,
  372. 'youtube_print_sig_code': opts.youtube_print_sig_code,
  373. 'age_limit': opts.age_limit,
  374. 'download_archive': download_archive_fn,
  375. 'cookiefile': opts.cookiefile,
  376. 'nocheckcertificate': opts.no_check_certificate,
  377. 'prefer_insecure': opts.prefer_insecure,
  378. 'proxy': opts.proxy,
  379. 'socket_timeout': opts.socket_timeout,
  380. 'bidi_workaround': opts.bidi_workaround,
  381. 'debug_printtraffic': opts.debug_printtraffic,
  382. 'prefer_ffmpeg': opts.prefer_ffmpeg,
  383. 'include_ads': opts.include_ads,
  384. 'default_search': opts.default_search,
  385. 'youtube_include_dash_manifest': opts.youtube_include_dash_manifest,
  386. 'encoding': opts.encoding,
  387. 'extract_flat': opts.extract_flat,
  388. 'mark_watched': opts.mark_watched,
  389. 'merge_output_format': opts.merge_output_format,
  390. 'postprocessors': postprocessors,
  391. 'fixup': opts.fixup,
  392. 'source_address': opts.source_address,
  393. 'call_home': opts.call_home,
  394. 'sleep_interval': opts.sleep_interval,
  395. 'max_sleep_interval': opts.max_sleep_interval,
  396. 'external_downloader': opts.external_downloader,
  397. 'list_thumbnails': opts.list_thumbnails,
  398. 'playlist_items': opts.playlist_items,
  399. 'xattr_set_filesize': opts.xattr_set_filesize,
  400. 'match_filter': match_filter,
  401. 'no_color': opts.no_color,
  402. 'ffmpeg_location': opts.ffmpeg_location,
  403. 'hls_prefer_native': opts.hls_prefer_native,
  404. 'hls_use_mpegts': opts.hls_use_mpegts,
  405. 'external_downloader_args': external_downloader_args,
  406. 'postprocessor_args': postprocessor_args,
  407. 'cn_verification_proxy': opts.cn_verification_proxy,
  408. 'geo_verification_proxy': opts.geo_verification_proxy,
  409. 'config_location': opts.config_location,
  410. 'geo_bypass': opts.geo_bypass,
  411. 'geo_bypass_country': opts.geo_bypass_country,
  412. 'geo_bypass_ip_block': opts.geo_bypass_ip_block,
  413. # just for deprecation check
  414. 'autonumber': opts.autonumber if opts.autonumber is True else None,
  415. 'usetitle': opts.usetitle if opts.usetitle is True else None,
  416. }
  417. with YoutubeDL(ydl_opts) as ydl:
  418. # Update version
  419. if opts.update_self:
  420. update_self(ydl.to_screen, opts.verbose, ydl._opener)
  421. # Remove cache dir
  422. if opts.rm_cachedir:
  423. ydl.cache.remove()
  424. # Maybe do nothing
  425. if (len(all_urls) < 1) and (opts.load_info_filename is None):
  426. if opts.update_self or opts.rm_cachedir:
  427. sys.exit()
  428. ydl.warn_if_short_id(sys.argv[1:] if argv is None else argv)
  429. parser.error(
  430. 'You must provide at least one URL.\n'
  431. 'Type youtube-dl --help to see a list of all options.')
  432. try:
  433. if opts.load_info_filename is not None:
  434. retcode = ydl.download_with_info_file(expand_path(opts.load_info_filename))
  435. else:
  436. retcode = ydl.download(all_urls)
  437. except MaxDownloadsReached:
  438. ydl.to_screen('--max-download limit reached, aborting.')
  439. retcode = 101
  440. sys.exit(retcode)
  441. def main(argv=None):
  442. try:
  443. _real_main(argv)
  444. except DownloadError:
  445. sys.exit(1)
  446. except SameFileError:
  447. sys.exit('ERROR: fixed output name but more than one file to download')
  448. except KeyboardInterrupt:
  449. sys.exit('\nERROR: Interrupted by user')
  450. __all__ = ['main', 'YoutubeDL', 'gen_extractors', 'list_extractors']