logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git

__init__.py (20438B)


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