2 # -*- coding: utf-8 -*-
3 # Author: Ricardo Garcia Gonzalez
4 # Author: Danny Colligan
5 # License: Public domain code
22 'User-Agent': 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5',
23 'Accept-Charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',
24 'Accept': 'text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5',
25 'Accept-Language': 'en-us,en;q=0.5',
28 simple_title_chars = string.ascii_letters.decode('ascii') + string.digits.decode('ascii')
30 class DownloadError(Exception):
31 """Download Error exception.
33 This exception may be thrown by FileDownloader objects if they are not
34 configured to continue on errors. They will contain the appropriate
39 class SameFileError(Exception):
40 """Same File exception.
42 This exception will be thrown by FileDownloader objects if they detect
43 multiple files would have to be downloaded to the same file on disk.
47 class PostProcessingError(Exception):
48 """Post Processing exception.
50 This exception may be raised by PostProcessor's .run() method to
51 indicate an error in the postprocessing task.
55 class FileDownloader(object):
56 """File Downloader class.
58 File downloader objects are the ones responsible of downloading the
59 actual video file and writing it to disk if the user has requested
60 it, among some other tasks. In most cases there should be one per
61 program. As, given a video URL, the downloader doesn't know how to
62 extract all the needed information, task that InfoExtractors do, it
63 has to pass the URL to one of them.
65 For this, file downloader objects have a method that allows
66 InfoExtractors to be registered in a given order. When it is passed
67 a URL, the file downloader handles it to the first InfoExtractor it
68 finds that reports being able to handle it. The InfoExtractor returns
69 all the information to the FileDownloader and the latter downloads the
70 file or does whatever it's instructed to do.
72 File downloaders accept a lot of parameters. In order not to saturate
73 the object constructor with arguments, it receives a dictionary of
74 options instead. These options are available through the params
75 attribute for the InfoExtractors to use. The FileDownloader also
76 registers itself as the downloader in charge for the InfoExtractors
77 that are added to it, so this is a "mutual registration".
81 username: Username for authentication purposes.
82 password: Password for authentication purposes.
83 usenetrc: Use netrc for authentication instead.
84 quiet: Do not print messages to stdout.
85 forceurl: Force printing final URL.
86 forcetitle: Force printing title.
87 simulate: Do not download the video files.
88 format: Video format code.
89 outtmpl: Template for output names.
90 ignoreerrors: Do not stop on download errors.
91 ratelimit: Download speed limit, in bytes/sec.
92 nooverwrites: Prevent overwriting files.
99 def __init__(self, params):
100 """Create a FileDownloader object with the given options."""
106 def pmkdir(filename):
107 """Create directory components in filename. Similar to Unix "mkdir -p"."""
108 components = filename.split(os.sep)
109 aggregate = [os.sep.join(components[0:x]) for x in xrange(1, len(components))]
110 aggregate = ['%s%s' % (x, os.sep) for x in aggregate] # Finish names with separator
111 for dir in aggregate:
112 if not os.path.exists(dir):
116 def format_bytes(bytes):
122 exponent = long(math.log(float(bytes), 1024.0))
123 suffix = 'bkMGTPEZY'[exponent]
124 converted = float(bytes) / float(1024**exponent)
125 return '%.2f%s' % (converted, suffix)
128 def calc_percent(byte_counter, data_len):
131 return '%6s' % ('%3.1f%%' % (float(byte_counter) / float(data_len) * 100.0))
134 def calc_eta(start, now, total, current):
138 if current == 0 or dif < 0.001: # One millisecond
140 rate = float(current) / dif
141 eta = long((float(total) - float(current)) / rate)
142 (eta_mins, eta_secs) = divmod(eta, 60)
145 return '%02d:%02d' % (eta_mins, eta_secs)
148 def calc_speed(start, now, bytes):
150 if bytes == 0 or dif < 0.001: # One millisecond
151 return '%10s' % '---b/s'
152 return '%10s' % ('%s/s' % FileDownloader.format_bytes(float(bytes) / dif))
155 def best_block_size(elapsed_time, bytes):
156 new_min = max(bytes / 2.0, 1.0)
157 new_max = min(max(bytes * 2.0, 1.0), 4194304) # Do not surpass 4 MB
158 if elapsed_time < 0.001:
160 rate = bytes / elapsed_time
168 def parse_bytes(bytestr):
169 """Parse a string indicating a byte quantity into a long integer."""
170 matchobj = re.match(r'(?i)^(\d+(?:\.\d+)?)([kMGTPEZY]?)$', bytestr)
173 number = float(matchobj.group(1))
174 multiplier = 1024.0 ** 'bkmgtpezy'.index(matchobj.group(2).lower())
175 return long(round(number * multiplier))
177 def add_info_extractor(self, ie):
178 """Add an InfoExtractor object to the end of the list."""
180 ie.set_downloader(self)
182 def add_post_processor(self, pp):
183 """Add a PostProcessor object to the end of the chain."""
185 pp.set_downloader(self)
187 def to_stdout(self, message, skip_eol=False):
188 """Print message to stdout if not in quiet mode."""
189 if not self.params.get('quiet', False):
190 print u'%s%s' % (message, [u'\n', u''][skip_eol]),
193 def to_stderr(self, message):
194 """Print message to stderr."""
195 print >>sys.stderr, message
197 def fixed_template(self):
198 """Checks if the output template is fixed."""
199 return (re.search(ur'(?u)%\(.+?\)s', self.params['outtmpl']) is None)
201 def trouble(self, message=None):
202 """Determine action to take when a download problem appears.
204 Depending on if the downloader has been configured to ignore
205 download errors or not, this method may throw an exception or
206 not when errors are found, after printing the message. If it
207 doesn't raise, it returns an error code suitable to be returned
208 later as a program exit code to indicate error.
210 if message is not None:
211 self.to_stderr(message)
212 if not self.params.get('ignoreerrors', False):
213 raise DownloadError(message)
216 def slow_down(self, start_time, byte_counter):
217 """Sleep if the download speed is over the rate limit."""
218 rate_limit = self.params.get('ratelimit', None)
219 if rate_limit is None or byte_counter == 0:
222 elapsed = now - start_time
225 speed = float(byte_counter) / elapsed
226 if speed > rate_limit:
227 time.sleep((byte_counter - rate_limit * (now - start_time)) / rate_limit)
229 def report_destination(self, filename):
230 """Report destination filename."""
231 self.to_stdout(u'[download] Destination: %s' % filename)
233 def report_progress(self, percent_str, data_len_str, speed_str, eta_str):
234 """Report download progress."""
235 self.to_stdout(u'\r[download] %s of %s at %s ETA %s' %
236 (percent_str, data_len_str, speed_str, eta_str), skip_eol=True)
238 def report_finish(self):
239 """Report download finished."""
242 def download(self, url_list):
243 """Download a given list of URLs."""
245 if len(url_list) > 1 and self.fixed_template():
246 raise SameFileError(self.params['outtmpl'])
249 suitable_found = False
251 if not ie.suitable(url):
253 # Suitable InfoExtractor found
254 suitable_found = True
255 all_results = ie.extract(url)
256 results = [x for x in all_results if x is not None]
257 if len(results) != len(all_results):
258 retcode = self.trouble()
260 if len(results) > 1 and self.fixed_template():
261 raise SameFileError(self.params['outtmpl'])
263 for result in results:
265 if self.params.get('forcetitle', False):
266 print result['title']
267 if self.params.get('forceurl', False):
270 # Do nothing else if in simulate mode
271 if self.params.get('simulate', False):
275 filename = self.params['outtmpl'] % result
276 self.report_destination(filename)
277 except (ValueError, KeyError), err:
278 retcode = self.trouble('ERROR: invalid output template or system charset: %s' % str(err))
280 if self.params['nooverwrites'] and os.path.exists(filename):
281 self.to_stderr('WARNING: file exists: %s; skipping' % filename)
284 self.pmkdir(filename)
285 except (OSError, IOError), err:
286 retcode = self.trouble('ERROR: unable to create directories: %s' % str(err))
289 outstream = open(filename, 'wb')
290 except (OSError, IOError), err:
291 retcode = self.trouble('ERROR: unable to open for writing: %s' % str(err))
294 self._do_download(outstream, result['url'])
296 except (OSError, IOError), err:
297 retcode = self.trouble('ERROR: unable to write video data: %s' % str(err))
299 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
300 retcode = self.trouble('ERROR: unable to download video data: %s' % str(err))
303 self.post_process(filename, result)
304 except (PostProcessingError), err:
305 retcode = self.trouble('ERROR: postprocessing: %s' % str(err))
309 if not suitable_found:
310 retcode = self.trouble('ERROR: no suitable InfoExtractor: %s' % url)
314 def post_process(self, filename, ie_info):
315 """Run the postprocessing chain on the given file."""
317 info['filepath'] = filename
323 def _do_download(self, stream, url):
324 request = urllib2.Request(url, None, std_headers)
325 data = urllib2.urlopen(request)
326 data_len = data.info().get('Content-length', None)
327 data_len_str = self.format_bytes(data_len)
333 percent_str = self.calc_percent(byte_counter, data_len)
334 eta_str = self.calc_eta(start, time.time(), data_len, byte_counter)
335 speed_str = self.calc_speed(start, time.time(), byte_counter)
336 self.report_progress(percent_str, data_len_str, speed_str, eta_str)
340 data_block = data.read(block_size)
342 data_block_len = len(data_block)
343 if data_block_len == 0:
345 byte_counter += data_block_len
346 stream.write(data_block)
347 block_size = self.best_block_size(after - before, data_block_len)
350 self.slow_down(start, byte_counter)
353 if data_len is not None and str(byte_counter) != data_len:
354 raise ValueError('Content too short: %s/%s bytes' % (byte_counter, data_len))
356 class InfoExtractor(object):
357 """Information Extractor class.
359 Information extractors are the classes that, given a URL, extract
360 information from the video (or videos) the URL refers to. This
361 information includes the real video URL, the video title and simplified
362 title, author and others. It is returned in a list of dictionaries when
363 calling its extract() method. It is a list because a URL can refer to
364 more than one video (think of playlists). The dictionaries must include
365 the following fields:
367 id: Video identifier.
368 url: Final video URL.
369 uploader: Nickname of the video uploader.
370 title: Literal title.
371 stitle: Simplified title.
372 ext: Video filename extension.
374 Subclasses of this one should re-define the _real_initialize() and
375 _real_extract() methods, as well as the suitable() static method.
376 Probably, they should also be instantiated and added to the main
383 def __init__(self, downloader=None):
384 """Constructor. Receives an optional downloader."""
386 self.set_downloader(downloader)
390 """Receives a URL and returns True if suitable for this IE."""
393 def initialize(self):
394 """Initializes an instance (authentication, etc)."""
396 self._real_initialize()
399 def extract(self, url):
400 """Extracts URL information and returns it in list of dicts."""
402 return self._real_extract(url)
404 def set_downloader(self, downloader):
405 """Sets the downloader for this IE."""
406 self._downloader = downloader
408 def to_stdout(self, message):
409 """Print message to stdout if downloader is not in quiet mode."""
410 if self._downloader is None or not self._downloader.params.get('quiet', False):
413 def to_stderr(self, message):
414 """Print message to stderr."""
415 print >>sys.stderr, message
417 def _real_initialize(self):
418 """Real initialization process. Redefine in subclasses."""
421 def _real_extract(self, url):
422 """Real extraction process. Redefine in subclasses."""
425 class YoutubeIE(InfoExtractor):
426 """Information extractor for youtube.com."""
428 _VALID_URL = r'^((?:http://)?(?:\w+\.)?youtube\.com/(?:(?:v/)|(?:(?:watch(?:\.php)?)?\?(?:.+&)?v=)))?([0-9A-Za-z_-]+)(?(1).+)?$'
429 _LANG_URL = r'http://uk.youtube.com/?hl=en&persist_hl=1&gl=US&persist_gl=1&opt_out_ackd=1'
430 _LOGIN_URL = 'http://www.youtube.com/signup?next=/&gl=US&hl=en'
431 _AGE_URL = 'http://www.youtube.com/verify_age?next_url=/&gl=US&hl=en'
432 _NETRC_MACHINE = 'youtube'
436 return (re.match(YoutubeIE._VALID_URL, url) is not None)
438 def report_lang(self):
439 """Report attempt to set language."""
440 self.to_stdout(u'[youtube] Setting language')
442 def report_login(self):
443 """Report attempt to log in."""
444 self.to_stdout(u'[youtube] Logging in')
446 def report_age_confirmation(self):
447 """Report attempt to confirm age."""
448 self.to_stdout(u'[youtube] Confirming age')
450 def report_webpage_download(self, video_id):
451 """Report attempt to download webpage."""
452 self.to_stdout(u'[youtube] %s: Downloading video webpage' % video_id)
454 def report_information_extraction(self, video_id):
455 """Report attempt to extract video information."""
456 self.to_stdout(u'[youtube] %s: Extracting video information' % video_id)
458 def report_video_url(self, video_id, video_real_url):
459 """Report extracted video URL."""
460 self.to_stdout(u'[youtube] %s: URL: %s' % (video_id, video_real_url))
462 def _real_initialize(self):
463 if self._downloader is None:
468 downloader_params = self._downloader.params
470 # Attempt to use provided username and password or .netrc data
471 if downloader_params.get('username', None) is not None:
472 username = downloader_params['username']
473 password = downloader_params['password']
474 elif downloader_params.get('usenetrc', False):
476 info = netrc.netrc().authenticators(self._NETRC_MACHINE)
481 raise netrc.NetrcParseError('No authenticators for %s' % self._NETRC_MACHINE)
482 except (IOError, netrc.NetrcParseError), err:
483 self.to_stderr(u'WARNING: parsing .netrc: %s' % str(err))
487 request = urllib2.Request(self._LANG_URL, None, std_headers)
490 urllib2.urlopen(request).read()
491 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
492 self.to_stderr(u'WARNING: unable to set language: %s' % str(err))
495 # No authentication to be performed
501 'current_form': 'loginForm',
503 'action_login': 'Log In',
504 'username': username,
505 'password': password,
507 request = urllib2.Request(self._LOGIN_URL, urllib.urlencode(login_form), std_headers)
510 login_results = urllib2.urlopen(request).read()
511 if re.search(r'(?i)<form[^>]* name="loginForm"', login_results) is not None:
512 self.to_stderr(u'WARNING: unable to log in: bad username or password')
514 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
515 self.to_stderr(u'WARNING: unable to log in: %s' % str(err))
521 'action_confirm': 'Confirm',
523 request = urllib2.Request(self._AGE_URL, urllib.urlencode(age_form), std_headers)
525 self.report_age_confirmation()
526 age_results = urllib2.urlopen(request).read()
527 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
528 self.to_stderr(u'ERROR: unable to confirm age: %s' % str(err))
531 def _real_extract(self, url):
532 # Extract video id from URL
533 mobj = re.match(self._VALID_URL, url)
535 self.to_stderr(u'ERROR: invalid URL: %s' % url)
537 video_id = mobj.group(2)
539 # Downloader parameters
541 if self._downloader is not None:
542 params = self._downloader.params
543 format_param = params.get('format', None)
550 }.get(format_param, 'flv')
552 # Normalize URL, including format
553 normalized_url = 'http://www.youtube.com/watch?v=%s&gl=US&hl=en' % video_id
554 if format_param is not None:
555 normalized_url = '%s&fmt=%s' % (normalized_url, format_param)
556 request = urllib2.Request(normalized_url, None, std_headers)
558 self.report_webpage_download(video_id)
559 video_webpage = urllib2.urlopen(request).read()
560 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
561 self.to_stderr(u'ERROR: unable to download video webpage: %s' % str(err))
563 self.report_information_extraction(video_id)
566 mobj = re.search(r', "t": "([^"]+)"', video_webpage)
568 self.to_stderr(u'ERROR: unable to extract "t" parameter')
570 video_real_url = 'http://www.youtube.com/get_video?video_id=%s&t=%s' % (video_id, mobj.group(1))
571 if format_param is not None:
572 video_real_url = '%s&fmt=%s' % (video_real_url, format_param)
573 self.report_video_url(video_id, video_real_url)
576 mobj = re.search(r"var watchUsername = '([^']+)';", video_webpage)
578 self.to_stderr(u'ERROR: unable to extract uploader nickname')
580 video_uploader = mobj.group(1)
583 mobj = re.search(r'(?im)<title>YouTube - ([^<]*)</title>', video_webpage)
585 self.to_stderr(u'ERROR: unable to extract video title')
587 video_title = mobj.group(1).decode('utf-8')
588 video_title = re.sub(ur'(?u)&(.+?);', lambda x: unichr(htmlentitydefs.name2codepoint[x.group(1)]), video_title)
589 video_title = video_title.replace(os.sep, u'%')
592 simple_title = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', video_title)
593 simple_title = simple_title.strip(ur'_')
597 'id': video_id.decode('utf-8'),
598 'url': video_real_url.decode('utf-8'),
599 'uploader': video_uploader.decode('utf-8'),
600 'title': video_title,
601 'stitle': simple_title,
602 'ext': video_extension.decode('utf-8'),
605 class MetacafeIE(InfoExtractor):
606 """Information Extractor for metacafe.com."""
608 _VALID_URL = r'(?:http://)?(?:www\.)?metacafe\.com/watch/([^/]+)/([^/]+)/.*'
609 _DISCLAIMER = 'http://www.metacafe.com/family_filter/'
612 def __init__(self, youtube_ie, downloader=None):
613 InfoExtractor.__init__(self, downloader)
614 self._youtube_ie = youtube_ie
618 return (re.match(MetacafeIE._VALID_URL, url) is not None)
620 def report_disclaimer(self):
621 """Report disclaimer retrieval."""
622 self.to_stdout(u'[metacafe] Retrieving disclaimer')
624 def report_age_confirmation(self):
625 """Report attempt to confirm age."""
626 self.to_stdout(u'[metacafe] Confirming age')
628 def report_download_webpage(self, video_id):
629 """Report webpage download."""
630 self.to_stdout(u'[metacafe] %s: Downloading webpage' % video_id)
632 def report_extraction(self, video_id):
633 """Report information extraction."""
634 self.to_stdout(u'[metacafe] %s: Extracting information' % video_id)
636 def _real_initialize(self):
637 # Retrieve disclaimer
638 request = urllib2.Request(self._DISCLAIMER, None, std_headers)
640 self.report_disclaimer()
641 disclaimer = urllib2.urlopen(request).read()
642 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
643 self.to_stderr(u'ERROR: unable to retrieve disclaimer: %s' % str(err))
649 'submit': "Continue - I'm over 18",
651 request = urllib2.Request('http://www.metacafe.com/', urllib.urlencode(disclaimer_form), std_headers)
653 self.report_age_confirmation()
654 disclaimer = urllib2.urlopen(request).read()
655 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
656 self.to_stderr(u'ERROR: unable to confirm age: %s' % str(err))
659 def _real_extract(self, url):
660 # Extract id and simplified title from URL
661 mobj = re.match(self._VALID_URL, url)
663 self.to_stderr(u'ERROR: invalid URL: %s' % url)
666 video_id = mobj.group(1)
668 # Check if video comes from YouTube
669 mobj2 = re.match(r'^yt-(.*)$', video_id)
670 if mobj2 is not None:
671 return self._youtube_ie.extract('http://www.youtube.com/watch?v=%s' % mobj2.group(1))
673 simple_title = mobj.group(2).decode('utf-8')
674 video_extension = 'flv'
676 # Retrieve video webpage to extract further information
677 request = urllib2.Request('http://www.metacafe.com/watch/%s/' % video_id)
679 self.report_download_webpage(video_id)
680 webpage = urllib2.urlopen(request).read()
681 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
682 self.to_stderr(u'ERROR: unable retrieve video webpage: %s' % str(err))
685 # Extract URL, uploader and title from webpage
686 self.report_extraction(video_id)
687 mobj = re.search(r'(?m)"mediaURL":"(http.*?\.flv)"', webpage)
689 self.to_stderr(u'ERROR: unable to extract media URL')
691 mediaURL = mobj.group(1).replace('\\', '')
693 mobj = re.search(r'(?m)"gdaKey":"(.*?)"', webpage)
695 self.to_stderr(u'ERROR: unable to extract gdaKey')
697 gdaKey = mobj.group(1)
699 video_url = '%s?__gda__=%s' % (mediaURL, gdaKey)
701 mobj = re.search(r'(?im)<title>(.*) - Video</title>', webpage)
703 self.to_stderr(u'ERROR: unable to extract title')
705 video_title = mobj.group(1).decode('utf-8')
707 mobj = re.search(r'(?m)<li id="ChnlUsr">.*?Submitter:<br />(.*?)</li>', webpage)
709 self.to_stderr(u'ERROR: unable to extract uploader nickname')
711 video_uploader = re.sub(r'<.*?>', '', mobj.group(1))
715 'id': video_id.decode('utf-8'),
716 'url': video_url.decode('utf-8'),
717 'uploader': video_uploader.decode('utf-8'),
718 'title': video_title,
719 'stitle': simple_title,
720 'ext': video_extension.decode('utf-8'),
724 class YoutubeSearchIE(InfoExtractor):
725 """Information Extractor for YouTube search queries."""
726 _VALID_QUERY = r'ytsearch(\d+|all)?:[\s\S]+'
727 _TEMPLATE_URL = 'http://www.youtube.com/results?search_query=%s&page=%s&gl=US&hl=en'
728 _VIDEO_INDICATOR = r'href="/watch\?v=.+?"'
729 _MORE_PAGES_INDICATOR = r'>Next</a>'
732 def __init__(self, youtube_ie, downloader=None):
733 InfoExtractor.__init__(self, downloader)
734 self._youtube_ie = youtube_ie
738 return (re.match(YoutubeSearchIE._VALID_QUERY, url) is not None)
740 def report_download_page(self, query, pagenum):
741 """Report attempt to download playlist page with given number."""
742 self.to_stdout(u'[youtube] query "%s": Downloading page %s' % (query, pagenum))
744 def _real_initialize(self):
745 self._youtube_ie.initialize()
747 def _real_extract(self, query):
748 mobj = re.match(self._VALID_QUERY, query)
750 self.to_stderr(u'ERROR: invalid search query "%s"' % query)
753 prefix, query = query.split(':')
756 return self._download_n_results(query, 1)
757 elif prefix == 'all':
758 return self._download_n_results(query, -1)
763 self.to_stderr(u'ERROR: invalid download number %s for query "%s"' % (n, query))
765 return self._download_n_results(query, n)
766 except ValueError: # parsing prefix as int fails
767 return self._download_n_results(query, 1)
769 def _download_n_results(self, query, n):
770 """Downloads a specified number of results for a query"""
777 self.report_download_page(query, pagenum)
778 result_url = self._TEMPLATE_URL % (urllib.quote_plus(query), pagenum)
779 request = urllib2.Request(result_url, None, std_headers)
781 page = urllib2.urlopen(request).read()
782 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
783 self.to_stderr(u'ERROR: unable to download webpage: %s' % str(err))
786 # Extract video identifiers
787 for mobj in re.finditer(self._VIDEO_INDICATOR, page):
788 video_id = page[mobj.span()[0]:mobj.span()[1]].split('=')[2][:-1]
789 if video_id not in already_seen:
790 video_ids.append(video_id)
791 already_seen.add(video_id)
792 if len(video_ids) == n:
793 # Specified n videos reached
796 information.extend(self._youtube_ie.extract('http://www.youtube.com/watch?v=%s' % id))
799 if self._MORE_PAGES_INDICATOR not in page:
802 information.extend(self._youtube_ie.extract('http://www.youtube.com/watch?v=%s' % id))
805 pagenum = pagenum + 1
807 class YoutubePlaylistIE(InfoExtractor):
808 """Information Extractor for YouTube playlists."""
810 _VALID_URL = r'(?:http://)?(?:\w+\.)?youtube.com/view_play_list\?p=(.+)'
811 _TEMPLATE_URL = 'http://www.youtube.com/view_play_list?p=%s&page=%s&gl=US&hl=en'
812 _VIDEO_INDICATOR = r'/watch\?v=(.+?)&'
813 _MORE_PAGES_INDICATOR = r'/view_play_list?p=%s&page=%s'
816 def __init__(self, youtube_ie, downloader=None):
817 InfoExtractor.__init__(self, downloader)
818 self._youtube_ie = youtube_ie
822 return (re.match(YoutubePlaylistIE._VALID_URL, url) is not None)
824 def report_download_page(self, playlist_id, pagenum):
825 """Report attempt to download playlist page with given number."""
826 self.to_stdout(u'[youtube] PL %s: Downloading page #%s' % (playlist_id, pagenum))
828 def _real_initialize(self):
829 self._youtube_ie.initialize()
831 def _real_extract(self, url):
832 # Extract playlist id
833 mobj = re.match(self._VALID_URL, url)
835 self.to_stderr(u'ERROR: invalid url: %s' % url)
838 # Download playlist pages
839 playlist_id = mobj.group(1)
844 self.report_download_page(playlist_id, pagenum)
845 request = urllib2.Request(self._TEMPLATE_URL % (playlist_id, pagenum), None, std_headers)
847 page = urllib2.urlopen(request).read()
848 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
849 self.to_stderr(u'ERROR: unable to download webpage: %s' % str(err))
852 # Extract video identifiers
854 for mobj in re.finditer(self._VIDEO_INDICATOR, page):
855 if mobj.group(1) not in ids_in_page:
856 ids_in_page.append(mobj.group(1))
857 video_ids.extend(ids_in_page)
859 if (self._MORE_PAGES_INDICATOR % (playlist_id, pagenum + 1)) not in page:
861 pagenum = pagenum + 1
865 information.extend(self._youtube_ie.extract('http://www.youtube.com/watch?v=%s' % id))
868 class PostProcessor(object):
869 """Post Processor class.
871 PostProcessor objects can be added to downloaders with their
872 add_post_processor() method. When the downloader has finished a
873 successful download, it will take its internal chain of PostProcessors
874 and start calling the run() method on each one of them, first with
875 an initial argument and then with the returned value of the previous
878 The chain will be stopped if one of them ever returns None or the end
879 of the chain is reached.
881 PostProcessor objects follow a "mutual registration" process similar
882 to InfoExtractor objects.
887 def __init__(self, downloader=None):
888 self._downloader = downloader
890 def to_stdout(self, message):
891 """Print message to stdout if downloader is not in quiet mode."""
892 if self._downloader is None or not self._downloader.params.get('quiet', False):
895 def to_stderr(self, message):
896 """Print message to stderr."""
897 print >>sys.stderr, message
899 def set_downloader(self, downloader):
900 """Sets the downloader for this PP."""
901 self._downloader = downloader
903 def run(self, information):
904 """Run the PostProcessor.
906 The "information" argument is a dictionary like the ones
907 returned by InfoExtractors. The only difference is that this
908 one has an extra field called "filepath" that points to the
911 When this method returns None, the postprocessing chain is
912 stopped. However, this method may return an information
913 dictionary that will be passed to the next postprocessing
914 object in the chain. It can be the one it received after
915 changing some fields.
917 In addition, this method may raise a PostProcessingError
918 exception that will be taken into account by the downloader
921 return information # by default, do nothing
924 if __name__ == '__main__':
926 # Modules needed only when running the main program
930 # General configuration
931 urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler()))
932 urllib2.install_opener(urllib2.build_opener(urllib2.HTTPCookieProcessor()))
933 socket.setdefaulttimeout(300) # 5 minutes should be enough (famous last words)
936 parser = optparse.OptionParser(
937 usage='Usage: %prog [options] url...',
939 conflict_handler='resolve',
941 parser.add_option('-h', '--help',
942 action='help', help='print this help text and exit')
943 parser.add_option('-v', '--version',
944 action='version', help='print program version and exit')
945 parser.add_option('-u', '--username',
946 dest='username', metavar='UN', help='account username')
947 parser.add_option('-p', '--password',
948 dest='password', metavar='PW', help='account password')
949 parser.add_option('-o', '--output',
950 dest='outtmpl', metavar='TPL', help='output filename template')
951 parser.add_option('-q', '--quiet',
952 action='store_true', dest='quiet', help='activates quiet mode', default=False)
953 parser.add_option('-s', '--simulate',
954 action='store_true', dest='simulate', help='do not download video', default=False)
955 parser.add_option('-t', '--title',
956 action='store_true', dest='usetitle', help='use title in file name', default=False)
957 parser.add_option('-l', '--literal',
958 action='store_true', dest='useliteral', help='use literal title in file name', default=False)
959 parser.add_option('-n', '--netrc',
960 action='store_true', dest='usenetrc', help='use .netrc authentication data', default=False)
961 parser.add_option('-g', '--get-url',
962 action='store_true', dest='geturl', help='simulate, quiet but print URL', default=False)
963 parser.add_option('-e', '--get-title',
964 action='store_true', dest='gettitle', help='simulate, quiet but print title', default=False)
965 parser.add_option('-f', '--format',
966 dest='format', metavar='FMT', help='video format code')
967 parser.add_option('-m', '--mobile-version',
968 action='store_const', dest='format', help='alias for -f 17', const='17')
969 parser.add_option('-d', '--high-def',
970 action='store_const', dest='format', help='alias for -f 22', const='22')
971 parser.add_option('-i', '--ignore-errors',
972 action='store_true', dest='ignoreerrors', help='continue on download errors', default=False)
973 parser.add_option('-r', '--rate-limit',
974 dest='ratelimit', metavar='L', help='download rate limit (e.g. 50k or 44.6m)')
975 parser.add_option('-a', '--batch-file',
976 dest='batchfile', metavar='F', help='file containing URLs to download')
977 parser.add_option('-w', '--no-overwrites',
978 action='store_true', dest='nooverwrites', help='do not overwrite files', default=False)
979 (opts, args) = parser.parse_args()
981 # Batch file verification
983 if opts.batchfile is not None:
985 batchurls = [line.strip() for line in open(opts.batchfile, 'r')]
987 sys.exit(u'ERROR: batch file could not be read')
988 all_urls = batchurls + args
990 # Conflicting, missing and erroneous options
991 if len(all_urls) < 1:
992 sys.exit(u'ERROR: you must provide at least one URL')
993 if opts.usenetrc and (opts.username is not None or opts.password is not None):
994 sys.exit(u'ERROR: using .netrc conflicts with giving username/password')
995 if opts.password is not None and opts.username is None:
996 sys.exit(u'ERROR: account username missing')
997 if opts.outtmpl is not None and (opts.useliteral or opts.usetitle):
998 sys.exit(u'ERROR: using output template conflicts with using title or literal title')
999 if opts.usetitle and opts.useliteral:
1000 sys.exit(u'ERROR: using title conflicts with using literal title')
1001 if opts.username is not None and opts.password is None:
1002 opts.password = getpass.getpass(u'Type account password and press return:')
1003 if opts.ratelimit is not None:
1004 numeric_limit = FileDownloader.parse_bytes(opts.ratelimit)
1005 if numeric_limit is None:
1006 sys.exit(u'ERROR: invalid rate limit specified')
1007 opts.ratelimit = numeric_limit
1009 # Information extractors
1010 youtube_ie = YoutubeIE()
1011 metacafe_ie = MetacafeIE(youtube_ie)
1012 youtube_pl_ie = YoutubePlaylistIE(youtube_ie)
1013 youtube_search_ie = YoutubeSearchIE(youtube_ie)
1016 charset = locale.getdefaultlocale()[1]
1019 fd = FileDownloader({
1020 'usenetrc': opts.usenetrc,
1021 'username': opts.username,
1022 'password': opts.password,
1023 'quiet': (opts.quiet or opts.geturl or opts.gettitle),
1024 'forceurl': opts.geturl,
1025 'forcetitle': opts.gettitle,
1026 'simulate': (opts.simulate or opts.geturl or opts.gettitle),
1027 'format': opts.format,
1028 'outtmpl': ((opts.outtmpl is not None and opts.outtmpl.decode(charset))
1029 or (opts.usetitle and u'%(stitle)s-%(id)s.%(ext)s')
1030 or (opts.useliteral and u'%(title)s-%(id)s.%(ext)s')
1031 or u'%(id)s.%(ext)s'),
1032 'ignoreerrors': opts.ignoreerrors,
1033 'ratelimit': opts.ratelimit,
1034 'nooverwrites': opts.nooverwrites,
1036 fd.add_info_extractor(youtube_search_ie)
1037 fd.add_info_extractor(youtube_pl_ie)
1038 fd.add_info_extractor(metacafe_ie)
1039 fd.add_info_extractor(youtube_ie)
1040 retcode = fd.download(all_urls)
1043 except DownloadError:
1045 except SameFileError:
1046 sys.exit(u'ERROR: fixed output name but more than one file to download')
1047 except KeyboardInterrupt:
1048 sys.exit(u'\nERROR: Interrupted by user')