2 # -*- coding: utf-8 -*-
4 from __future__
import unicode_literals
6 __license__
= 'Public Domain'
15 from .options
import (
22 workaround_optparse_bug9161
,
37 from .update
import update_self
38 from .downloader
import (
41 from .extractor
import gen_extractors
42 from .YoutubeDL
import YoutubeDL
43 from .postprocessor
import (
49 FFmpegEmbedSubtitlePP
,
55 def _real_main(argv
=None):
56 # Compatibility fixes for Windows
57 if sys
.platform
== 'win32':
58 # https://github.com/rg3/youtube-dl/issues/820
59 codecs
.register(lambda name
: codecs
.lookup('utf-8') if name
== 'cp65001' else None)
61 workaround_optparse_bug9161()
63 setproctitle('youtube-dl')
65 parser
, opts
, args
= parseOpts(argv
)
68 if opts
.user_agent
is not None:
69 std_headers
['User-Agent'] = opts
.user_agent
72 if opts
.referer
is not None:
73 std_headers
['Referer'] = opts
.referer
76 if opts
.headers
is not None:
77 for h
in opts
.headers
:
78 if h
.find(':', 1) < 0:
79 parser
.error('wrong header formatting, it should be key:value, not "%s"'%h
)
80 key
, value
= h
.split(':', 2)
82 write_string('[debug] Adding header from command line option %s:%s\n'%(key
, value
))
83 std_headers
[key
] = value
86 if opts
.dump_user_agent
:
87 compat_print(std_headers
['User-Agent'])
90 # Batch file verification
92 if opts
.batchfile
is not None:
94 if opts
.batchfile
== '-':
97 batchfd
= io
.open(opts
.batchfile
, 'r', encoding
='utf-8', errors
='ignore')
98 batch_urls
= read_batch_urls(batchfd
)
100 write_string('[debug] Batch file urls: ' + repr(batch_urls
) + '\n')
102 sys
.exit('ERROR: batch file could not be read')
103 all_urls
= batch_urls
+ args
104 all_urls
= [url
.strip() for url
in all_urls
]
105 _enc
= preferredencoding()
106 all_urls
= [url
.decode(_enc
, 'ignore') if isinstance(url
, bytes) else url
for url
in all_urls
]
108 extractors
= gen_extractors()
110 if opts
.list_extractors
:
111 for ie
in sorted(extractors
, key
=lambda ie
: ie
.IE_NAME
.lower()):
112 compat_print(ie
.IE_NAME
+ (' (CURRENTLY BROKEN)' if not ie
._WORKING
else ''))
113 matchedUrls
= [url
for url
in all_urls
if ie
.suitable(url
)]
114 for mu
in matchedUrls
:
115 compat_print(' ' + mu
)
117 if opts
.list_extractor_descriptions
:
118 for ie
in sorted(extractors
, key
=lambda ie
: ie
.IE_NAME
.lower()):
121 desc
= getattr(ie
, 'IE_DESC', ie
.IE_NAME
)
124 if hasattr(ie
, 'SEARCH_KEY'):
125 _SEARCHES
= ('cute kittens', 'slithering pythons', 'falling cat', 'angry poodle', 'purple fish', 'running tortoise', 'sleeping bunny')
126 _COUNTS
= ('', '5', '10', 'all')
127 desc
+= ' (Example: "%s%s:%s" )' % (ie
.SEARCH_KEY
, random
.choice(_COUNTS
), random
.choice(_SEARCHES
))
132 # Conflicting, missing and erroneous options
133 if opts
.usenetrc
and (opts
.username
is not None or opts
.password
is not None):
134 parser
.error('using .netrc conflicts with giving username/password')
135 if opts
.password
is not None and opts
.username
is None:
136 parser
.error('account username missing\n')
137 if opts
.outtmpl
is not None and (opts
.usetitle
or opts
.autonumber
or opts
.useid
):
138 parser
.error('using output template conflicts with using title, video ID or auto number')
139 if opts
.usetitle
and opts
.useid
:
140 parser
.error('using title conflicts with using video ID')
141 if opts
.username
is not None and opts
.password
is None:
142 opts
.password
= compat_getpass('Type account password and press [Return]: ')
143 if opts
.ratelimit
is not None:
144 numeric_limit
= FileDownloader
.parse_bytes(opts
.ratelimit
)
145 if numeric_limit
is None:
146 parser
.error('invalid rate limit specified')
147 opts
.ratelimit
= numeric_limit
148 if opts
.min_filesize
is not None:
149 numeric_limit
= FileDownloader
.parse_bytes(opts
.min_filesize
)
150 if numeric_limit
is None:
151 parser
.error('invalid min_filesize specified')
152 opts
.min_filesize
= numeric_limit
153 if opts
.max_filesize
is not None:
154 numeric_limit
= FileDownloader
.parse_bytes(opts
.max_filesize
)
155 if numeric_limit
is None:
156 parser
.error('invalid max_filesize specified')
157 opts
.max_filesize
= numeric_limit
158 if opts
.retries
is not None:
160 opts
.retries
= int(opts
.retries
)
161 except (TypeError, ValueError):
162 parser
.error('invalid retry count specified')
163 if opts
.buffersize
is not None:
164 numeric_buffersize
= FileDownloader
.parse_bytes(opts
.buffersize
)
165 if numeric_buffersize
is None:
166 parser
.error('invalid buffer size specified')
167 opts
.buffersize
= numeric_buffersize
168 if opts
.playliststart
<= 0:
169 raise ValueError('Playlist start must be positive')
170 if opts
.playlistend
not in (-1, None) and opts
.playlistend
< opts
.playliststart
:
171 raise ValueError('Playlist end must be greater than playlist start')
172 if opts
.extractaudio
:
173 if opts
.audioformat
not in ['best', 'aac', 'mp3', 'm4a', 'opus', 'vorbis', 'wav']:
174 parser
.error('invalid audio format specified')
175 if opts
.audioquality
:
176 opts
.audioquality
= opts
.audioquality
.strip('k').strip('K')
177 if not opts
.audioquality
.isdigit():
178 parser
.error('invalid audio quality specified')
179 if opts
.recodevideo
is not None:
180 if opts
.recodevideo
not in ['mp4', 'flv', 'webm', 'ogg', 'mkv']:
181 parser
.error('invalid video recode format specified')
182 if opts
.date
is not None:
183 date
= DateRange
.day(opts
.date
)
185 date
= DateRange(opts
.dateafter
, opts
.datebefore
)
187 # Do not download videos when there are audio-only formats
188 if opts
.extractaudio
and not opts
.keepvideo
and opts
.format
is None:
189 opts
.format
= 'bestaudio/best'
191 # --all-sub automatically sets --write-sub if --write-auto-sub is not given
192 # this was the old behaviour if only --all-sub was given.
193 if opts
.allsubtitles
and (opts
.writeautomaticsub
== False):
194 opts
.writesubtitles
= True
196 if sys
.version_info
< (3,):
197 # In Python 2, sys.argv is a bytestring (also note http://bugs.python.org/issue2128 for Windows systems)
198 if opts
.outtmpl
is not None:
199 opts
.outtmpl
= opts
.outtmpl
.decode(preferredencoding())
200 outtmpl
=((opts
.outtmpl
is not None and opts
.outtmpl
)
201 or (opts
.format
== '-1' and opts
.usetitle
and '%(title)s-%(id)s-%(format)s.%(ext)s')
202 or (opts
.format
== '-1' and '%(id)s-%(format)s.%(ext)s')
203 or (opts
.usetitle
and opts
.autonumber
and '%(autonumber)s-%(title)s-%(id)s.%(ext)s')
204 or (opts
.usetitle
and '%(title)s-%(id)s.%(ext)s')
205 or (opts
.useid
and '%(id)s.%(ext)s')
206 or (opts
.autonumber
and '%(autonumber)s-%(id)s.%(ext)s')
208 if not os
.path
.splitext(outtmpl
)[1] and opts
.extractaudio
:
209 parser
.error('Cannot download a video and extract audio into the same'
210 ' file! Use "{0}.%(ext)s" instead of "{0}" as the output'
211 ' template'.format(outtmpl
))
213 any_printing
= 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
214 download_archive_fn
= compat_expanduser(opts
.download_archive
) if opts
.download_archive
is not None else opts
.download_archive
217 'usenetrc': opts
.usenetrc
,
218 'username': opts
.username
,
219 'password': opts
.password
,
220 'twofactor': opts
.twofactor
,
221 'videopassword': opts
.videopassword
,
222 'quiet': (opts
.quiet
or any_printing
),
223 'no_warnings': opts
.no_warnings
,
224 'forceurl': opts
.geturl
,
225 'forcetitle': opts
.gettitle
,
226 'forceid': opts
.getid
,
227 'forcethumbnail': opts
.getthumbnail
,
228 'forcedescription': opts
.getdescription
,
229 'forceduration': opts
.getduration
,
230 'forcefilename': opts
.getfilename
,
231 'forceformat': opts
.getformat
,
232 'forcejson': opts
.dumpjson
,
233 'dump_single_json': opts
.dump_single_json
,
234 'simulate': opts
.simulate
or any_printing
,
235 'skip_download': opts
.skip_download
,
236 'format': opts
.format
,
237 'format_limit': opts
.format_limit
,
238 'listformats': opts
.listformats
,
240 'autonumber_size': opts
.autonumber_size
,
241 'restrictfilenames': opts
.restrictfilenames
,
242 'ignoreerrors': opts
.ignoreerrors
,
243 'ratelimit': opts
.ratelimit
,
244 'nooverwrites': opts
.nooverwrites
,
245 'retries': opts
.retries
,
246 'buffersize': opts
.buffersize
,
247 'noresizebuffer': opts
.noresizebuffer
,
248 'continuedl': opts
.continue_dl
,
249 'noprogress': opts
.noprogress
,
250 'progress_with_newline': opts
.progress_with_newline
,
251 'playliststart': opts
.playliststart
,
252 'playlistend': opts
.playlistend
,
253 'noplaylist': opts
.noplaylist
,
254 'logtostderr': opts
.outtmpl
== '-',
255 'consoletitle': opts
.consoletitle
,
256 'nopart': opts
.nopart
,
257 'updatetime': opts
.updatetime
,
258 'writedescription': opts
.writedescription
,
259 'writeannotations': opts
.writeannotations
,
260 'writeinfojson': opts
.writeinfojson
,
261 'writethumbnail': opts
.writethumbnail
,
262 'writesubtitles': opts
.writesubtitles
,
263 'writeautomaticsub': opts
.writeautomaticsub
,
264 'allsubtitles': opts
.allsubtitles
,
265 'listsubtitles': opts
.listsubtitles
,
266 'subtitlesformat': opts
.subtitlesformat
,
267 'subtitleslangs': opts
.subtitleslangs
,
268 'matchtitle': decodeOption(opts
.matchtitle
),
269 'rejecttitle': decodeOption(opts
.rejecttitle
),
270 'max_downloads': opts
.max_downloads
,
271 'prefer_free_formats': opts
.prefer_free_formats
,
272 'verbose': opts
.verbose
,
273 'dump_intermediate_pages': opts
.dump_intermediate_pages
,
274 'write_pages': opts
.write_pages
,
276 'keepvideo': opts
.keepvideo
,
277 'min_filesize': opts
.min_filesize
,
278 'max_filesize': opts
.max_filesize
,
279 'min_views': opts
.min_views
,
280 'max_views': opts
.max_views
,
282 'cachedir': opts
.cachedir
,
283 'youtube_print_sig_code': opts
.youtube_print_sig_code
,
284 'age_limit': opts
.age_limit
,
285 'download_archive': download_archive_fn
,
286 'cookiefile': opts
.cookiefile
,
287 'nocheckcertificate': opts
.no_check_certificate
,
288 'prefer_insecure': opts
.prefer_insecure
,
290 'socket_timeout': opts
.socket_timeout
,
291 'bidi_workaround': opts
.bidi_workaround
,
292 'debug_printtraffic': opts
.debug_printtraffic
,
293 'prefer_ffmpeg': opts
.prefer_ffmpeg
,
294 'include_ads': opts
.include_ads
,
295 'default_search': opts
.default_search
,
296 'youtube_include_dash_manifest': opts
.youtube_include_dash_manifest
,
297 'encoding': opts
.encoding
,
298 'exec_cmd': opts
.exec_cmd
,
299 'extract_flat': opts
.extract_flat
,
302 with YoutubeDL(ydl_opts
) as ydl
:
304 # Add the metadata pp first, the other pps will copy it
306 ydl
.add_post_processor(FFmpegMetadataPP())
307 if opts
.extractaudio
:
308 ydl
.add_post_processor(FFmpegExtractAudioPP(preferredcodec
=opts
.audioformat
, preferredquality
=opts
.audioquality
, nopostoverwrites
=opts
.nopostoverwrites
))
310 ydl
.add_post_processor(FFmpegVideoConvertor(preferedformat
=opts
.recodevideo
))
311 if opts
.embedsubtitles
:
312 ydl
.add_post_processor(FFmpegEmbedSubtitlePP(subtitlesformat
=opts
.subtitlesformat
))
314 ydl
.add_post_processor(XAttrMetadataPP())
315 if opts
.embedthumbnail
:
316 if not opts
.addmetadata
:
317 ydl
.add_post_processor(FFmpegAudioFixPP())
318 ydl
.add_post_processor(AtomicParsleyPP())
321 # Please keep ExecAfterDownload towards the bottom as it allows the user to modify the final file in any way.
322 # So if the user is able to remove the file before your postprocessor runs it might cause a few problems.
324 ydl
.add_post_processor(ExecAfterDownloadPP(
325 verboseOutput
=opts
.verbose
, exec_cmd
=opts
.exec_cmd
))
329 update_self(ydl
.to_screen
, opts
.verbose
)
336 if (len(all_urls
) < 1) and (opts
.load_info_filename
is None):
337 if not (opts
.update_self
or opts
.rm_cachedir
):
338 parser
.error('you must provide at least one URL')
343 if opts
.load_info_filename
is not None:
344 retcode
= ydl
.download_with_info_file(opts
.load_info_filename
)
346 retcode
= ydl
.download(all_urls
)
347 except MaxDownloadsReached
:
348 ydl
.to_screen('--max-download limit reached, aborting.')
357 except DownloadError
:
359 except SameFileError
:
360 sys
.exit('ERROR: fixed output name but more than one file to download')
361 except KeyboardInterrupt:
362 sys
.exit('\nERROR: Interrupted by user')