2 # -*- coding: utf-8 -*-
5 'Ricardo Garcia Gonzalez',
13 'Philipp Hagemeister',
19 __license__ = 'Public Domain'
20 __version__ = '2011.10.19'
22 UPDATE_URL = 'https://raw.github.com/rg3/youtube-dl/master/youtube-dl'
51 except ImportError: # Python 2.4
54 import cStringIO as StringIO
58 # parse_qs was moved from the cgi module to the urlparse module recently.
60 from urlparse import parse_qs
62 from cgi import parse_qs
70 import xml.etree.ElementTree
71 except ImportError: # Python<2.5: Not officially supported, but let it slip
72 warnings.warn('xml.etree.ElementTree support is missing. Consider upgrading to Python >= 2.5 if you get related errors.')
75 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:5.0.1) Gecko/20100101 Firefox/5.0.1',
76 'Accept-Charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',
77 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
78 'Accept-Encoding': 'gzip, deflate',
79 'Accept-Language': 'en-us,en;q=0.5',
82 simple_title_chars = string.ascii_letters.decode('ascii') + string.digits.decode('ascii')
86 except ImportError: # Python <2.6, use trivialjson (https://github.com/phihag/trivialjson):
92 def raiseError(msg, i):
93 raise ValueError(msg + ' at position ' + str(i) + ' of ' + repr(s) + ': ' + repr(s[i:]))
94 def skipSpace(i, expectMore=True):
95 while i < len(s) and s[i] in ' \t\r\n':
99 raiseError('Premature end', i)
101 def decodeEscape(match):
117 return unichr(int(esc[1:5], 16))
118 if len(esc) == 5+6 and esc[5:7] == '\\u':
119 hi = int(esc[1:5], 16)
120 low = int(esc[7:11], 16)
121 return unichr((hi - 0xd800) * 0x400 + low - 0xdc00 + 0x10000)
122 raise ValueError('Unknown escape ' + str(esc))
129 while s[e-bslashes-1] == '\\':
131 if bslashes % 2 == 1:
135 rexp = re.compile(r'\\(u[dD][89aAbB][0-9a-fA-F]{2}\\u[0-9a-fA-F]{4}|u[0-9a-fA-F]{4}|.|$)')
136 stri = rexp.sub(decodeEscape, s[i:e])
142 if s[i] == '}': # Empty dictionary
146 raiseError('Expected a string object key', i)
147 i,key = parseString(i)
149 if i >= len(s) or s[i] != ':':
150 raiseError('Expected a colon', i)
157 raiseError('Expected comma or closing curly brace', i)
162 if s[i] == ']': # Empty array
167 i = skipSpace(i) # Raise exception if premature end
171 raiseError('Expected a comma or closing bracket', i)
173 def parseDiscrete(i):
174 for k,v in {'true': True, 'false': False, 'null': None}.items():
175 if s.startswith(k, i):
177 raiseError('Not a boolean (or null)', i)
179 mobj = re.match('^(-?(0|[1-9][0-9]*)(\.[0-9]*)?([eE][+-]?[0-9]+)?)', s[i:])
181 raiseError('Not a number', i)
183 if '.' in nums or 'e' in nums or 'E' in nums:
184 return (i+len(nums), float(nums))
185 return (i+len(nums), int(nums))
186 CHARMAP = {'{': parseObj, '[': parseArray, '"': parseString, 't': parseDiscrete, 'f': parseDiscrete, 'n': parseDiscrete}
189 i,res = CHARMAP.get(s[i], parseNumber)(i)
190 i = skipSpace(i, False)
194 raise ValueError('Extra data at end of input (index ' + str(i) + ' of ' + repr(s) + ': ' + repr(s[i:]) + ')')
197 def preferredencoding():
198 """Get preferred encoding.
200 Returns the best encoding scheme for the system, based on
201 locale.getpreferredencoding() and some further tweaks.
203 def yield_preferredencoding():
205 pref = locale.getpreferredencoding()
211 return yield_preferredencoding().next()
214 def htmlentity_transform(matchobj):
215 """Transforms an HTML entity to a Unicode character.
217 This function receives a match object and is intended to be used with
218 the re.sub() function.
220 entity = matchobj.group(1)
222 # Known non-numeric HTML entity
223 if entity in htmlentitydefs.name2codepoint:
224 return unichr(htmlentitydefs.name2codepoint[entity])
227 mobj = re.match(ur'(?u)#(x?\d+)', entity)
229 numstr = mobj.group(1)
230 if numstr.startswith(u'x'):
232 numstr = u'0%s' % numstr
235 return unichr(long(numstr, base))
237 # Unknown entity in name, return its literal representation
238 return (u'&%s;' % entity)
241 def sanitize_title(utitle):
242 """Sanitizes a video title so it could be used as part of a filename."""
243 utitle = re.sub(ur'(?u)&(.+?);', htmlentity_transform, utitle)
244 return utitle.replace(unicode(os.sep), u'%')
247 def sanitize_open(filename, open_mode):
248 """Try to open the given filename, and slightly tweak it if this fails.
250 Attempts to open the given filename. If this fails, it tries to change
251 the filename slightly, step by step, until it's either able to open it
252 or it fails and raises a final exception, like the standard open()
255 It returns the tuple (stream, definitive_file_name).
259 if sys.platform == 'win32':
261 msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
262 return (sys.stdout, filename)
263 stream = open(filename, open_mode)
264 return (stream, filename)
265 except (IOError, OSError), err:
266 # In case of error, try to remove win32 forbidden chars
267 filename = re.sub(ur'[/<>:"\|\?\*]', u'#', filename)
269 # An exception here should be caught in the caller
270 stream = open(filename, open_mode)
271 return (stream, filename)
274 def timeconvert(timestr):
275 """Convert RFC 2822 defined time string into system timestamp"""
277 timetuple = email.utils.parsedate_tz(timestr)
278 if timetuple is not None:
279 timestamp = email.utils.mktime_tz(timetuple)
283 class DownloadError(Exception):
284 """Download Error exception.
286 This exception may be thrown by FileDownloader objects if they are not
287 configured to continue on errors. They will contain the appropriate
293 class SameFileError(Exception):
294 """Same File exception.
296 This exception will be thrown by FileDownloader objects if they detect
297 multiple files would have to be downloaded to the same file on disk.
302 class PostProcessingError(Exception):
303 """Post Processing exception.
305 This exception may be raised by PostProcessor's .run() method to
306 indicate an error in the postprocessing task.
311 class UnavailableVideoError(Exception):
312 """Unavailable Format exception.
314 This exception will be thrown when a video is requested
315 in a format that is not available for that video.
320 class ContentTooShortError(Exception):
321 """Content Too Short exception.
323 This exception may be raised by FileDownloader objects when a file they
324 download is too small for what the server announced first, indicating
325 the connection was probably interrupted.
331 def __init__(self, downloaded, expected):
332 self.downloaded = downloaded
333 self.expected = expected
336 class YoutubeDLHandler(urllib2.HTTPHandler):
337 """Handler for HTTP requests and responses.
339 This class, when installed with an OpenerDirector, automatically adds
340 the standard headers to every HTTP request and handles gzipped and
341 deflated responses from web servers. If compression is to be avoided in
342 a particular request, the original request in the program code only has
343 to include the HTTP header "Youtubedl-No-Compression", which will be
344 removed before making the real request.
346 Part of this code was copied from:
348 http://techknack.net/python-urllib2-handlers/
350 Andrew Rowls, the author of that code, agreed to release it to the
357 return zlib.decompress(data, -zlib.MAX_WBITS)
359 return zlib.decompress(data)
362 def addinfourl_wrapper(stream, headers, url, code):
363 if hasattr(urllib2.addinfourl, 'getcode'):
364 return urllib2.addinfourl(stream, headers, url, code)
365 ret = urllib2.addinfourl(stream, headers, url)
369 def http_request(self, req):
370 for h in std_headers:
373 req.add_header(h, std_headers[h])
374 if 'Youtubedl-no-compression' in req.headers:
375 if 'Accept-encoding' in req.headers:
376 del req.headers['Accept-encoding']
377 del req.headers['Youtubedl-no-compression']
380 def http_response(self, req, resp):
383 if resp.headers.get('Content-encoding', '') == 'gzip':
384 gz = gzip.GzipFile(fileobj=StringIO.StringIO(resp.read()), mode='r')
385 resp = self.addinfourl_wrapper(gz, old_resp.headers, old_resp.url, old_resp.code)
386 resp.msg = old_resp.msg
388 if resp.headers.get('Content-encoding', '') == 'deflate':
389 gz = StringIO.StringIO(self.deflate(resp.read()))
390 resp = self.addinfourl_wrapper(gz, old_resp.headers, old_resp.url, old_resp.code)
391 resp.msg = old_resp.msg
395 class FileDownloader(object):
396 """File Downloader class.
398 File downloader objects are the ones responsible of downloading the
399 actual video file and writing it to disk if the user has requested
400 it, among some other tasks. In most cases there should be one per
401 program. As, given a video URL, the downloader doesn't know how to
402 extract all the needed information, task that InfoExtractors do, it
403 has to pass the URL to one of them.
405 For this, file downloader objects have a method that allows
406 InfoExtractors to be registered in a given order. When it is passed
407 a URL, the file downloader handles it to the first InfoExtractor it
408 finds that reports being able to handle it. The InfoExtractor extracts
409 all the information about the video or videos the URL refers to, and
410 asks the FileDownloader to process the video information, possibly
411 downloading the video.
413 File downloaders accept a lot of parameters. In order not to saturate
414 the object constructor with arguments, it receives a dictionary of
415 options instead. These options are available through the params
416 attribute for the InfoExtractors to use. The FileDownloader also
417 registers itself as the downloader in charge for the InfoExtractors
418 that are added to it, so this is a "mutual registration".
422 username: Username for authentication purposes.
423 password: Password for authentication purposes.
424 usenetrc: Use netrc for authentication instead.
425 quiet: Do not print messages to stdout.
426 forceurl: Force printing final URL.
427 forcetitle: Force printing title.
428 forcethumbnail: Force printing thumbnail URL.
429 forcedescription: Force printing description.
430 forcefilename: Force printing final filename.
431 simulate: Do not download the video files.
432 format: Video format code.
433 format_limit: Highest quality format to try.
434 outtmpl: Template for output names.
435 ignoreerrors: Do not stop on download errors.
436 ratelimit: Download speed limit, in bytes/sec.
437 nooverwrites: Prevent overwriting files.
438 retries: Number of times to retry for HTTP error 5xx
439 continuedl: Try to continue downloads if possible.
440 noprogress: Do not print the progress bar.
441 playliststart: Playlist item to start at.
442 playlistend: Playlist item to end at.
443 matchtitle: Download only matching titles.
444 rejecttitle: Reject downloads for matching titles.
445 logtostderr: Log messages to stderr instead of stdout.
446 consoletitle: Display progress in console window's titlebar.
447 nopart: Do not use temporary .part files.
448 updatetime: Use the Last-modified header to set output file timestamps.
449 writedescription: Write the video description to a .description file
450 writeinfojson: Write the video description to a .info.json file
456 _download_retcode = None
457 _num_downloads = None
460 def __init__(self, params):
461 """Create a FileDownloader object with the given options."""
464 self._download_retcode = 0
465 self._num_downloads = 0
466 self._screen_file = [sys.stdout, sys.stderr][params.get('logtostderr', False)]
470 def format_bytes(bytes):
473 if type(bytes) is str:
478 exponent = long(math.log(bytes, 1024.0))
479 suffix = 'bkMGTPEZY'[exponent]
480 converted = float(bytes) / float(1024 ** exponent)
481 return '%.2f%s' % (converted, suffix)
484 def calc_percent(byte_counter, data_len):
487 return '%6s' % ('%3.1f%%' % (float(byte_counter) / float(data_len) * 100.0))
490 def calc_eta(start, now, total, current):
494 if current == 0 or dif < 0.001: # One millisecond
496 rate = float(current) / dif
497 eta = long((float(total) - float(current)) / rate)
498 (eta_mins, eta_secs) = divmod(eta, 60)
501 return '%02d:%02d' % (eta_mins, eta_secs)
504 def calc_speed(start, now, bytes):
506 if bytes == 0 or dif < 0.001: # One millisecond
507 return '%10s' % '---b/s'
508 return '%10s' % ('%s/s' % FileDownloader.format_bytes(float(bytes) / dif))
511 def best_block_size(elapsed_time, bytes):
512 new_min = max(bytes / 2.0, 1.0)
513 new_max = min(max(bytes * 2.0, 1.0), 4194304) # Do not surpass 4 MB
514 if elapsed_time < 0.001:
516 rate = bytes / elapsed_time
524 def parse_bytes(bytestr):
525 """Parse a string indicating a byte quantity into a long integer."""
526 matchobj = re.match(r'(?i)^(\d+(?:\.\d+)?)([kMGTPEZY]?)$', bytestr)
529 number = float(matchobj.group(1))
530 multiplier = 1024.0 ** 'bkmgtpezy'.index(matchobj.group(2).lower())
531 return long(round(number * multiplier))
533 def add_info_extractor(self, ie):
534 """Add an InfoExtractor object to the end of the list."""
536 ie.set_downloader(self)
538 def add_post_processor(self, pp):
539 """Add a PostProcessor object to the end of the chain."""
541 pp.set_downloader(self)
543 def to_screen(self, message, skip_eol=False, ignore_encoding_errors=False):
544 """Print message to stdout if not in quiet mode."""
546 if not self.params.get('quiet', False):
547 terminator = [u'\n', u''][skip_eol]
548 print >>self._screen_file, (u'%s%s' % (message, terminator)).encode(preferredencoding()),
549 self._screen_file.flush()
550 except (UnicodeEncodeError), err:
551 if not ignore_encoding_errors:
554 def to_stderr(self, message):
555 """Print message to stderr."""
556 print >>sys.stderr, message.encode(preferredencoding())
558 def to_cons_title(self, message):
559 """Set console/terminal window title to message."""
560 if not self.params.get('consoletitle', False):
562 if os.name == 'nt' and ctypes.windll.kernel32.GetConsoleWindow():
563 # c_wchar_p() might not be necessary if `message` is
564 # already of type unicode()
565 ctypes.windll.kernel32.SetConsoleTitleW(ctypes.c_wchar_p(message))
566 elif 'TERM' in os.environ:
567 sys.stderr.write('\033]0;%s\007' % message.encode(preferredencoding()))
569 def fixed_template(self):
570 """Checks if the output template is fixed."""
571 return (re.search(ur'(?u)%\(.+?\)s', self.params['outtmpl']) is None)
573 def trouble(self, message=None):
574 """Determine action to take when a download problem appears.
576 Depending on if the downloader has been configured to ignore
577 download errors or not, this method may throw an exception or
578 not when errors are found, after printing the message.
580 if message is not None:
581 self.to_stderr(message)
582 if not self.params.get('ignoreerrors', False):
583 raise DownloadError(message)
584 self._download_retcode = 1
586 def slow_down(self, start_time, byte_counter):
587 """Sleep if the download speed is over the rate limit."""
588 rate_limit = self.params.get('ratelimit', None)
589 if rate_limit is None or byte_counter == 0:
592 elapsed = now - start_time
595 speed = float(byte_counter) / elapsed
596 if speed > rate_limit:
597 time.sleep((byte_counter - rate_limit * (now - start_time)) / rate_limit)
599 def temp_name(self, filename):
600 """Returns a temporary filename for the given filename."""
601 if self.params.get('nopart', False) or filename == u'-' or \
602 (os.path.exists(filename) and not os.path.isfile(filename)):
604 return filename + u'.part'
606 def undo_temp_name(self, filename):
607 if filename.endswith(u'.part'):
608 return filename[:-len(u'.part')]
611 def try_rename(self, old_filename, new_filename):
613 if old_filename == new_filename:
615 os.rename(old_filename, new_filename)
616 except (IOError, OSError), err:
617 self.trouble(u'ERROR: unable to rename file')
619 def try_utime(self, filename, last_modified_hdr):
620 """Try to set the last-modified time of the given file."""
621 if last_modified_hdr is None:
623 if not os.path.isfile(filename):
625 timestr = last_modified_hdr
628 filetime = timeconvert(timestr)
632 os.utime(filename, (time.time(), filetime))
637 def report_writedescription(self, descfn):
638 """ Report that the description file is being written """
639 self.to_screen(u'[info] Writing video description to: %s' % descfn, ignore_encoding_errors=True)
641 def report_writeinfojson(self, infofn):
642 """ Report that the metadata file has been written """
643 self.to_screen(u'[info] Video description metadata as JSON to: %s' % infofn, ignore_encoding_errors=True)
645 def report_destination(self, filename):
646 """Report destination filename."""
647 self.to_screen(u'[download] Destination: %s' % filename, ignore_encoding_errors=True)
649 def report_progress(self, percent_str, data_len_str, speed_str, eta_str):
650 """Report download progress."""
651 if self.params.get('noprogress', False):
653 self.to_screen(u'\r[download] %s of %s at %s ETA %s' %
654 (percent_str, data_len_str, speed_str, eta_str), skip_eol=True)
655 self.to_cons_title(u'youtube-dl - %s of %s at %s ETA %s' %
656 (percent_str.strip(), data_len_str.strip(), speed_str.strip(), eta_str.strip()))
658 def report_resuming_byte(self, resume_len):
659 """Report attempt to resume at given byte."""
660 self.to_screen(u'[download] Resuming download at byte %s' % resume_len)
662 def report_retry(self, count, retries):
663 """Report retry in case of HTTP error 5xx"""
664 self.to_screen(u'[download] Got server HTTP error. Retrying (attempt %d of %d)...' % (count, retries))
666 def report_file_already_downloaded(self, file_name):
667 """Report file has already been fully downloaded."""
669 self.to_screen(u'[download] %s has already been downloaded' % file_name)
670 except (UnicodeEncodeError), err:
671 self.to_screen(u'[download] The file has already been downloaded')
673 def report_unable_to_resume(self):
674 """Report it was impossible to resume download."""
675 self.to_screen(u'[download] Unable to resume')
677 def report_finish(self):
678 """Report download finished."""
679 if self.params.get('noprogress', False):
680 self.to_screen(u'[download] Download completed')
684 def increment_downloads(self):
685 """Increment the ordinal that assigns a number to each file."""
686 self._num_downloads += 1
688 def prepare_filename(self, info_dict):
689 """Generate the output filename."""
691 template_dict = dict(info_dict)
692 template_dict['epoch'] = unicode(long(time.time()))
693 template_dict['autonumber'] = unicode('%05d' % self._num_downloads)
694 filename = self.params['outtmpl'] % template_dict
696 except (ValueError, KeyError), err:
697 self.trouble(u'ERROR: invalid system charset or erroneous output template')
700 def process_info(self, info_dict):
701 """Process a single dictionary returned by an InfoExtractor."""
702 filename = self.prepare_filename(info_dict)
705 if self.params.get('forcetitle', False):
706 print info_dict['title'].encode(preferredencoding(), 'xmlcharrefreplace')
707 if self.params.get('forceurl', False):
708 print info_dict['url'].encode(preferredencoding(), 'xmlcharrefreplace')
709 if self.params.get('forcethumbnail', False) and 'thumbnail' in info_dict:
710 print info_dict['thumbnail'].encode(preferredencoding(), 'xmlcharrefreplace')
711 if self.params.get('forcedescription', False) and 'description' in info_dict:
712 print info_dict['description'].encode(preferredencoding(), 'xmlcharrefreplace')
713 if self.params.get('forcefilename', False) and filename is not None:
714 print filename.encode(preferredencoding(), 'xmlcharrefreplace')
715 if self.params.get('forceformat', False):
716 print info_dict['format'].encode(preferredencoding(), 'xmlcharrefreplace')
718 # Do nothing else if in simulate mode
719 if self.params.get('simulate', False):
725 matchtitle=self.params.get('matchtitle',False)
726 rejecttitle=self.params.get('rejecttitle',False)
727 title=info_dict['title'].encode(preferredencoding(), 'xmlcharrefreplace')
728 if matchtitle and not re.search(matchtitle, title, re.IGNORECASE):
729 self.to_screen(u'[download] "%s" title did not match pattern "%s"' % (title, matchtitle))
731 if rejecttitle and re.search(rejecttitle, title, re.IGNORECASE):
732 self.to_screen(u'[download] "%s" title matched reject pattern "%s"' % (title, rejecttitle))
735 if self.params.get('nooverwrites', False) and os.path.exists(filename):
736 self.to_stderr(u'WARNING: file exists and will be skipped')
740 dn = os.path.dirname(filename)
741 if dn != '' and not os.path.exists(dn):
743 except (OSError, IOError), err:
744 self.trouble(u'ERROR: unable to create directory ' + unicode(err))
747 if self.params.get('writedescription', False):
749 descfn = filename + '.description'
750 self.report_writedescription(descfn)
751 descfile = open(descfn, 'wb')
753 descfile.write(info_dict['description'].encode('utf-8'))
756 except (OSError, IOError):
757 self.trouble(u'ERROR: Cannot write description file ' + descfn)
760 if self.params.get('writeinfojson', False):
761 infofn = filename + '.info.json'
762 self.report_writeinfojson(infofn)
765 except (NameError,AttributeError):
766 self.trouble(u'ERROR: No JSON encoder found. Update to Python 2.6+, setup a json module, or leave out --write-info-json.')
769 infof = open(infofn, 'wb')
771 json_info_dict = dict((k,v) for k,v in info_dict.iteritems() if not k in ('urlhandle',))
772 json.dump(json_info_dict, infof)
775 except (OSError, IOError):
776 self.trouble(u'ERROR: Cannot write metadata to JSON file ' + infofn)
779 if not self.params.get('skip_download', False):
781 success = self._do_download(filename, info_dict)
782 except (OSError, IOError), err:
783 raise UnavailableVideoError
784 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
785 self.trouble(u'ERROR: unable to download video data: %s' % str(err))
787 except (ContentTooShortError, ), err:
788 self.trouble(u'ERROR: content too short (expected %s bytes and served %s)' % (err.expected, err.downloaded))
793 self.post_process(filename, info_dict)
794 except (PostProcessingError), err:
795 self.trouble(u'ERROR: postprocessing: %s' % str(err))
798 def download(self, url_list):
799 """Download a given list of URLs."""
800 if len(url_list) > 1 and self.fixed_template():
801 raise SameFileError(self.params['outtmpl'])
804 suitable_found = False
806 # Go to next InfoExtractor if not suitable
807 if not ie.suitable(url):
810 # Suitable InfoExtractor found
811 suitable_found = True
813 # Extract information from URL and process it
816 # Suitable InfoExtractor had been found; go to next URL
819 if not suitable_found:
820 self.trouble(u'ERROR: no suitable InfoExtractor: %s' % url)
822 return self._download_retcode
824 def post_process(self, filename, ie_info):
825 """Run the postprocessing chain on the given file."""
827 info['filepath'] = filename
833 def _download_with_rtmpdump(self, filename, url, player_url):
834 self.report_destination(filename)
835 tmpfilename = self.temp_name(filename)
837 # Check for rtmpdump first
839 subprocess.call(['rtmpdump', '-h'], stdout=(file(os.path.devnull, 'w')), stderr=subprocess.STDOUT)
840 except (OSError, IOError):
841 self.trouble(u'ERROR: RTMP download detected but "rtmpdump" could not be run')
844 # Download using rtmpdump. rtmpdump returns exit code 2 when
845 # the connection was interrumpted and resuming appears to be
846 # possible. This is part of rtmpdump's normal usage, AFAIK.
847 basic_args = ['rtmpdump', '-q'] + [[], ['-W', player_url]][player_url is not None] + ['-r', url, '-o', tmpfilename]
848 retval = subprocess.call(basic_args + [[], ['-e', '-k', '1']][self.params.get('continuedl', False)])
849 while retval == 2 or retval == 1:
850 prevsize = os.path.getsize(tmpfilename)
851 self.to_screen(u'\r[rtmpdump] %s bytes' % prevsize, skip_eol=True)
852 time.sleep(5.0) # This seems to be needed
853 retval = subprocess.call(basic_args + ['-e'] + [[], ['-k', '1']][retval == 1])
854 cursize = os.path.getsize(tmpfilename)
855 if prevsize == cursize and retval == 1:
857 # Some rtmp streams seem abort after ~ 99.8%. Don't complain for those
858 if prevsize == cursize and retval == 2 and cursize > 1024:
859 self.to_screen(u'\r[rtmpdump] Could not download the whole video. This can happen for some advertisements.')
863 self.to_screen(u'\r[rtmpdump] %s bytes' % os.path.getsize(tmpfilename))
864 self.try_rename(tmpfilename, filename)
867 self.trouble(u'\nERROR: rtmpdump exited with code %d' % retval)
870 def _do_download(self, filename, info_dict):
871 url = info_dict['url']
872 player_url = info_dict.get('player_url', None)
874 # Check file already present
875 if self.params.get('continuedl', False) and os.path.isfile(filename) and not self.params.get('nopart', False):
876 self.report_file_already_downloaded(filename)
879 # Attempt to download using rtmpdump
880 if url.startswith('rtmp'):
881 return self._download_with_rtmpdump(filename, url, player_url)
883 tmpfilename = self.temp_name(filename)
886 # Do not include the Accept-Encoding header
887 headers = {'Youtubedl-no-compression': 'True'}
888 basic_request = urllib2.Request(url, None, headers)
889 request = urllib2.Request(url, None, headers)
891 # Establish possible resume length
892 if os.path.isfile(tmpfilename):
893 resume_len = os.path.getsize(tmpfilename)
899 if self.params.get('continuedl', False):
900 self.report_resuming_byte(resume_len)
901 request.add_header('Range','bytes=%d-' % resume_len)
907 retries = self.params.get('retries', 0)
908 while count <= retries:
909 # Establish connection
911 if count == 0 and 'urlhandle' in info_dict:
912 data = info_dict['urlhandle']
913 data = urllib2.urlopen(request)
915 except (urllib2.HTTPError, ), err:
916 if (err.code < 500 or err.code >= 600) and err.code != 416:
917 # Unexpected HTTP error
919 elif err.code == 416:
920 # Unable to resume (requested range not satisfiable)
922 # Open the connection again without the range header
923 data = urllib2.urlopen(basic_request)
924 content_length = data.info()['Content-Length']
925 except (urllib2.HTTPError, ), err:
926 if err.code < 500 or err.code >= 600:
929 # Examine the reported length
930 if (content_length is not None and
931 (resume_len - 100 < long(content_length) < resume_len + 100)):
932 # The file had already been fully downloaded.
933 # Explanation to the above condition: in issue #175 it was revealed that
934 # YouTube sometimes adds or removes a few bytes from the end of the file,
935 # changing the file size slightly and causing problems for some users. So
936 # I decided to implement a suggested change and consider the file
937 # completely downloaded if the file size differs less than 100 bytes from
938 # the one in the hard drive.
939 self.report_file_already_downloaded(filename)
940 self.try_rename(tmpfilename, filename)
943 # The length does not match, we start the download over
944 self.report_unable_to_resume()
950 self.report_retry(count, retries)
953 self.trouble(u'ERROR: giving up after %s retries' % retries)
956 data_len = data.info().get('Content-length', None)
957 if data_len is not None:
958 data_len = long(data_len) + resume_len
959 data_len_str = self.format_bytes(data_len)
960 byte_counter = 0 + resume_len
966 data_block = data.read(block_size)
968 if len(data_block) == 0:
970 byte_counter += len(data_block)
972 # Open file just in time
975 (stream, tmpfilename) = sanitize_open(tmpfilename, open_mode)
976 assert stream is not None
977 filename = self.undo_temp_name(tmpfilename)
978 self.report_destination(filename)
979 except (OSError, IOError), err:
980 self.trouble(u'ERROR: unable to open for writing: %s' % str(err))
983 stream.write(data_block)
984 except (IOError, OSError), err:
985 self.trouble(u'\nERROR: unable to write data: %s' % str(err))
987 block_size = self.best_block_size(after - before, len(data_block))
990 speed_str = self.calc_speed(start, time.time(), byte_counter - resume_len)
992 self.report_progress('Unknown %', data_len_str, speed_str, 'Unknown ETA')
994 percent_str = self.calc_percent(byte_counter, data_len)
995 eta_str = self.calc_eta(start, time.time(), data_len - resume_len, byte_counter - resume_len)
996 self.report_progress(percent_str, data_len_str, speed_str, eta_str)
999 self.slow_down(start, byte_counter - resume_len)
1002 self.trouble(u'\nERROR: Did not get any data blocks')
1005 self.report_finish()
1006 if data_len is not None and byte_counter != data_len:
1007 raise ContentTooShortError(byte_counter, long(data_len))
1008 self.try_rename(tmpfilename, filename)
1010 # Update file modification time
1011 if self.params.get('updatetime', True):
1012 info_dict['filetime'] = self.try_utime(filename, data.info().get('last-modified', None))
1017 class InfoExtractor(object):
1018 """Information Extractor class.
1020 Information extractors are the classes that, given a URL, extract
1021 information from the video (or videos) the URL refers to. This
1022 information includes the real video URL, the video title and simplified
1023 title, author and others. The information is stored in a dictionary
1024 which is then passed to the FileDownloader. The FileDownloader
1025 processes this information possibly downloading the video to the file
1026 system, among other possible outcomes. The dictionaries must include
1027 the following fields:
1029 id: Video identifier.
1030 url: Final video URL.
1031 uploader: Nickname of the video uploader.
1032 title: Literal title.
1033 stitle: Simplified title.
1034 ext: Video filename extension.
1035 format: Video format.
1036 player_url: SWF Player URL (may be None).
1038 The following fields are optional. Their primary purpose is to allow
1039 youtube-dl to serve as the backend for a video search function, such
1040 as the one in youtube2mp3. They are only used when their respective
1041 forced printing functions are called:
1043 thumbnail: Full URL to a video thumbnail image.
1044 description: One-line video description.
1046 Subclasses of this one should re-define the _real_initialize() and
1047 _real_extract() methods and define a _VALID_URL regexp.
1048 Probably, they should also be added to the list of extractors.
1054 def __init__(self, downloader=None):
1055 """Constructor. Receives an optional downloader."""
1057 self.set_downloader(downloader)
1059 def suitable(self, url):
1060 """Receives a URL and returns True if suitable for this IE."""
1061 return re.match(self._VALID_URL, url) is not None
1063 def initialize(self):
1064 """Initializes an instance (authentication, etc)."""
1066 self._real_initialize()
1069 def extract(self, url):
1070 """Extracts URL information and returns it in list of dicts."""
1072 return self._real_extract(url)
1074 def set_downloader(self, downloader):
1075 """Sets the downloader for this IE."""
1076 self._downloader = downloader
1078 def _real_initialize(self):
1079 """Real initialization process. Redefine in subclasses."""
1082 def _real_extract(self, url):
1083 """Real extraction process. Redefine in subclasses."""
1087 class YoutubeIE(InfoExtractor):
1088 """Information extractor for youtube.com."""
1090 _VALID_URL = r'^((?:https?://)?(?:youtu\.be/|(?:\w+\.)?youtube(?:-nocookie)?\.com/)(?!view_play_list|my_playlists|artist|playlist)(?:(?:(?:v|embed|e)/)|(?:(?:watch(?:_popup)?(?:\.php)?)?(?:\?|#!?)(?:.+&)?v=))?)?([0-9A-Za-z_-]+)(?(1).+)?$'
1091 _LANG_URL = r'http://www.youtube.com/?hl=en&persist_hl=1&gl=US&persist_gl=1&opt_out_ackd=1'
1092 _LOGIN_URL = 'https://www.youtube.com/signup?next=/&gl=US&hl=en'
1093 _AGE_URL = 'http://www.youtube.com/verify_age?next_url=/&gl=US&hl=en'
1094 _NETRC_MACHINE = 'youtube'
1095 # Listed in order of quality
1096 _available_formats = ['38', '37', '22', '45', '35', '44', '34', '18', '43', '6', '5', '17', '13']
1097 _video_extensions = {
1103 '38': 'video', # You actually don't know if this will be MOV, AVI or whatever
1108 _video_dimensions = {
1123 IE_NAME = u'youtube'
1125 def report_lang(self):
1126 """Report attempt to set language."""
1127 self._downloader.to_screen(u'[youtube] Setting language')
1129 def report_login(self):
1130 """Report attempt to log in."""
1131 self._downloader.to_screen(u'[youtube] Logging in')
1133 def report_age_confirmation(self):
1134 """Report attempt to confirm age."""
1135 self._downloader.to_screen(u'[youtube] Confirming age')
1137 def report_video_webpage_download(self, video_id):
1138 """Report attempt to download video webpage."""
1139 self._downloader.to_screen(u'[youtube] %s: Downloading video webpage' % video_id)
1141 def report_video_info_webpage_download(self, video_id):
1142 """Report attempt to download video info webpage."""
1143 self._downloader.to_screen(u'[youtube] %s: Downloading video info webpage' % video_id)
1145 def report_information_extraction(self, video_id):
1146 """Report attempt to extract video information."""
1147 self._downloader.to_screen(u'[youtube] %s: Extracting video information' % video_id)
1149 def report_unavailable_format(self, video_id, format):
1150 """Report extracted video URL."""
1151 self._downloader.to_screen(u'[youtube] %s: Format %s not available' % (video_id, format))
1153 def report_rtmp_download(self):
1154 """Indicate the download will use the RTMP protocol."""
1155 self._downloader.to_screen(u'[youtube] RTMP download detected')
1157 def _print_formats(self, formats):
1158 print 'Available formats:'
1160 print '%s\t:\t%s\t[%s]' %(x, self._video_extensions.get(x, 'flv'), self._video_dimensions.get(x, '???'))
1162 def _real_initialize(self):
1163 if self._downloader is None:
1168 downloader_params = self._downloader.params
1170 # Attempt to use provided username and password or .netrc data
1171 if downloader_params.get('username', None) is not None:
1172 username = downloader_params['username']
1173 password = downloader_params['password']
1174 elif downloader_params.get('usenetrc', False):
1176 info = netrc.netrc().authenticators(self._NETRC_MACHINE)
1177 if info is not None:
1181 raise netrc.NetrcParseError('No authenticators for %s' % self._NETRC_MACHINE)
1182 except (IOError, netrc.NetrcParseError), err:
1183 self._downloader.to_stderr(u'WARNING: parsing .netrc: %s' % str(err))
1187 request = urllib2.Request(self._LANG_URL)
1190 urllib2.urlopen(request).read()
1191 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
1192 self._downloader.to_stderr(u'WARNING: unable to set language: %s' % str(err))
1195 # No authentication to be performed
1196 if username is None:
1201 'current_form': 'loginForm',
1203 'action_login': 'Log In',
1204 'username': username,
1205 'password': password,
1207 request = urllib2.Request(self._LOGIN_URL, urllib.urlencode(login_form))
1210 login_results = urllib2.urlopen(request).read()
1211 if re.search(r'(?i)<form[^>]* name="loginForm"', login_results) is not None:
1212 self._downloader.to_stderr(u'WARNING: unable to log in: bad username or password')
1214 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
1215 self._downloader.to_stderr(u'WARNING: unable to log in: %s' % str(err))
1221 'action_confirm': 'Confirm',
1223 request = urllib2.Request(self._AGE_URL, urllib.urlencode(age_form))
1225 self.report_age_confirmation()
1226 age_results = urllib2.urlopen(request).read()
1227 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
1228 self._downloader.trouble(u'ERROR: unable to confirm age: %s' % str(err))
1231 def _real_extract(self, url):
1232 # Extract video id from URL
1233 mobj = re.match(self._VALID_URL, url)
1235 self._downloader.trouble(u'ERROR: invalid URL: %s' % url)
1237 video_id = mobj.group(2)
1240 self.report_video_webpage_download(video_id)
1241 request = urllib2.Request('http://www.youtube.com/watch?v=%s&gl=US&hl=en&has_verified=1' % video_id)
1243 video_webpage = urllib2.urlopen(request).read()
1244 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
1245 self._downloader.trouble(u'ERROR: unable to download video webpage: %s' % str(err))
1248 # Attempt to extract SWF player URL
1249 mobj = re.search(r'swfConfig.*?"(http:\\/\\/.*?watch.*?-.*?\.swf)"', video_webpage)
1250 if mobj is not None:
1251 player_url = re.sub(r'\\(.)', r'\1', mobj.group(1))
1256 self.report_video_info_webpage_download(video_id)
1257 for el_type in ['&el=embedded', '&el=detailpage', '&el=vevo', '']:
1258 video_info_url = ('http://www.youtube.com/get_video_info?&video_id=%s%s&ps=default&eurl=&gl=US&hl=en'
1259 % (video_id, el_type))
1260 request = urllib2.Request(video_info_url)
1262 video_info_webpage = urllib2.urlopen(request).read()
1263 video_info = parse_qs(video_info_webpage)
1264 if 'token' in video_info:
1266 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
1267 self._downloader.trouble(u'ERROR: unable to download video info webpage: %s' % str(err))
1269 if 'token' not in video_info:
1270 if 'reason' in video_info:
1271 self._downloader.trouble(u'ERROR: YouTube said: %s' % video_info['reason'][0].decode('utf-8'))
1273 self._downloader.trouble(u'ERROR: "token" parameter not in video info for unknown reason')
1276 # Start extracting information
1277 self.report_information_extraction(video_id)
1280 if 'author' not in video_info:
1281 self._downloader.trouble(u'ERROR: unable to extract uploader nickname')
1283 video_uploader = urllib.unquote_plus(video_info['author'][0])
1286 if 'title' not in video_info:
1287 self._downloader.trouble(u'ERROR: unable to extract video title')
1289 video_title = urllib.unquote_plus(video_info['title'][0])
1290 video_title = video_title.decode('utf-8')
1291 video_title = sanitize_title(video_title)
1294 simple_title = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', video_title)
1295 simple_title = simple_title.strip(ur'_')
1298 if 'thumbnail_url' not in video_info:
1299 self._downloader.trouble(u'WARNING: unable to extract video thumbnail')
1300 video_thumbnail = ''
1301 else: # don't panic if we can't find it
1302 video_thumbnail = urllib.unquote_plus(video_info['thumbnail_url'][0])
1306 mobj = re.search(r'id="eow-date.*?>(.*?)</span>', video_webpage, re.DOTALL)
1307 if mobj is not None:
1308 upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())
1309 format_expressions = ['%d %B %Y', '%B %d %Y', '%b %d %Y']
1310 for expression in format_expressions:
1312 upload_date = datetime.datetime.strptime(upload_date, expression).strftime('%Y%m%d')
1320 video_description = u'No description available.'
1321 if self._downloader.params.get('forcedescription', False) or self._downloader.params.get('writedescription', False):
1322 mobj = re.search(r'<meta name="description" content="(.*)"(?:\s*/)?>', video_webpage)
1323 if mobj is not None:
1324 video_description = mobj.group(1).decode('utf-8')
1326 html_parser = lxml.etree.HTMLParser(encoding='utf-8')
1327 vwebpage_doc = lxml.etree.parse(StringIO.StringIO(video_webpage), html_parser)
1328 video_description = u''.join(vwebpage_doc.xpath('id("eow-description")//text()'))
1329 # TODO use another parser
1332 video_token = urllib.unquote_plus(video_info['token'][0])
1334 # Decide which formats to download
1335 req_format = self._downloader.params.get('format', None)
1337 if 'conn' in video_info and video_info['conn'][0].startswith('rtmp'):
1338 self.report_rtmp_download()
1339 video_url_list = [(None, video_info['conn'][0])]
1340 elif 'url_encoded_fmt_stream_map' in video_info and len(video_info['url_encoded_fmt_stream_map']) >= 1:
1341 url_data_strs = video_info['url_encoded_fmt_stream_map'][0].split(',')
1342 url_data = [parse_qs(uds) for uds in url_data_strs]
1343 url_data = filter(lambda ud: 'itag' in ud and 'url' in ud, url_data)
1344 url_map = dict((ud['itag'][0], ud['url'][0]) for ud in url_data)
1346 format_limit = self._downloader.params.get('format_limit', None)
1347 if format_limit is not None and format_limit in self._available_formats:
1348 format_list = self._available_formats[self._available_formats.index(format_limit):]
1350 format_list = self._available_formats
1351 existing_formats = [x for x in format_list if x in url_map]
1352 if len(existing_formats) == 0:
1353 self._downloader.trouble(u'ERROR: no known formats available for video')
1355 if self._downloader.params.get('listformats', None):
1356 self._print_formats(existing_formats)
1358 if req_format is None or req_format == 'best':
1359 video_url_list = [(existing_formats[0], url_map[existing_formats[0]])] # Best quality
1360 elif req_format == 'worst':
1361 video_url_list = [(existing_formats[len(existing_formats)-1], url_map[existing_formats[len(existing_formats)-1]])] # worst quality
1362 elif req_format in ('-1', 'all'):
1363 video_url_list = [(f, url_map[f]) for f in existing_formats] # All formats
1365 # Specific formats. We pick the first in a slash-delimeted sequence.
1366 # For example, if '1/2/3/4' is requested and '2' and '4' are available, we pick '2'.
1367 req_formats = req_format.split('/')
1368 video_url_list = None
1369 for rf in req_formats:
1371 video_url_list = [(rf, url_map[rf])]
1373 if video_url_list is None:
1374 self._downloader.trouble(u'ERROR: requested format not available')
1377 self._downloader.trouble(u'ERROR: no conn or url_encoded_fmt_stream_map information found in video info')
1380 for format_param, video_real_url in video_url_list:
1381 # At this point we have a new video
1382 self._downloader.increment_downloads()
1385 video_extension = self._video_extensions.get(format_param, 'flv')
1388 # Process video information
1389 self._downloader.process_info({
1390 'id': video_id.decode('utf-8'),
1391 'url': video_real_url.decode('utf-8'),
1392 'uploader': video_uploader.decode('utf-8'),
1393 'upload_date': upload_date,
1394 'title': video_title,
1395 'stitle': simple_title,
1396 'ext': video_extension.decode('utf-8'),
1397 'format': (format_param is None and u'NA' or format_param.decode('utf-8')),
1398 'thumbnail': video_thumbnail.decode('utf-8'),
1399 'description': video_description,
1400 'player_url': player_url,
1402 except UnavailableVideoError, err:
1403 self._downloader.trouble(u'\nERROR: unable to download video')
1406 class MetacafeIE(InfoExtractor):
1407 """Information Extractor for metacafe.com."""
1409 _VALID_URL = r'(?:http://)?(?:www\.)?metacafe\.com/watch/([^/]+)/([^/]+)/.*'
1410 _DISCLAIMER = 'http://www.metacafe.com/family_filter/'
1411 _FILTER_POST = 'http://www.metacafe.com/f/index.php?inputType=filter&controllerGroup=user'
1413 IE_NAME = u'metacafe'
1415 def __init__(self, youtube_ie, downloader=None):
1416 InfoExtractor.__init__(self, downloader)
1417 self._youtube_ie = youtube_ie
1419 def report_disclaimer(self):
1420 """Report disclaimer retrieval."""
1421 self._downloader.to_screen(u'[metacafe] Retrieving disclaimer')
1423 def report_age_confirmation(self):
1424 """Report attempt to confirm age."""
1425 self._downloader.to_screen(u'[metacafe] Confirming age')
1427 def report_download_webpage(self, video_id):
1428 """Report webpage download."""
1429 self._downloader.to_screen(u'[metacafe] %s: Downloading webpage' % video_id)
1431 def report_extraction(self, video_id):
1432 """Report information extraction."""
1433 self._downloader.to_screen(u'[metacafe] %s: Extracting information' % video_id)
1435 def _real_initialize(self):
1436 # Retrieve disclaimer
1437 request = urllib2.Request(self._DISCLAIMER)
1439 self.report_disclaimer()
1440 disclaimer = urllib2.urlopen(request).read()
1441 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
1442 self._downloader.trouble(u'ERROR: unable to retrieve disclaimer: %s' % str(err))
1448 'submit': "Continue - I'm over 18",
1450 request = urllib2.Request(self._FILTER_POST, urllib.urlencode(disclaimer_form))
1452 self.report_age_confirmation()
1453 disclaimer = urllib2.urlopen(request).read()
1454 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
1455 self._downloader.trouble(u'ERROR: unable to confirm age: %s' % str(err))
1458 def _real_extract(self, url):
1459 # Extract id and simplified title from URL
1460 mobj = re.match(self._VALID_URL, url)
1462 self._downloader.trouble(u'ERROR: invalid URL: %s' % url)
1465 video_id = mobj.group(1)
1467 # Check if video comes from YouTube
1468 mobj2 = re.match(r'^yt-(.*)$', video_id)
1469 if mobj2 is not None:
1470 self._youtube_ie.extract('http://www.youtube.com/watch?v=%s' % mobj2.group(1))
1473 # At this point we have a new video
1474 self._downloader.increment_downloads()
1476 simple_title = mobj.group(2).decode('utf-8')
1478 # Retrieve video webpage to extract further information
1479 request = urllib2.Request('http://www.metacafe.com/watch/%s/' % video_id)
1481 self.report_download_webpage(video_id)
1482 webpage = urllib2.urlopen(request).read()
1483 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
1484 self._downloader.trouble(u'ERROR: unable retrieve video webpage: %s' % str(err))
1487 # Extract URL, uploader and title from webpage
1488 self.report_extraction(video_id)
1489 mobj = re.search(r'(?m)&mediaURL=([^&]+)', webpage)
1490 if mobj is not None:
1491 mediaURL = urllib.unquote(mobj.group(1))
1492 video_extension = mediaURL[-3:]
1494 # Extract gdaKey if available
1495 mobj = re.search(r'(?m)&gdaKey=(.*?)&', webpage)
1497 video_url = mediaURL
1499 gdaKey = mobj.group(1)
1500 video_url = '%s?__gda__=%s' % (mediaURL, gdaKey)
1502 mobj = re.search(r' name="flashvars" value="(.*?)"', webpage)
1504 self._downloader.trouble(u'ERROR: unable to extract media URL')
1506 vardict = parse_qs(mobj.group(1))
1507 if 'mediaData' not in vardict:
1508 self._downloader.trouble(u'ERROR: unable to extract media URL')
1510 mobj = re.search(r'"mediaURL":"(http.*?)","key":"(.*?)"', vardict['mediaData'][0])
1512 self._downloader.trouble(u'ERROR: unable to extract media URL')
1514 mediaURL = mobj.group(1).replace('\\/', '/')
1515 video_extension = mediaURL[-3:]
1516 video_url = '%s?__gda__=%s' % (mediaURL, mobj.group(2))
1518 mobj = re.search(r'(?im)<title>(.*) - Video</title>', webpage)
1520 self._downloader.trouble(u'ERROR: unable to extract title')
1522 video_title = mobj.group(1).decode('utf-8')
1523 video_title = sanitize_title(video_title)
1525 mobj = re.search(r'(?ms)By:\s*<a .*?>(.+?)<', webpage)
1527 self._downloader.trouble(u'ERROR: unable to extract uploader nickname')
1529 video_uploader = mobj.group(1)
1532 # Process video information
1533 self._downloader.process_info({
1534 'id': video_id.decode('utf-8'),
1535 'url': video_url.decode('utf-8'),
1536 'uploader': video_uploader.decode('utf-8'),
1537 'upload_date': u'NA',
1538 'title': video_title,
1539 'stitle': simple_title,
1540 'ext': video_extension.decode('utf-8'),
1544 except UnavailableVideoError:
1545 self._downloader.trouble(u'\nERROR: unable to download video')
1548 class DailymotionIE(InfoExtractor):
1549 """Information Extractor for Dailymotion"""
1551 _VALID_URL = r'(?i)(?:https?://)?(?:www\.)?dailymotion\.[a-z]{2,3}/video/([^_/]+)_([^/]+)'
1552 IE_NAME = u'dailymotion'
1554 def __init__(self, downloader=None):
1555 InfoExtractor.__init__(self, downloader)
1557 def report_download_webpage(self, video_id):
1558 """Report webpage download."""
1559 self._downloader.to_screen(u'[dailymotion] %s: Downloading webpage' % video_id)
1561 def report_extraction(self, video_id):
1562 """Report information extraction."""
1563 self._downloader.to_screen(u'[dailymotion] %s: Extracting information' % video_id)
1565 def _real_extract(self, url):
1566 # Extract id and simplified title from URL
1567 mobj = re.match(self._VALID_URL, url)
1569 self._downloader.trouble(u'ERROR: invalid URL: %s' % url)
1572 # At this point we have a new video
1573 self._downloader.increment_downloads()
1574 video_id = mobj.group(1)
1576 simple_title = mobj.group(2).decode('utf-8')
1577 video_extension = 'flv'
1579 # Retrieve video webpage to extract further information
1580 request = urllib2.Request(url)
1581 request.add_header('Cookie', 'family_filter=off')
1583 self.report_download_webpage(video_id)
1584 webpage = urllib2.urlopen(request).read()
1585 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
1586 self._downloader.trouble(u'ERROR: unable retrieve video webpage: %s' % str(err))
1589 # Extract URL, uploader and title from webpage
1590 self.report_extraction(video_id)
1591 mobj = re.search(r'(?i)addVariable\(\"sequence\"\s*,\s*\"([^\"]+?)\"\)', webpage)
1593 self._downloader.trouble(u'ERROR: unable to extract media URL')
1595 sequence = urllib.unquote(mobj.group(1))
1596 mobj = re.search(r',\"sdURL\"\:\"([^\"]+?)\",', sequence)
1598 self._downloader.trouble(u'ERROR: unable to extract media URL')
1600 mediaURL = urllib.unquote(mobj.group(1)).replace('\\', '')
1602 # if needed add http://www.dailymotion.com/ if relative URL
1604 video_url = mediaURL
1606 mobj = re.search(r'(?im)<title>Dailymotion\s*-\s*(.+)\s*-\s*[^<]+?</title>', webpage)
1608 self._downloader.trouble(u'ERROR: unable to extract title')
1610 video_title = mobj.group(1).decode('utf-8')
1611 video_title = sanitize_title(video_title)
1613 mobj = re.search(r'(?im)<span class="owner[^\"]+?">[^<]+?<a [^>]+?>([^<]+?)</a></span>', webpage)
1615 self._downloader.trouble(u'ERROR: unable to extract uploader nickname')
1617 video_uploader = mobj.group(1)
1620 # Process video information
1621 self._downloader.process_info({
1622 'id': video_id.decode('utf-8'),
1623 'url': video_url.decode('utf-8'),
1624 'uploader': video_uploader.decode('utf-8'),
1625 'upload_date': u'NA',
1626 'title': video_title,
1627 'stitle': simple_title,
1628 'ext': video_extension.decode('utf-8'),
1632 except UnavailableVideoError:
1633 self._downloader.trouble(u'\nERROR: unable to download video')
1636 class GoogleIE(InfoExtractor):
1637 """Information extractor for video.google.com."""
1639 _VALID_URL = r'(?:http://)?video\.google\.(?:com(?:\.au)?|co\.(?:uk|jp|kr|cr)|ca|de|es|fr|it|nl|pl)/videoplay\?docid=([^\&]+).*'
1640 IE_NAME = u'video.google'
1642 def __init__(self, downloader=None):
1643 InfoExtractor.__init__(self, downloader)
1645 def report_download_webpage(self, video_id):
1646 """Report webpage download."""
1647 self._downloader.to_screen(u'[video.google] %s: Downloading webpage' % video_id)
1649 def report_extraction(self, video_id):
1650 """Report information extraction."""
1651 self._downloader.to_screen(u'[video.google] %s: Extracting information' % video_id)
1653 def _real_extract(self, url):
1654 # Extract id from URL
1655 mobj = re.match(self._VALID_URL, url)
1657 self._downloader.trouble(u'ERROR: Invalid URL: %s' % url)
1660 # At this point we have a new video
1661 self._downloader.increment_downloads()
1662 video_id = mobj.group(1)
1664 video_extension = 'mp4'
1666 # Retrieve video webpage to extract further information
1667 request = urllib2.Request('http://video.google.com/videoplay?docid=%s&hl=en&oe=utf-8' % video_id)
1669 self.report_download_webpage(video_id)
1670 webpage = urllib2.urlopen(request).read()
1671 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
1672 self._downloader.trouble(u'ERROR: Unable to retrieve video webpage: %s' % str(err))
1675 # Extract URL, uploader, and title from webpage
1676 self.report_extraction(video_id)
1677 mobj = re.search(r"download_url:'([^']+)'", webpage)
1679 video_extension = 'flv'
1680 mobj = re.search(r"(?i)videoUrl\\x3d(.+?)\\x26", webpage)
1682 self._downloader.trouble(u'ERROR: unable to extract media URL')
1684 mediaURL = urllib.unquote(mobj.group(1))
1685 mediaURL = mediaURL.replace('\\x3d', '\x3d')
1686 mediaURL = mediaURL.replace('\\x26', '\x26')
1688 video_url = mediaURL
1690 mobj = re.search(r'<title>(.*)</title>', webpage)
1692 self._downloader.trouble(u'ERROR: unable to extract title')
1694 video_title = mobj.group(1).decode('utf-8')
1695 video_title = sanitize_title(video_title)
1696 simple_title = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', video_title)
1698 # Extract video description
1699 mobj = re.search(r'<span id=short-desc-content>([^<]*)</span>', webpage)
1701 self._downloader.trouble(u'ERROR: unable to extract video description')
1703 video_description = mobj.group(1).decode('utf-8')
1704 if not video_description:
1705 video_description = 'No description available.'
1707 # Extract video thumbnail
1708 if self._downloader.params.get('forcethumbnail', False):
1709 request = urllib2.Request('http://video.google.com/videosearch?q=%s+site:video.google.com&hl=en' % abs(int(video_id)))
1711 webpage = urllib2.urlopen(request).read()
1712 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
1713 self._downloader.trouble(u'ERROR: Unable to retrieve video webpage: %s' % str(err))
1715 mobj = re.search(r'<img class=thumbnail-img (?:.* )?src=(http.*)>', webpage)
1717 self._downloader.trouble(u'ERROR: unable to extract video thumbnail')
1719 video_thumbnail = mobj.group(1)
1720 else: # we need something to pass to process_info
1721 video_thumbnail = ''
1724 # Process video information
1725 self._downloader.process_info({
1726 'id': video_id.decode('utf-8'),
1727 'url': video_url.decode('utf-8'),
1729 'upload_date': u'NA',
1730 'title': video_title,
1731 'stitle': simple_title,
1732 'ext': video_extension.decode('utf-8'),
1736 except UnavailableVideoError:
1737 self._downloader.trouble(u'\nERROR: unable to download video')
1740 class PhotobucketIE(InfoExtractor):
1741 """Information extractor for photobucket.com."""
1743 _VALID_URL = r'(?:http://)?(?:[a-z0-9]+\.)?photobucket\.com/.*[\?\&]current=(.*\.flv)'
1744 IE_NAME = u'photobucket'
1746 def __init__(self, downloader=None):
1747 InfoExtractor.__init__(self, downloader)
1749 def report_download_webpage(self, video_id):
1750 """Report webpage download."""
1751 self._downloader.to_screen(u'[photobucket] %s: Downloading webpage' % video_id)
1753 def report_extraction(self, video_id):
1754 """Report information extraction."""
1755 self._downloader.to_screen(u'[photobucket] %s: Extracting information' % video_id)
1757 def _real_extract(self, url):
1758 # Extract id from URL
1759 mobj = re.match(self._VALID_URL, url)
1761 self._downloader.trouble(u'ERROR: Invalid URL: %s' % url)
1764 # At this point we have a new video
1765 self._downloader.increment_downloads()
1766 video_id = mobj.group(1)
1768 video_extension = 'flv'
1770 # Retrieve video webpage to extract further information
1771 request = urllib2.Request(url)
1773 self.report_download_webpage(video_id)
1774 webpage = urllib2.urlopen(request).read()
1775 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
1776 self._downloader.trouble(u'ERROR: Unable to retrieve video webpage: %s' % str(err))
1779 # Extract URL, uploader, and title from webpage
1780 self.report_extraction(video_id)
1781 mobj = re.search(r'<link rel="video_src" href=".*\?file=([^"]+)" />', webpage)
1783 self._downloader.trouble(u'ERROR: unable to extract media URL')
1785 mediaURL = urllib.unquote(mobj.group(1))
1787 video_url = mediaURL
1789 mobj = re.search(r'<title>(.*) video by (.*) - Photobucket</title>', webpage)
1791 self._downloader.trouble(u'ERROR: unable to extract title')
1793 video_title = mobj.group(1).decode('utf-8')
1794 video_title = sanitize_title(video_title)
1795 simple_title = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', video_title)
1797 video_uploader = mobj.group(2).decode('utf-8')
1800 # Process video information
1801 self._downloader.process_info({
1802 'id': video_id.decode('utf-8'),
1803 'url': video_url.decode('utf-8'),
1804 'uploader': video_uploader,
1805 'upload_date': u'NA',
1806 'title': video_title,
1807 'stitle': simple_title,
1808 'ext': video_extension.decode('utf-8'),
1812 except UnavailableVideoError:
1813 self._downloader.trouble(u'\nERROR: unable to download video')
1816 class YahooIE(InfoExtractor):
1817 """Information extractor for video.yahoo.com."""
1819 # _VALID_URL matches all Yahoo! Video URLs
1820 # _VPAGE_URL matches only the extractable '/watch/' URLs
1821 _VALID_URL = r'(?:http://)?(?:[a-z]+\.)?video\.yahoo\.com/(?:watch|network)/([0-9]+)(?:/|\?v=)([0-9]+)(?:[#\?].*)?'
1822 _VPAGE_URL = r'(?:http://)?video\.yahoo\.com/watch/([0-9]+)/([0-9]+)(?:[#\?].*)?'
1823 IE_NAME = u'video.yahoo'
1825 def __init__(self, downloader=None):
1826 InfoExtractor.__init__(self, downloader)
1828 def report_download_webpage(self, video_id):
1829 """Report webpage download."""
1830 self._downloader.to_screen(u'[video.yahoo] %s: Downloading webpage' % video_id)
1832 def report_extraction(self, video_id):
1833 """Report information extraction."""
1834 self._downloader.to_screen(u'[video.yahoo] %s: Extracting information' % video_id)
1836 def _real_extract(self, url, new_video=True):
1837 # Extract ID from URL
1838 mobj = re.match(self._VALID_URL, url)
1840 self._downloader.trouble(u'ERROR: Invalid URL: %s' % url)
1843 # At this point we have a new video
1844 self._downloader.increment_downloads()
1845 video_id = mobj.group(2)
1846 video_extension = 'flv'
1848 # Rewrite valid but non-extractable URLs as
1849 # extractable English language /watch/ URLs
1850 if re.match(self._VPAGE_URL, url) is None:
1851 request = urllib2.Request(url)
1853 webpage = urllib2.urlopen(request).read()
1854 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
1855 self._downloader.trouble(u'ERROR: Unable to retrieve video webpage: %s' % str(err))
1858 mobj = re.search(r'\("id", "([0-9]+)"\);', webpage)
1860 self._downloader.trouble(u'ERROR: Unable to extract id field')
1862 yahoo_id = mobj.group(1)
1864 mobj = re.search(r'\("vid", "([0-9]+)"\);', webpage)
1866 self._downloader.trouble(u'ERROR: Unable to extract vid field')
1868 yahoo_vid = mobj.group(1)
1870 url = 'http://video.yahoo.com/watch/%s/%s' % (yahoo_vid, yahoo_id)
1871 return self._real_extract(url, new_video=False)
1873 # Retrieve video webpage to extract further information
1874 request = urllib2.Request(url)
1876 self.report_download_webpage(video_id)
1877 webpage = urllib2.urlopen(request).read()
1878 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
1879 self._downloader.trouble(u'ERROR: Unable to retrieve video webpage: %s' % str(err))
1882 # Extract uploader and title from webpage
1883 self.report_extraction(video_id)
1884 mobj = re.search(r'<meta name="title" content="(.*)" />', webpage)
1886 self._downloader.trouble(u'ERROR: unable to extract video title')
1888 video_title = mobj.group(1).decode('utf-8')
1889 simple_title = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', video_title)
1891 mobj = re.search(r'<h2 class="ti-5"><a href="http://video\.yahoo\.com/(people|profile)/[0-9]+" beacon=".*">(.*)</a></h2>', webpage)
1893 self._downloader.trouble(u'ERROR: unable to extract video uploader')
1895 video_uploader = mobj.group(1).decode('utf-8')
1897 # Extract video thumbnail
1898 mobj = re.search(r'<link rel="image_src" href="(.*)" />', webpage)
1900 self._downloader.trouble(u'ERROR: unable to extract video thumbnail')
1902 video_thumbnail = mobj.group(1).decode('utf-8')
1904 # Extract video description
1905 mobj = re.search(r'<meta name="description" content="(.*)" />', webpage)
1907 self._downloader.trouble(u'ERROR: unable to extract video description')
1909 video_description = mobj.group(1).decode('utf-8')
1910 if not video_description:
1911 video_description = 'No description available.'
1913 # Extract video height and width
1914 mobj = re.search(r'<meta name="video_height" content="([0-9]+)" />', webpage)
1916 self._downloader.trouble(u'ERROR: unable to extract video height')
1918 yv_video_height = mobj.group(1)
1920 mobj = re.search(r'<meta name="video_width" content="([0-9]+)" />', webpage)
1922 self._downloader.trouble(u'ERROR: unable to extract video width')
1924 yv_video_width = mobj.group(1)
1926 # Retrieve video playlist to extract media URL
1927 # I'm not completely sure what all these options are, but we
1928 # seem to need most of them, otherwise the server sends a 401.
1929 yv_lg = 'R0xx6idZnW2zlrKP8xxAIR' # not sure what this represents
1930 yv_bitrate = '700' # according to Wikipedia this is hard-coded
1931 request = urllib2.Request('http://cosmos.bcst.yahoo.com/up/yep/process/getPlaylistFOP.php?node_id=' + video_id +
1932 '&tech=flash&mode=playlist&lg=' + yv_lg + '&bitrate=' + yv_bitrate + '&vidH=' + yv_video_height +
1933 '&vidW=' + yv_video_width + '&swf=as3&rd=video.yahoo.com&tk=null&adsupported=v1,v2,&eventid=1301797')
1935 self.report_download_webpage(video_id)
1936 webpage = urllib2.urlopen(request).read()
1937 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
1938 self._downloader.trouble(u'ERROR: Unable to retrieve video webpage: %s' % str(err))
1941 # Extract media URL from playlist XML
1942 mobj = re.search(r'<STREAM APP="(http://.*)" FULLPATH="/?(/.*\.flv\?[^"]*)"', webpage)
1944 self._downloader.trouble(u'ERROR: Unable to extract media URL')
1946 video_url = urllib.unquote(mobj.group(1) + mobj.group(2)).decode('utf-8')
1947 video_url = re.sub(r'(?u)&(.+?);', htmlentity_transform, video_url)
1950 # Process video information
1951 self._downloader.process_info({
1952 'id': video_id.decode('utf-8'),
1954 'uploader': video_uploader,
1955 'upload_date': u'NA',
1956 'title': video_title,
1957 'stitle': simple_title,
1958 'ext': video_extension.decode('utf-8'),
1959 'thumbnail': video_thumbnail.decode('utf-8'),
1960 'description': video_description,
1961 'thumbnail': video_thumbnail,
1964 except UnavailableVideoError:
1965 self._downloader.trouble(u'\nERROR: unable to download video')
1968 class VimeoIE(InfoExtractor):
1969 """Information extractor for vimeo.com."""
1971 # _VALID_URL matches Vimeo URLs
1972 _VALID_URL = r'(?:https?://)?(?:(?:www|player).)?vimeo\.com/(?:groups/[^/]+/)?(?:videos?/)?([0-9]+)'
1975 def __init__(self, downloader=None):
1976 InfoExtractor.__init__(self, downloader)
1978 def report_download_webpage(self, video_id):
1979 """Report webpage download."""
1980 self._downloader.to_screen(u'[vimeo] %s: Downloading webpage' % video_id)
1982 def report_extraction(self, video_id):
1983 """Report information extraction."""
1984 self._downloader.to_screen(u'[vimeo] %s: Extracting information' % video_id)
1986 def _real_extract(self, url, new_video=True):
1987 # Extract ID from URL
1988 mobj = re.match(self._VALID_URL, url)
1990 self._downloader.trouble(u'ERROR: Invalid URL: %s' % url)
1993 # At this point we have a new video
1994 self._downloader.increment_downloads()
1995 video_id = mobj.group(1)
1997 # Retrieve video webpage to extract further information
1998 request = urllib2.Request("http://vimeo.com/moogaloop/load/clip:%s" % video_id, None, std_headers)
2000 self.report_download_webpage(video_id)
2001 webpage = urllib2.urlopen(request).read()
2002 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
2003 self._downloader.trouble(u'ERROR: Unable to retrieve video webpage: %s' % str(err))
2006 # Now we begin extracting as much information as we can from what we
2007 # retrieved. First we extract the information common to all extractors,
2008 # and latter we extract those that are Vimeo specific.
2009 self.report_extraction(video_id)
2012 mobj = re.search(r'<caption>(.*?)</caption>', webpage)
2014 self._downloader.trouble(u'ERROR: unable to extract video title')
2016 video_title = mobj.group(1).decode('utf-8')
2017 simple_title = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', video_title)
2020 mobj = re.search(r'<uploader_url>http://vimeo.com/(.*?)</uploader_url>', webpage)
2022 self._downloader.trouble(u'ERROR: unable to extract video uploader')
2024 video_uploader = mobj.group(1).decode('utf-8')
2026 # Extract video thumbnail
2027 mobj = re.search(r'<thumbnail>(.*?)</thumbnail>', webpage)
2029 self._downloader.trouble(u'ERROR: unable to extract video thumbnail')
2031 video_thumbnail = mobj.group(1).decode('utf-8')
2033 # # Extract video description
2034 # mobj = re.search(r'<meta property="og:description" content="(.*)" />', webpage)
2036 # self._downloader.trouble(u'ERROR: unable to extract video description')
2038 # video_description = mobj.group(1).decode('utf-8')
2039 # if not video_description: video_description = 'No description available.'
2040 video_description = 'Foo.'
2042 # Vimeo specific: extract request signature
2043 mobj = re.search(r'<request_signature>(.*?)</request_signature>', webpage)
2045 self._downloader.trouble(u'ERROR: unable to extract request signature')
2047 sig = mobj.group(1).decode('utf-8')
2049 # Vimeo specific: extract video quality information
2050 mobj = re.search(r'<isHD>(\d+)</isHD>', webpage)
2052 self._downloader.trouble(u'ERROR: unable to extract video quality information')
2054 quality = mobj.group(1).decode('utf-8')
2056 if int(quality) == 1:
2061 # Vimeo specific: Extract request signature expiration
2062 mobj = re.search(r'<request_signature_expires>(.*?)</request_signature_expires>', webpage)
2064 self._downloader.trouble(u'ERROR: unable to extract request signature expiration')
2066 sig_exp = mobj.group(1).decode('utf-8')
2068 video_url = "http://vimeo.com/moogaloop/play/clip:%s/%s/%s/?q=%s" % (video_id, sig, sig_exp, quality)
2071 # Process video information
2072 self._downloader.process_info({
2073 'id': video_id.decode('utf-8'),
2075 'uploader': video_uploader,
2076 'upload_date': u'NA',
2077 'title': video_title,
2078 'stitle': simple_title,
2080 'thumbnail': video_thumbnail.decode('utf-8'),
2081 'description': video_description,
2082 'thumbnail': video_thumbnail,
2083 'description': video_description,
2086 except UnavailableVideoError:
2087 self._downloader.trouble(u'ERROR: unable to download video')
2090 class GenericIE(InfoExtractor):
2091 """Generic last-resort information extractor."""
2094 IE_NAME = u'generic'
2096 def __init__(self, downloader=None):
2097 InfoExtractor.__init__(self, downloader)
2099 def report_download_webpage(self, video_id):
2100 """Report webpage download."""
2101 self._downloader.to_screen(u'WARNING: Falling back on generic information extractor.')
2102 self._downloader.to_screen(u'[generic] %s: Downloading webpage' % video_id)
2104 def report_extraction(self, video_id):
2105 """Report information extraction."""
2106 self._downloader.to_screen(u'[generic] %s: Extracting information' % video_id)
2108 def _real_extract(self, url):
2109 # At this point we have a new video
2110 self._downloader.increment_downloads()
2112 video_id = url.split('/')[-1]
2113 request = urllib2.Request(url)
2115 self.report_download_webpage(video_id)
2116 webpage = urllib2.urlopen(request).read()
2117 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
2118 self._downloader.trouble(u'ERROR: Unable to retrieve video webpage: %s' % str(err))
2120 except ValueError, err:
2121 # since this is the last-resort InfoExtractor, if
2122 # this error is thrown, it'll be thrown here
2123 self._downloader.trouble(u'ERROR: Invalid URL: %s' % url)
2126 self.report_extraction(video_id)
2127 # Start with something easy: JW Player in SWFObject
2128 mobj = re.search(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage)
2130 # Broaden the search a little bit
2131 mobj = re.search(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage)
2133 self._downloader.trouble(u'ERROR: Invalid URL: %s' % url)
2136 # It's possible that one of the regexes
2137 # matched, but returned an empty group:
2138 if mobj.group(1) is None:
2139 self._downloader.trouble(u'ERROR: Invalid URL: %s' % url)
2142 video_url = urllib.unquote(mobj.group(1))
2143 video_id = os.path.basename(video_url)
2145 # here's a fun little line of code for you:
2146 video_extension = os.path.splitext(video_id)[1][1:]
2147 video_id = os.path.splitext(video_id)[0]
2149 # it's tempting to parse this further, but you would
2150 # have to take into account all the variations like
2151 # Video Title - Site Name
2152 # Site Name | Video Title
2153 # Video Title - Tagline | Site Name
2154 # and so on and so forth; it's just not practical
2155 mobj = re.search(r'<title>(.*)</title>', webpage)
2157 self._downloader.trouble(u'ERROR: unable to extract title')
2159 video_title = mobj.group(1).decode('utf-8')
2160 video_title = sanitize_title(video_title)
2161 simple_title = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', video_title)
2163 # video uploader is domain name
2164 mobj = re.match(r'(?:https?://)?([^/]*)/.*', url)
2166 self._downloader.trouble(u'ERROR: unable to extract title')
2168 video_uploader = mobj.group(1).decode('utf-8')
2171 # Process video information
2172 self._downloader.process_info({
2173 'id': video_id.decode('utf-8'),
2174 'url': video_url.decode('utf-8'),
2175 'uploader': video_uploader,
2176 'upload_date': u'NA',
2177 'title': video_title,
2178 'stitle': simple_title,
2179 'ext': video_extension.decode('utf-8'),
2183 except UnavailableVideoError, err:
2184 self._downloader.trouble(u'\nERROR: unable to download video')
2187 class YoutubeSearchIE(InfoExtractor):
2188 """Information Extractor for YouTube search queries."""
2189 _VALID_URL = r'ytsearch(\d+|all)?:[\s\S]+'
2190 _TEMPLATE_URL = 'http://www.youtube.com/results?search_query=%s&page=%s&gl=US&hl=en'
2191 _VIDEO_INDICATOR = r'href="/watch\?v=.+?"'
2192 _MORE_PAGES_INDICATOR = r'(?m)>\s*Next\s*</a>'
2194 _max_youtube_results = 1000
2195 IE_NAME = u'youtube:search'
2197 def __init__(self, youtube_ie, downloader=None):
2198 InfoExtractor.__init__(self, downloader)
2199 self._youtube_ie = youtube_ie
2201 def report_download_page(self, query, pagenum):
2202 """Report attempt to download playlist page with given number."""
2203 query = query.decode(preferredencoding())
2204 self._downloader.to_screen(u'[youtube] query "%s": Downloading page %s' % (query, pagenum))
2206 def _real_initialize(self):
2207 self._youtube_ie.initialize()
2209 def _real_extract(self, query):
2210 mobj = re.match(self._VALID_URL, query)
2212 self._downloader.trouble(u'ERROR: invalid search query "%s"' % query)
2215 prefix, query = query.split(':')
2217 query = query.encode('utf-8')
2219 self._download_n_results(query, 1)
2221 elif prefix == 'all':
2222 self._download_n_results(query, self._max_youtube_results)
2228 self._downloader.trouble(u'ERROR: invalid download number %s for query "%s"' % (n, query))
2230 elif n > self._max_youtube_results:
2231 self._downloader.to_stderr(u'WARNING: ytsearch returns max %i results (you requested %i)' % (self._max_youtube_results, n))
2232 n = self._max_youtube_results
2233 self._download_n_results(query, n)
2235 except ValueError: # parsing prefix as integer fails
2236 self._download_n_results(query, 1)
2239 def _download_n_results(self, query, n):
2240 """Downloads a specified number of results for a query"""
2243 already_seen = set()
2247 self.report_download_page(query, pagenum)
2248 result_url = self._TEMPLATE_URL % (urllib.quote_plus(query), pagenum)
2249 request = urllib2.Request(result_url)
2251 page = urllib2.urlopen(request).read()
2252 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
2253 self._downloader.trouble(u'ERROR: unable to download webpage: %s' % str(err))
2256 # Extract video identifiers
2257 for mobj in re.finditer(self._VIDEO_INDICATOR, page):
2258 video_id = page[mobj.span()[0]:mobj.span()[1]].split('=')[2][:-1]
2259 if video_id not in already_seen:
2260 video_ids.append(video_id)
2261 already_seen.add(video_id)
2262 if len(video_ids) == n:
2263 # Specified n videos reached
2264 for id in video_ids:
2265 self._youtube_ie.extract('http://www.youtube.com/watch?v=%s' % id)
2268 if re.search(self._MORE_PAGES_INDICATOR, page) is None:
2269 for id in video_ids:
2270 self._youtube_ie.extract('http://www.youtube.com/watch?v=%s' % id)
2273 pagenum = pagenum + 1
2276 class GoogleSearchIE(InfoExtractor):
2277 """Information Extractor for Google Video search queries."""
2278 _VALID_URL = r'gvsearch(\d+|all)?:[\s\S]+'
2279 _TEMPLATE_URL = 'http://video.google.com/videosearch?q=%s+site:video.google.com&start=%s&hl=en'
2280 _VIDEO_INDICATOR = r'videoplay\?docid=([^\&>]+)\&'
2281 _MORE_PAGES_INDICATOR = r'<span>Next</span>'
2283 _max_google_results = 1000
2284 IE_NAME = u'video.google:search'
2286 def __init__(self, google_ie, downloader=None):
2287 InfoExtractor.__init__(self, downloader)
2288 self._google_ie = google_ie
2290 def report_download_page(self, query, pagenum):
2291 """Report attempt to download playlist page with given number."""
2292 query = query.decode(preferredencoding())
2293 self._downloader.to_screen(u'[video.google] query "%s": Downloading page %s' % (query, pagenum))
2295 def _real_initialize(self):
2296 self._google_ie.initialize()
2298 def _real_extract(self, query):
2299 mobj = re.match(self._VALID_URL, query)
2301 self._downloader.trouble(u'ERROR: invalid search query "%s"' % query)
2304 prefix, query = query.split(':')
2306 query = query.encode('utf-8')
2308 self._download_n_results(query, 1)
2310 elif prefix == 'all':
2311 self._download_n_results(query, self._max_google_results)
2317 self._downloader.trouble(u'ERROR: invalid download number %s for query "%s"' % (n, query))
2319 elif n > self._max_google_results:
2320 self._downloader.to_stderr(u'WARNING: gvsearch returns max %i results (you requested %i)' % (self._max_google_results, n))
2321 n = self._max_google_results
2322 self._download_n_results(query, n)
2324 except ValueError: # parsing prefix as integer fails
2325 self._download_n_results(query, 1)
2328 def _download_n_results(self, query, n):
2329 """Downloads a specified number of results for a query"""
2332 already_seen = set()
2336 self.report_download_page(query, pagenum)
2337 result_url = self._TEMPLATE_URL % (urllib.quote_plus(query), pagenum)
2338 request = urllib2.Request(result_url)
2340 page = urllib2.urlopen(request).read()
2341 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
2342 self._downloader.trouble(u'ERROR: unable to download webpage: %s' % str(err))
2345 # Extract video identifiers
2346 for mobj in re.finditer(self._VIDEO_INDICATOR, page):
2347 video_id = mobj.group(1)
2348 if video_id not in already_seen:
2349 video_ids.append(video_id)
2350 already_seen.add(video_id)
2351 if len(video_ids) == n:
2352 # Specified n videos reached
2353 for id in video_ids:
2354 self._google_ie.extract('http://video.google.com/videoplay?docid=%s' % id)
2357 if re.search(self._MORE_PAGES_INDICATOR, page) is None:
2358 for id in video_ids:
2359 self._google_ie.extract('http://video.google.com/videoplay?docid=%s' % id)
2362 pagenum = pagenum + 1
2365 class YahooSearchIE(InfoExtractor):
2366 """Information Extractor for Yahoo! Video search queries."""
2367 _VALID_URL = r'yvsearch(\d+|all)?:[\s\S]+'
2368 _TEMPLATE_URL = 'http://video.yahoo.com/search/?p=%s&o=%s'
2369 _VIDEO_INDICATOR = r'href="http://video\.yahoo\.com/watch/([0-9]+/[0-9]+)"'
2370 _MORE_PAGES_INDICATOR = r'\s*Next'
2372 _max_yahoo_results = 1000
2373 IE_NAME = u'video.yahoo:search'
2375 def __init__(self, yahoo_ie, downloader=None):
2376 InfoExtractor.__init__(self, downloader)
2377 self._yahoo_ie = yahoo_ie
2379 def report_download_page(self, query, pagenum):
2380 """Report attempt to download playlist page with given number."""
2381 query = query.decode(preferredencoding())
2382 self._downloader.to_screen(u'[video.yahoo] query "%s": Downloading page %s' % (query, pagenum))
2384 def _real_initialize(self):
2385 self._yahoo_ie.initialize()
2387 def _real_extract(self, query):
2388 mobj = re.match(self._VALID_URL, query)
2390 self._downloader.trouble(u'ERROR: invalid search query "%s"' % query)
2393 prefix, query = query.split(':')
2395 query = query.encode('utf-8')
2397 self._download_n_results(query, 1)
2399 elif prefix == 'all':
2400 self._download_n_results(query, self._max_yahoo_results)
2406 self._downloader.trouble(u'ERROR: invalid download number %s for query "%s"' % (n, query))
2408 elif n > self._max_yahoo_results:
2409 self._downloader.to_stderr(u'WARNING: yvsearch returns max %i results (you requested %i)' % (self._max_yahoo_results, n))
2410 n = self._max_yahoo_results
2411 self._download_n_results(query, n)
2413 except ValueError: # parsing prefix as integer fails
2414 self._download_n_results(query, 1)
2417 def _download_n_results(self, query, n):
2418 """Downloads a specified number of results for a query"""
2421 already_seen = set()
2425 self.report_download_page(query, pagenum)
2426 result_url = self._TEMPLATE_URL % (urllib.quote_plus(query), pagenum)
2427 request = urllib2.Request(result_url)
2429 page = urllib2.urlopen(request).read()
2430 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
2431 self._downloader.trouble(u'ERROR: unable to download webpage: %s' % str(err))
2434 # Extract video identifiers
2435 for mobj in re.finditer(self._VIDEO_INDICATOR, page):
2436 video_id = mobj.group(1)
2437 if video_id not in already_seen:
2438 video_ids.append(video_id)
2439 already_seen.add(video_id)
2440 if len(video_ids) == n:
2441 # Specified n videos reached
2442 for id in video_ids:
2443 self._yahoo_ie.extract('http://video.yahoo.com/watch/%s' % id)
2446 if re.search(self._MORE_PAGES_INDICATOR, page) is None:
2447 for id in video_ids:
2448 self._yahoo_ie.extract('http://video.yahoo.com/watch/%s' % id)
2451 pagenum = pagenum + 1
2454 class YoutubePlaylistIE(InfoExtractor):
2455 """Information Extractor for YouTube playlists."""
2457 _VALID_URL = r'(?:https?://)?(?:\w+\.)?youtube\.com/(?:(?:course|view_play_list|my_playlists|artist|playlist)\?.*?(p|a|list)=|user/.*?/user/|p/|user/.*?#[pg]/c/)(?:PL)?([0-9A-Za-z-_]+)(?:/.*?/([0-9A-Za-z_-]+))?.*'
2458 _TEMPLATE_URL = 'http://www.youtube.com/%s?%s=%s&page=%s&gl=US&hl=en'
2459 _VIDEO_INDICATOR = r'/watch\?v=(.+?)&'
2460 _MORE_PAGES_INDICATOR = r'(?m)>\s*Next\s*</a>'
2462 IE_NAME = u'youtube:playlist'
2464 def __init__(self, youtube_ie, downloader=None):
2465 InfoExtractor.__init__(self, downloader)
2466 self._youtube_ie = youtube_ie
2468 def report_download_page(self, playlist_id, pagenum):
2469 """Report attempt to download playlist page with given number."""
2470 self._downloader.to_screen(u'[youtube] PL %s: Downloading page #%s' % (playlist_id, pagenum))
2472 def _real_initialize(self):
2473 self._youtube_ie.initialize()
2475 def _real_extract(self, url):
2476 # Extract playlist id
2477 mobj = re.match(self._VALID_URL, url)
2479 self._downloader.trouble(u'ERROR: invalid url: %s' % url)
2483 if mobj.group(3) is not None:
2484 self._youtube_ie.extract(mobj.group(3))
2487 # Download playlist pages
2488 # prefix is 'p' as default for playlists but there are other types that need extra care
2489 playlist_prefix = mobj.group(1)
2490 if playlist_prefix == 'a':
2491 playlist_access = 'artist'
2493 playlist_prefix = 'p'
2494 playlist_access = 'view_play_list'
2495 playlist_id = mobj.group(2)
2500 self.report_download_page(playlist_id, pagenum)
2501 url = self._TEMPLATE_URL % (playlist_access, playlist_prefix, playlist_id, pagenum)
2502 request = urllib2.Request(url)
2504 page = urllib2.urlopen(request).read()
2505 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
2506 self._downloader.trouble(u'ERROR: unable to download webpage: %s' % str(err))
2509 # Extract video identifiers
2511 for mobj in re.finditer(self._VIDEO_INDICATOR, page):
2512 if mobj.group(1) not in ids_in_page:
2513 ids_in_page.append(mobj.group(1))
2514 video_ids.extend(ids_in_page)
2516 if re.search(self._MORE_PAGES_INDICATOR, page) is None:
2518 pagenum = pagenum + 1
2520 playliststart = self._downloader.params.get('playliststart', 1) - 1
2521 playlistend = self._downloader.params.get('playlistend', -1)
2522 video_ids = video_ids[playliststart:playlistend]
2524 for id in video_ids:
2525 self._youtube_ie.extract('http://www.youtube.com/watch?v=%s' % id)
2529 class YoutubeUserIE(InfoExtractor):
2530 """Information Extractor for YouTube users."""
2532 _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?youtube\.com/user/)|ytuser:)([A-Za-z0-9_-]+)'
2533 _TEMPLATE_URL = 'http://gdata.youtube.com/feeds/api/users/%s'
2534 _GDATA_PAGE_SIZE = 50
2535 _GDATA_URL = 'http://gdata.youtube.com/feeds/api/users/%s/uploads?max-results=%d&start-index=%d'
2536 _VIDEO_INDICATOR = r'/watch\?v=(.+?)[\<&]'
2538 IE_NAME = u'youtube:user'
2540 def __init__(self, youtube_ie, downloader=None):
2541 InfoExtractor.__init__(self, downloader)
2542 self._youtube_ie = youtube_ie
2544 def report_download_page(self, username, start_index):
2545 """Report attempt to download user page."""
2546 self._downloader.to_screen(u'[youtube] user %s: Downloading video ids from %d to %d' %
2547 (username, start_index, start_index + self._GDATA_PAGE_SIZE))
2549 def _real_initialize(self):
2550 self._youtube_ie.initialize()
2552 def _real_extract(self, url):
2554 mobj = re.match(self._VALID_URL, url)
2556 self._downloader.trouble(u'ERROR: invalid url: %s' % url)
2559 username = mobj.group(1)
2561 # Download video ids using YouTube Data API. Result size per
2562 # query is limited (currently to 50 videos) so we need to query
2563 # page by page until there are no video ids - it means we got
2570 start_index = pagenum * self._GDATA_PAGE_SIZE + 1
2571 self.report_download_page(username, start_index)
2573 request = urllib2.Request(self._GDATA_URL % (username, self._GDATA_PAGE_SIZE, start_index))
2576 page = urllib2.urlopen(request).read()
2577 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
2578 self._downloader.trouble(u'ERROR: unable to download webpage: %s' % str(err))
2581 # Extract video identifiers
2584 for mobj in re.finditer(self._VIDEO_INDICATOR, page):
2585 if mobj.group(1) not in ids_in_page:
2586 ids_in_page.append(mobj.group(1))
2588 video_ids.extend(ids_in_page)
2590 # A little optimization - if current page is not
2591 # "full", ie. does not contain PAGE_SIZE video ids then
2592 # we can assume that this page is the last one - there
2593 # are no more ids on further pages - no need to query
2596 if len(ids_in_page) < self._GDATA_PAGE_SIZE:
2601 all_ids_count = len(video_ids)
2602 playliststart = self._downloader.params.get('playliststart', 1) - 1
2603 playlistend = self._downloader.params.get('playlistend', -1)
2605 if playlistend == -1:
2606 video_ids = video_ids[playliststart:]
2608 video_ids = video_ids[playliststart:playlistend]
2610 self._downloader.to_screen("[youtube] user %s: Collected %d video ids (downloading %d of them)" %
2611 (username, all_ids_count, len(video_ids)))
2613 for video_id in video_ids:
2614 self._youtube_ie.extract('http://www.youtube.com/watch?v=%s' % video_id)
2617 class DepositFilesIE(InfoExtractor):
2618 """Information extractor for depositfiles.com"""
2620 _VALID_URL = r'(?:http://)?(?:\w+\.)?depositfiles\.com/(?:../(?#locale))?files/(.+)'
2621 IE_NAME = u'DepositFiles'
2623 def __init__(self, downloader=None):
2624 InfoExtractor.__init__(self, downloader)
2626 def report_download_webpage(self, file_id):
2627 """Report webpage download."""
2628 self._downloader.to_screen(u'[DepositFiles] %s: Downloading webpage' % file_id)
2630 def report_extraction(self, file_id):
2631 """Report information extraction."""
2632 self._downloader.to_screen(u'[DepositFiles] %s: Extracting information' % file_id)
2634 def _real_extract(self, url):
2635 # At this point we have a new file
2636 self._downloader.increment_downloads()
2638 file_id = url.split('/')[-1]
2639 # Rebuild url in english locale
2640 url = 'http://depositfiles.com/en/files/' + file_id
2642 # Retrieve file webpage with 'Free download' button pressed
2643 free_download_indication = { 'gateway_result' : '1' }
2644 request = urllib2.Request(url, urllib.urlencode(free_download_indication))
2646 self.report_download_webpage(file_id)
2647 webpage = urllib2.urlopen(request).read()
2648 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
2649 self._downloader.trouble(u'ERROR: Unable to retrieve file webpage: %s' % str(err))
2652 # Search for the real file URL
2653 mobj = re.search(r'<form action="(http://fileshare.+?)"', webpage)
2654 if (mobj is None) or (mobj.group(1) is None):
2655 # Try to figure out reason of the error.
2656 mobj = re.search(r'<strong>(Attention.*?)</strong>', webpage, re.DOTALL)
2657 if (mobj is not None) and (mobj.group(1) is not None):
2658 restriction_message = re.sub('\s+', ' ', mobj.group(1)).strip()
2659 self._downloader.trouble(u'ERROR: %s' % restriction_message)
2661 self._downloader.trouble(u'ERROR: unable to extract download URL from: %s' % url)
2664 file_url = mobj.group(1)
2665 file_extension = os.path.splitext(file_url)[1][1:]
2667 # Search for file title
2668 mobj = re.search(r'<b title="(.*?)">', webpage)
2670 self._downloader.trouble(u'ERROR: unable to extract title')
2672 file_title = mobj.group(1).decode('utf-8')
2675 # Process file information
2676 self._downloader.process_info({
2677 'id': file_id.decode('utf-8'),
2678 'url': file_url.decode('utf-8'),
2680 'upload_date': u'NA',
2681 'title': file_title,
2682 'stitle': file_title,
2683 'ext': file_extension.decode('utf-8'),
2687 except UnavailableVideoError, err:
2688 self._downloader.trouble(u'ERROR: unable to download file')
2691 class FacebookIE(InfoExtractor):
2692 """Information Extractor for Facebook"""
2694 _VALID_URL = r'^(?:https?://)?(?:\w+\.)?facebook\.com/(?:video/video|photo)\.php\?(?:.*?)v=(?P<ID>\d+)(?:.*)'
2695 _LOGIN_URL = 'https://login.facebook.com/login.php?m&next=http%3A%2F%2Fm.facebook.com%2Fhome.php&'
2696 _NETRC_MACHINE = 'facebook'
2697 _available_formats = ['video', 'highqual', 'lowqual']
2698 _video_extensions = {
2703 IE_NAME = u'facebook'
2705 def __init__(self, downloader=None):
2706 InfoExtractor.__init__(self, downloader)
2708 def _reporter(self, message):
2709 """Add header and report message."""
2710 self._downloader.to_screen(u'[facebook] %s' % message)
2712 def report_login(self):
2713 """Report attempt to log in."""
2714 self._reporter(u'Logging in')
2716 def report_video_webpage_download(self, video_id):
2717 """Report attempt to download video webpage."""
2718 self._reporter(u'%s: Downloading video webpage' % video_id)
2720 def report_information_extraction(self, video_id):
2721 """Report attempt to extract video information."""
2722 self._reporter(u'%s: Extracting video information' % video_id)
2724 def _parse_page(self, video_webpage):
2725 """Extract video information from page"""
2727 data = {'title': r'\("video_title", "(.*?)"\)',
2728 'description': r'<div class="datawrap">(.*?)</div>',
2729 'owner': r'\("video_owner_name", "(.*?)"\)',
2730 'thumbnail': r'\("thumb_url", "(?P<THUMB>.*?)"\)',
2733 for piece in data.keys():
2734 mobj = re.search(data[piece], video_webpage)
2735 if mobj is not None:
2736 video_info[piece] = urllib.unquote_plus(mobj.group(1).decode("unicode_escape"))
2740 for fmt in self._available_formats:
2741 mobj = re.search(r'\("%s_src\", "(.+?)"\)' % fmt, video_webpage)
2742 if mobj is not None:
2743 # URL is in a Javascript segment inside an escaped Unicode format within
2744 # the generally utf-8 page
2745 video_urls[fmt] = urllib.unquote_plus(mobj.group(1).decode("unicode_escape"))
2746 video_info['video_urls'] = video_urls
2750 def _real_initialize(self):
2751 if self._downloader is None:
2756 downloader_params = self._downloader.params
2758 # Attempt to use provided username and password or .netrc data
2759 if downloader_params.get('username', None) is not None:
2760 useremail = downloader_params['username']
2761 password = downloader_params['password']
2762 elif downloader_params.get('usenetrc', False):
2764 info = netrc.netrc().authenticators(self._NETRC_MACHINE)
2765 if info is not None:
2769 raise netrc.NetrcParseError('No authenticators for %s' % self._NETRC_MACHINE)
2770 except (IOError, netrc.NetrcParseError), err:
2771 self._downloader.to_stderr(u'WARNING: parsing .netrc: %s' % str(err))
2774 if useremail is None:
2783 request = urllib2.Request(self._LOGIN_URL, urllib.urlencode(login_form))
2786 login_results = urllib2.urlopen(request).read()
2787 if re.search(r'<form(.*)name="login"(.*)</form>', login_results) is not None:
2788 self._downloader.to_stderr(u'WARNING: unable to log in: bad username/password, or exceded login rate limit (~3/min). Check credentials or wait.')
2790 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
2791 self._downloader.to_stderr(u'WARNING: unable to log in: %s' % str(err))
2794 def _real_extract(self, url):
2795 mobj = re.match(self._VALID_URL, url)
2797 self._downloader.trouble(u'ERROR: invalid URL: %s' % url)
2799 video_id = mobj.group('ID')
2802 self.report_video_webpage_download(video_id)
2803 request = urllib2.Request('https://www.facebook.com/video/video.php?v=%s' % video_id)
2805 page = urllib2.urlopen(request)
2806 video_webpage = page.read()
2807 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
2808 self._downloader.trouble(u'ERROR: unable to download video webpage: %s' % str(err))
2811 # Start extracting information
2812 self.report_information_extraction(video_id)
2814 # Extract information
2815 video_info = self._parse_page(video_webpage)
2818 if 'owner' not in video_info:
2819 self._downloader.trouble(u'ERROR: unable to extract uploader nickname')
2821 video_uploader = video_info['owner']
2824 if 'title' not in video_info:
2825 self._downloader.trouble(u'ERROR: unable to extract video title')
2827 video_title = video_info['title']
2828 video_title = video_title.decode('utf-8')
2829 video_title = sanitize_title(video_title)
2832 simple_title = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', video_title)
2833 simple_title = simple_title.strip(ur'_')
2836 if 'thumbnail' not in video_info:
2837 self._downloader.trouble(u'WARNING: unable to extract video thumbnail')
2838 video_thumbnail = ''
2840 video_thumbnail = video_info['thumbnail']
2844 if 'upload_date' in video_info:
2845 upload_time = video_info['upload_date']
2846 timetuple = email.utils.parsedate_tz(upload_time)
2847 if timetuple is not None:
2849 upload_date = time.strftime('%Y%m%d', timetuple[0:9])
2854 video_description = video_info.get('description', 'No description available.')
2856 url_map = video_info['video_urls']
2857 if len(url_map.keys()) > 0:
2858 # Decide which formats to download
2859 req_format = self._downloader.params.get('format', None)
2860 format_limit = self._downloader.params.get('format_limit', None)
2862 if format_limit is not None and format_limit in self._available_formats:
2863 format_list = self._available_formats[self._available_formats.index(format_limit):]
2865 format_list = self._available_formats
2866 existing_formats = [x for x in format_list if x in url_map]
2867 if len(existing_formats) == 0:
2868 self._downloader.trouble(u'ERROR: no known formats available for video')
2870 if req_format is None:
2871 video_url_list = [(existing_formats[0], url_map[existing_formats[0]])] # Best quality
2872 elif req_format == 'worst':
2873 video_url_list = [(existing_formats[len(existing_formats)-1], url_map[existing_formats[len(existing_formats)-1]])] # worst quality
2874 elif req_format == '-1':
2875 video_url_list = [(f, url_map[f]) for f in existing_formats] # All formats
2878 if req_format not in url_map:
2879 self._downloader.trouble(u'ERROR: requested format not available')
2881 video_url_list = [(req_format, url_map[req_format])] # Specific format
2883 for format_param, video_real_url in video_url_list:
2885 # At this point we have a new video
2886 self._downloader.increment_downloads()
2889 video_extension = self._video_extensions.get(format_param, 'mp4')
2892 # Process video information
2893 self._downloader.process_info({
2894 'id': video_id.decode('utf-8'),
2895 'url': video_real_url.decode('utf-8'),
2896 'uploader': video_uploader.decode('utf-8'),
2897 'upload_date': upload_date,
2898 'title': video_title,
2899 'stitle': simple_title,
2900 'ext': video_extension.decode('utf-8'),
2901 'format': (format_param is None and u'NA' or format_param.decode('utf-8')),
2902 'thumbnail': video_thumbnail.decode('utf-8'),
2903 'description': video_description.decode('utf-8'),
2906 except UnavailableVideoError, err:
2907 self._downloader.trouble(u'\nERROR: unable to download video')
2909 class BlipTVIE(InfoExtractor):
2910 """Information extractor for blip.tv"""
2912 _VALID_URL = r'^(?:https?://)?(?:\w+\.)?blip\.tv(/.+)$'
2913 _URL_EXT = r'^.*\.([a-z0-9]+)$'
2914 IE_NAME = u'blip.tv'
2916 def report_extraction(self, file_id):
2917 """Report information extraction."""
2918 self._downloader.to_screen(u'[%s] %s: Extracting information' % (self.IE_NAME, file_id))
2920 def report_direct_download(self, title):
2921 """Report information extraction."""
2922 self._downloader.to_screen(u'[%s] %s: Direct download detected' % (self.IE_NAME, title))
2924 def _simplify_title(self, title):
2925 res = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', title)
2926 res = res.strip(ur'_')
2929 def _real_extract(self, url):
2930 mobj = re.match(self._VALID_URL, url)
2932 self._downloader.trouble(u'ERROR: invalid URL: %s' % url)
2939 json_url = url + cchar + 'skin=json&version=2&no_wrap=1'
2940 request = urllib2.Request(json_url)
2941 self.report_extraction(mobj.group(1))
2944 urlh = urllib2.urlopen(request)
2945 if urlh.headers.get('Content-Type', '').startswith('video/'): # Direct download
2946 basename = url.split('/')[-1]
2947 title,ext = os.path.splitext(basename)
2948 ext = ext.replace('.', '')
2949 self.report_direct_download(title)
2954 'stitle': self._simplify_title(title),
2958 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
2959 self._downloader.trouble(u'ERROR: unable to download video info webpage: %s' % str(err))
2961 if info is None: # Regular URL
2963 json_code = urlh.read()
2964 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
2965 self._downloader.trouble(u'ERROR: unable to read video info webpage: %s' % str(err))
2969 json_data = json.loads(json_code)
2970 if 'Post' in json_data:
2971 data = json_data['Post']
2975 upload_date = datetime.datetime.strptime(data['datestamp'], '%m-%d-%y %H:%M%p').strftime('%Y%m%d')
2976 video_url = data['media']['url']
2977 umobj = re.match(self._URL_EXT, video_url)
2979 raise ValueError('Can not determine filename extension')
2980 ext = umobj.group(1)
2983 'id': data['item_id'],
2985 'uploader': data['display_name'],
2986 'upload_date': upload_date,
2987 'title': data['title'],
2988 'stitle': self._simplify_title(data['title']),
2990 'format': data['media']['mimeType'],
2991 'thumbnail': data['thumbnailUrl'],
2992 'description': data['description'],
2993 'player_url': data['embedUrl']
2995 except (ValueError,KeyError), err:
2996 self._downloader.trouble(u'ERROR: unable to parse video information: %s' % repr(err))
2999 self._downloader.increment_downloads()
3002 self._downloader.process_info(info)
3003 except UnavailableVideoError, err:
3004 self._downloader.trouble(u'\nERROR: unable to download video')
3007 class MyVideoIE(InfoExtractor):
3008 """Information Extractor for myvideo.de."""
3010 _VALID_URL = r'(?:http://)?(?:www\.)?myvideo\.de/watch/([0-9]+)/([^?/]+).*'
3011 IE_NAME = u'myvideo'
3013 def __init__(self, downloader=None):
3014 InfoExtractor.__init__(self, downloader)
3016 def report_download_webpage(self, video_id):
3017 """Report webpage download."""
3018 self._downloader.to_screen(u'[myvideo] %s: Downloading webpage' % video_id)
3020 def report_extraction(self, video_id):
3021 """Report information extraction."""
3022 self._downloader.to_screen(u'[myvideo] %s: Extracting information' % video_id)
3024 def _real_extract(self,url):
3025 mobj = re.match(self._VALID_URL, url)
3027 self._download.trouble(u'ERROR: invalid URL: %s' % url)
3030 video_id = mobj.group(1)
3031 simple_title = mobj.group(2).decode('utf-8')
3032 # should actually not be necessary
3033 simple_title = sanitize_title(simple_title)
3034 simple_title = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', simple_title)
3037 request = urllib2.Request('http://www.myvideo.de/watch/%s' % video_id)
3039 self.report_download_webpage(video_id)
3040 webpage = urllib2.urlopen(request).read()
3041 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
3042 self._downloader.trouble(u'ERROR: Unable to retrieve video webpage: %s' % str(err))
3045 self.report_extraction(video_id)
3046 mobj = re.search(r'<link rel=\'image_src\' href=\'(http://is[0-9].myvideo\.de/de/movie[0-9]+/[a-f0-9]+)/thumbs/[^.]+\.jpg\' />',
3049 self._downloader.trouble(u'ERROR: unable to extract media URL')
3051 video_url = mobj.group(1) + ('/%s.flv' % video_id)
3053 mobj = re.search('<title>([^<]+)</title>', webpage)
3055 self._downloader.trouble(u'ERROR: unable to extract title')
3058 video_title = mobj.group(1)
3059 video_title = sanitize_title(video_title)
3062 self._downloader.process_info({
3066 'upload_date': u'NA',
3067 'title': video_title,
3068 'stitle': simple_title,
3073 except UnavailableVideoError:
3074 self._downloader.trouble(u'\nERROR: Unable to download video')
3076 class ComedyCentralIE(InfoExtractor):
3077 """Information extractor for The Daily Show and Colbert Report """
3079 _VALID_URL = r'^(:(?P<shortname>tds|thedailyshow|cr|colbert|colbertnation|colbertreport))|(https?://)?(www\.)?(?P<showname>thedailyshow|colbertnation)\.com/full-episodes/(?P<episode>.*)$'
3080 IE_NAME = u'comedycentral'
3082 def report_extraction(self, episode_id):
3083 self._downloader.to_screen(u'[comedycentral] %s: Extracting information' % episode_id)
3085 def report_config_download(self, episode_id):
3086 self._downloader.to_screen(u'[comedycentral] %s: Downloading configuration' % episode_id)
3088 def report_index_download(self, episode_id):
3089 self._downloader.to_screen(u'[comedycentral] %s: Downloading show index' % episode_id)
3091 def report_player_url(self, episode_id):
3092 self._downloader.to_screen(u'[comedycentral] %s: Determining player URL' % episode_id)
3094 def _simplify_title(self, title):
3095 res = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', title)
3096 res = res.strip(ur'_')
3099 def _real_extract(self, url):
3100 mobj = re.match(self._VALID_URL, url)
3102 self._downloader.trouble(u'ERROR: invalid URL: %s' % url)
3105 if mobj.group('shortname'):
3106 if mobj.group('shortname') in ('tds', 'thedailyshow'):
3107 url = 'http://www.thedailyshow.com/full-episodes/'
3109 url = 'http://www.colbertnation.com/full-episodes/'
3110 mobj = re.match(self._VALID_URL, url)
3111 assert mobj is not None
3113 dlNewest = not mobj.group('episode')
3115 epTitle = mobj.group('showname')
3117 epTitle = mobj.group('episode')
3119 req = urllib2.Request(url)
3120 self.report_extraction(epTitle)
3122 htmlHandle = urllib2.urlopen(req)
3123 html = htmlHandle.read()
3124 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
3125 self._downloader.trouble(u'ERROR: unable to download webpage: %s' % unicode(err))
3128 url = htmlHandle.geturl()
3129 mobj = re.match(self._VALID_URL, url)
3131 self._downloader.trouble(u'ERROR: Invalid redirected URL: ' + url)
3133 if mobj.group('episode') == '':
3134 self._downloader.trouble(u'ERROR: Redirected URL is still not specific: ' + url)
3136 epTitle = mobj.group('episode')
3138 mMovieParams = re.findall('<param name="movie" value="(http://media.mtvnservices.com/([^"]*episode.*?:.*?))"/>', html)
3139 if len(mMovieParams) == 0:
3140 self._downloader.trouble(u'ERROR: unable to find Flash URL in webpage ' + url)
3143 playerUrl_raw = mMovieParams[0][0]
3144 self.report_player_url(epTitle)
3146 urlHandle = urllib2.urlopen(playerUrl_raw)
3147 playerUrl = urlHandle.geturl()
3148 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
3149 self._downloader.trouble(u'ERROR: unable to find out player URL: ' + unicode(err))
3152 uri = mMovieParams[0][1]
3153 indexUrl = 'http://shadow.comedycentral.com/feeds/video_player/mrss/?' + urllib.urlencode({'uri': uri})
3154 self.report_index_download(epTitle)
3156 indexXml = urllib2.urlopen(indexUrl).read()
3157 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
3158 self._downloader.trouble(u'ERROR: unable to download episode index: ' + unicode(err))
3161 idoc = xml.etree.ElementTree.fromstring(indexXml)
3162 itemEls = idoc.findall('.//item')
3163 for itemEl in itemEls:
3164 mediaId = itemEl.findall('./guid')[0].text
3165 shortMediaId = mediaId.split(':')[-1]
3166 showId = mediaId.split(':')[-2].replace('.com', '')
3167 officialTitle = itemEl.findall('./title')[0].text
3168 officialDate = itemEl.findall('./pubDate')[0].text
3170 configUrl = ('http://www.comedycentral.com/global/feeds/entertainment/media/mediaGenEntertainment.jhtml?' +
3171 urllib.urlencode({'uri': mediaId}))
3172 configReq = urllib2.Request(configUrl)
3173 self.report_config_download(epTitle)
3175 configXml = urllib2.urlopen(configReq).read()
3176 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
3177 self._downloader.trouble(u'ERROR: unable to download webpage: %s' % unicode(err))
3180 cdoc = xml.etree.ElementTree.fromstring(configXml)
3182 for rendition in cdoc.findall('.//rendition'):
3183 finfo = (rendition.attrib['bitrate'], rendition.findall('./src')[0].text)
3187 self._downloader.trouble(u'\nERROR: unable to download ' + mediaId + ': No videos found')
3190 # For now, just pick the highest bitrate
3191 format,video_url = turls[-1]
3193 self._downloader.increment_downloads()
3195 effTitle = showId + '-' + epTitle
3200 'upload_date': officialDate,
3202 'stitle': self._simplify_title(effTitle),
3206 'description': officialTitle,
3207 'player_url': playerUrl
3211 self._downloader.process_info(info)
3212 except UnavailableVideoError, err:
3213 self._downloader.trouble(u'\nERROR: unable to download ' + mediaId)
3217 class EscapistIE(InfoExtractor):
3218 """Information extractor for The Escapist """
3220 _VALID_URL = r'^(https?://)?(www\.)?escapistmagazine\.com/videos/view/(?P<showname>[^/]+)/(?P<episode>[^/?]+)[/?]?.*$'
3221 IE_NAME = u'escapist'
3223 def report_extraction(self, showName):
3224 self._downloader.to_screen(u'[escapist] %s: Extracting information' % showName)
3226 def report_config_download(self, showName):
3227 self._downloader.to_screen(u'[escapist] %s: Downloading configuration' % showName)
3229 def _simplify_title(self, title):
3230 res = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', title)
3231 res = res.strip(ur'_')
3234 def _real_extract(self, url):
3235 htmlParser = HTMLParser.HTMLParser()
3237 mobj = re.match(self._VALID_URL, url)
3239 self._downloader.trouble(u'ERROR: invalid URL: %s' % url)
3241 showName = mobj.group('showname')
3242 videoId = mobj.group('episode')
3244 self.report_extraction(showName)
3246 webPage = urllib2.urlopen(url).read()
3247 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
3248 self._downloader.trouble(u'ERROR: unable to download webpage: ' + unicode(err))
3251 descMatch = re.search('<meta name="description" content="([^"]*)"', webPage)
3252 description = htmlParser.unescape(descMatch.group(1))
3253 imgMatch = re.search('<meta property="og:image" content="([^"]*)"', webPage)
3254 imgUrl = htmlParser.unescape(imgMatch.group(1))
3255 playerUrlMatch = re.search('<meta property="og:video" content="([^"]*)"', webPage)
3256 playerUrl = htmlParser.unescape(playerUrlMatch.group(1))
3257 configUrlMatch = re.search('config=(.*)$', playerUrl)
3258 configUrl = urllib2.unquote(configUrlMatch.group(1))
3260 self.report_config_download(showName)
3262 configJSON = urllib2.urlopen(configUrl).read()
3263 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
3264 self._downloader.trouble(u'ERROR: unable to download configuration: ' + unicode(err))
3267 # Technically, it's JavaScript, not JSON
3268 configJSON = configJSON.replace("'", '"')
3271 config = json.loads(configJSON)
3272 except (ValueError,), err:
3273 self._downloader.trouble(u'ERROR: Invalid JSON in configuration file: ' + unicode(err))
3276 playlist = config['playlist']
3277 videoUrl = playlist[1]['url']
3279 self._downloader.increment_downloads()
3283 'uploader': showName,
3284 'upload_date': None,
3286 'stitle': self._simplify_title(showName),
3289 'thumbnail': imgUrl,
3290 'description': description,
3291 'player_url': playerUrl,
3295 self._downloader.process_info(info)
3296 except UnavailableVideoError, err:
3297 self._downloader.trouble(u'\nERROR: unable to download ' + videoId)
3300 class CollegeHumorIE(InfoExtractor):
3301 """Information extractor for collegehumor.com"""
3303 _VALID_URL = r'^(?:https?://)?(?:www\.)?collegehumor\.com/video/(?P<videoid>[0-9]+)/(?P<shorttitle>.*)$'
3304 IE_NAME = u'collegehumor'
3306 def report_webpage(self, video_id):
3307 """Report information extraction."""
3308 self._downloader.to_screen(u'[%s] %s: Downloading webpage' % (self.IE_NAME, video_id))
3310 def report_extraction(self, video_id):
3311 """Report information extraction."""
3312 self._downloader.to_screen(u'[%s] %s: Extracting information' % (self.IE_NAME, video_id))
3314 def _simplify_title(self, title):
3315 res = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', title)
3316 res = res.strip(ur'_')
3319 def _real_extract(self, url):
3320 htmlParser = HTMLParser.HTMLParser()
3322 mobj = re.match(self._VALID_URL, url)
3324 self._downloader.trouble(u'ERROR: invalid URL: %s' % url)
3326 video_id = mobj.group('videoid')
3328 self.report_webpage(video_id)
3329 request = urllib2.Request(url)
3331 webpage = urllib2.urlopen(request).read()
3332 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
3333 self._downloader.trouble(u'ERROR: unable to download video webpage: %s' % str(err))
3336 m = re.search(r'id="video:(?P<internalvideoid>[0-9]+)"', webpage)
3338 self._downloader.trouble(u'ERROR: Cannot extract internal video ID')
3340 internal_video_id = m.group('internalvideoid')
3344 'internal_id': internal_video_id,
3347 self.report_extraction(video_id)
3348 xmlUrl = 'http://www.collegehumor.com/moogaloop/video:' + internal_video_id
3350 metaXml = urllib2.urlopen(xmlUrl).read()
3351 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
3352 self._downloader.trouble(u'ERROR: unable to download video info XML: %s' % str(err))
3355 mdoc = xml.etree.ElementTree.fromstring(metaXml)
3357 videoNode = mdoc.findall('./video')[0]
3358 info['description'] = videoNode.findall('./description')[0].text
3359 info['title'] = videoNode.findall('./caption')[0].text
3360 info['stitle'] = self._simplify_title(info['title'])
3361 info['url'] = videoNode.findall('./file')[0].text
3362 info['thumbnail'] = videoNode.findall('./thumbnail')[0].text
3363 info['ext'] = info['url'].rpartition('.')[2]
3364 info['format'] = info['ext']
3366 self._downloader.trouble(u'\nERROR: Invalid metadata XML file')
3369 self._downloader.increment_downloads()
3372 self._downloader.process_info(info)
3373 except UnavailableVideoError, err:
3374 self._downloader.trouble(u'\nERROR: unable to download video')
3377 class XVideosIE(InfoExtractor):
3378 """Information extractor for xvideos.com"""
3380 _VALID_URL = r'^(?:https?://)?(?:www\.)?xvideos\.com/video([0-9]+)(?:.*)'
3381 IE_NAME = u'xvideos'
3383 def report_webpage(self, video_id):
3384 """Report information extraction."""
3385 self._downloader.to_screen(u'[%s] %s: Downloading webpage' % (self.IE_NAME, video_id))
3387 def report_extraction(self, video_id):
3388 """Report information extraction."""
3389 self._downloader.to_screen(u'[%s] %s: Extracting information' % (self.IE_NAME, video_id))
3391 def _simplify_title(self, title):
3392 res = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', title)
3393 res = res.strip(ur'_')
3396 def _real_extract(self, url):
3397 htmlParser = HTMLParser.HTMLParser()
3399 mobj = re.match(self._VALID_URL, url)
3401 self._downloader.trouble(u'ERROR: invalid URL: %s' % url)
3403 video_id = mobj.group(1).decode('utf-8')
3405 self.report_webpage(video_id)
3407 request = urllib2.Request(r'http://www.xvideos.com/video' + video_id)
3409 webpage = urllib2.urlopen(request).read()
3410 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
3411 self._downloader.trouble(u'ERROR: unable to download video webpage: %s' % str(err))
3414 self.report_extraction(video_id)
3418 mobj = re.search(r'flv_url=(.+?)&', webpage)
3420 self._downloader.trouble(u'ERROR: unable to extract video url')
3422 video_url = urllib2.unquote(mobj.group(1).decode('utf-8'))
3426 mobj = re.search(r'<title>(.*?)\s+-\s+XVID', webpage)
3428 self._downloader.trouble(u'ERROR: unable to extract video title')
3430 video_title = mobj.group(1).decode('utf-8')
3433 # Extract video thumbnail
3434 mobj = re.search(r'http://(?:img.*?\.)xvideos.com/videos/thumbs/[a-fA-F0-9]/[a-fA-F0-9]/[a-fA-F0-9]/([a-fA-F0-9.]+jpg)', webpage)
3436 self._downloader.trouble(u'ERROR: unable to extract video thumbnail')
3438 video_thumbnail = mobj.group(1).decode('utf-8')
3442 self._downloader.increment_downloads()
3447 'upload_date': None,
3448 'title': video_title,
3449 'stitle': self._simplify_title(video_title),
3452 'thumbnail': video_thumbnail,
3453 'description': None,
3458 self._downloader.process_info(info)
3459 except UnavailableVideoError, err:
3460 self._downloader.trouble(u'\nERROR: unable to download ' + video_id)
3463 class SoundcloudIE(InfoExtractor):
3464 """Information extractor for soundcloud.com
3465 To access the media, the uid of the song and a stream token
3466 must be extracted from the page source and the script must make
3467 a request to media.soundcloud.com/crossdomain.xml. Then
3468 the media can be grabbed by requesting from an url composed
3469 of the stream token and uid
3472 _VALID_URL = r'^(?:https?://)?(?:www\.)?soundcloud\.com/([\w\d-]+)/([\w\d-]+)'
3473 IE_NAME = u'soundcloud'
3475 def __init__(self, downloader=None):
3476 InfoExtractor.__init__(self, downloader)
3478 def report_webpage(self, video_id):
3479 """Report information extraction."""
3480 self._downloader.to_screen(u'[%s] %s: Downloading webpage' % (self.IE_NAME, video_id))
3482 def report_extraction(self, video_id):
3483 """Report information extraction."""
3484 self._downloader.to_screen(u'[%s] %s: Extracting information' % (self.IE_NAME, video_id))
3486 def _real_extract(self, url):
3487 htmlParser = HTMLParser.HTMLParser()
3489 mobj = re.match(self._VALID_URL, url)
3491 self._downloader.trouble(u'ERROR: invalid URL: %s' % url)
3494 # extract uploader (which is in the url)
3495 uploader = mobj.group(1).decode('utf-8')
3496 # extract simple title (uploader + slug of song title)
3497 slug_title = mobj.group(2).decode('utf-8')
3498 simple_title = uploader + '-' + slug_title
3500 self.report_webpage('%s/%s' % (uploader, slug_title))
3502 request = urllib2.Request('http://soundcloud.com/%s/%s' % (uploader, slug_title))
3504 webpage = urllib2.urlopen(request).read()
3505 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
3506 self._downloader.trouble(u'ERROR: unable to download video webpage: %s' % str(err))
3509 self.report_extraction('%s/%s' % (uploader, slug_title))
3511 # extract uid and stream token that soundcloud hands out for access
3512 mobj = re.search('"uid":"([\w\d]+?)".*?stream_token=([\w\d]+)', webpage)
3514 video_id = mobj.group(1)
3515 stream_token = mobj.group(2)
3517 # extract unsimplified title
3518 mobj = re.search('"title":"(.*?)",', webpage)
3520 title = mobj.group(1)
3522 # construct media url (with uid/token)
3523 mediaURL = "http://media.soundcloud.com/stream/%s?stream_token=%s"
3524 mediaURL = mediaURL % (video_id, stream_token)
3527 description = u'No description available'
3528 mobj = re.search('track-description-value"><p>(.*?)</p>', webpage)
3530 description = mobj.group(1)
3534 mobj = re.search("pretty-date'>on ([\w]+ [\d]+, [\d]+ \d+:\d+)</abbr></h2>", webpage)
3537 upload_date = datetime.datetime.strptime(mobj.group(1), '%B %d, %Y %H:%M').strftime('%Y%m%d')
3538 except Exception as e:
3541 # for soundcloud, a request to a cross domain is required for cookies
3542 request = urllib2.Request('http://media.soundcloud.com/crossdomain.xml', std_headers)
3545 self._downloader.process_info({
3546 'id': video_id.decode('utf-8'),
3548 'uploader': uploader.decode('utf-8'),
3549 'upload_date': upload_date,
3550 'title': simple_title.decode('utf-8'),
3551 'stitle': simple_title.decode('utf-8'),
3555 'description': description.decode('utf-8')
3557 except UnavailableVideoError:
3558 self._downloader.trouble(u'\nERROR: unable to download video')
3561 class InfoQIE(InfoExtractor):
3562 """Information extractor for infoq.com"""
3564 _VALID_URL = r'^(?:https?://)?(?:www\.)?infoq\.com/[^/]+/[^/]+$'
3567 def report_webpage(self, video_id):
3568 """Report information extraction."""
3569 self._downloader.to_screen(u'[%s] %s: Downloading webpage' % (self.IE_NAME, video_id))
3571 def report_extraction(self, video_id):
3572 """Report information extraction."""
3573 self._downloader.to_screen(u'[%s] %s: Extracting information' % (self.IE_NAME, video_id))
3575 def _simplify_title(self, title):
3576 res = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', title)
3577 res = res.strip(ur'_')
3580 def _real_extract(self, url):
3581 htmlParser = HTMLParser.HTMLParser()
3583 mobj = re.match(self._VALID_URL, url)
3585 self._downloader.trouble(u'ERROR: invalid URL: %s' % url)
3588 self.report_webpage(url)
3590 request = urllib2.Request(url)
3592 webpage = urllib2.urlopen(request).read()
3593 except (urllib2.URLError, httplib.HTTPException, socket.error), err:
3594 self._downloader.trouble(u'ERROR: unable to download video webpage: %s' % str(err))
3597 self.report_extraction(url)
3601 mobj = re.search(r"jsclassref='([^']*)'", webpage)
3603 self._downloader.trouble(u'ERROR: unable to extract video url')
3605 video_url = 'rtmpe://video.infoq.com/cfx/st/' + urllib2.unquote(mobj.group(1).decode('base64'))
3609 mobj = re.search(r'contentTitle = "(.*?)";', webpage)
3611 self._downloader.trouble(u'ERROR: unable to extract video title')
3613 video_title = mobj.group(1).decode('utf-8')
3615 # Extract description
3616 video_description = u'No description available.'
3617 mobj = re.search(r'<meta name="description" content="(.*)"(?:\s*/)?>', webpage)
3618 if mobj is not None:
3619 video_description = mobj.group(1).decode('utf-8')
3621 video_filename = video_url.split('/')[-1]
3622 video_id, extension = video_filename.split('.')
3624 self._downloader.increment_downloads()
3629 'upload_date': None,
3630 'title': video_title,
3631 'stitle': self._simplify_title(video_title),
3633 'format': extension, # Extension is always(?) mp4, but seems to be flv
3635 'description': video_description,
3640 self._downloader.process_info(info)
3641 except UnavailableVideoError, err:
3642 self._downloader.trouble(u'\nERROR: unable to download ' + video_url)
3646 class PostProcessor(object):
3647 """Post Processor class.
3649 PostProcessor objects can be added to downloaders with their
3650 add_post_processor() method. When the downloader has finished a
3651 successful download, it will take its internal chain of PostProcessors
3652 and start calling the run() method on each one of them, first with
3653 an initial argument and then with the returned value of the previous
3656 The chain will be stopped if one of them ever returns None or the end
3657 of the chain is reached.
3659 PostProcessor objects follow a "mutual registration" process similar
3660 to InfoExtractor objects.
3665 def __init__(self, downloader=None):
3666 self._downloader = downloader
3668 def set_downloader(self, downloader):
3669 """Sets the downloader for this PP."""
3670 self._downloader = downloader
3672 def run(self, information):
3673 """Run the PostProcessor.
3675 The "information" argument is a dictionary like the ones
3676 composed by InfoExtractors. The only difference is that this
3677 one has an extra field called "filepath" that points to the
3680 When this method returns None, the postprocessing chain is
3681 stopped. However, this method may return an information
3682 dictionary that will be passed to the next postprocessing
3683 object in the chain. It can be the one it received after
3684 changing some fields.
3686 In addition, this method may raise a PostProcessingError
3687 exception that will be taken into account by the downloader
3690 return information # by default, do nothing
3693 class FFmpegExtractAudioPP(PostProcessor):
3695 def __init__(self, downloader=None, preferredcodec=None, preferredquality=None, keepvideo=False):
3696 PostProcessor.__init__(self, downloader)
3697 if preferredcodec is None:
3698 preferredcodec = 'best'
3699 self._preferredcodec = preferredcodec
3700 self._preferredquality = preferredquality
3701 self._keepvideo = keepvideo
3704 def get_audio_codec(path):
3706 cmd = ['ffprobe', '-show_streams', '--', path]
3707 handle = subprocess.Popen(cmd, stderr=file(os.path.devnull, 'w'), stdout=subprocess.PIPE)
3708 output = handle.communicate()[0]
3709 if handle.wait() != 0:
3711 except (IOError, OSError):
3714 for line in output.split('\n'):
3715 if line.startswith('codec_name='):
3716 audio_codec = line.split('=')[1].strip()
3717 elif line.strip() == 'codec_type=audio' and audio_codec is not None:
3722 def run_ffmpeg(path, out_path, codec, more_opts):
3724 cmd = ['ffmpeg', '-y', '-i', path, '-vn', '-acodec', codec] + more_opts + ['--', out_path]
3725 ret = subprocess.call(cmd, stdout=file(os.path.devnull, 'w'), stderr=subprocess.STDOUT)
3727 except (IOError, OSError):
3730 def run(self, information):
3731 path = information['filepath']
3733 filecodec = self.get_audio_codec(path)
3734 if filecodec is None:
3735 self._downloader.to_stderr(u'WARNING: unable to obtain file audio codec with ffprobe')
3739 if self._preferredcodec == 'best' or self._preferredcodec == filecodec:
3740 if filecodec in ['aac', 'mp3', 'vorbis']:
3741 # Lossless if possible
3743 extension = filecodec
3744 if filecodec == 'aac':
3745 more_opts = ['-f', 'adts']
3746 if filecodec == 'vorbis':
3750 acodec = 'libmp3lame'
3753 if self._preferredquality is not None:
3754 more_opts += ['-ab', self._preferredquality]
3756 # We convert the audio (lossy)
3757 acodec = {'mp3': 'libmp3lame', 'aac': 'aac', 'vorbis': 'libvorbis'}[self._preferredcodec]
3758 extension = self._preferredcodec
3760 if self._preferredquality is not None:
3761 more_opts += ['-ab', self._preferredquality]
3762 if self._preferredcodec == 'aac':
3763 more_opts += ['-f', 'adts']
3764 if self._preferredcodec == 'vorbis':
3767 (prefix, ext) = os.path.splitext(path)
3768 new_path = prefix + '.' + extension
3769 self._downloader.to_screen(u'[ffmpeg] Destination: %s' % new_path)
3770 status = self.run_ffmpeg(path, new_path, acodec, more_opts)
3773 self._downloader.to_stderr(u'WARNING: error running ffmpeg')
3776 # Try to update the date time for extracted audio file.
3777 if information.get('filetime') is not None:
3779 os.utime(new_path, (time.time(), information['filetime']))
3781 self._downloader.to_stderr(u'WARNING: Cannot update utime of audio file')
3783 if not self._keepvideo:
3786 except (IOError, OSError):
3787 self._downloader.to_stderr(u'WARNING: Unable to remove downloaded video file')
3790 information['filepath'] = new_path
3794 def updateSelf(downloader, filename):
3795 ''' Update the program file with the latest version from the repository '''
3796 # Note: downloader only used for options
3797 if not os.access(filename, os.W_OK):
3798 sys.exit('ERROR: no write permissions on %s' % filename)
3800 downloader.to_screen('Updating to latest version...')
3804 urlh = urllib.urlopen(UPDATE_URL)
3805 newcontent = urlh.read()
3807 vmatch = re.search("__version__ = '([^']+)'", newcontent)
3808 if vmatch is not None and vmatch.group(1) == __version__:
3809 downloader.to_screen('youtube-dl is up-to-date (' + __version__ + ')')
3813 except (IOError, OSError), err:
3814 sys.exit('ERROR: unable to download latest version')
3817 outf = open(filename, 'wb')
3819 outf.write(newcontent)
3822 except (IOError, OSError), err:
3823 sys.exit('ERROR: unable to overwrite current version')
3825 downloader.to_screen('Updated youtube-dl. Restart youtube-dl to use the new version.')
3832 def _format_option_string(option):
3833 ''' ('-o', '--option') -> -o, --format METAVAR'''
3837 if option._short_opts: opts.append(option._short_opts[0])
3838 if option._long_opts: opts.append(option._long_opts[0])
3839 if len(opts) > 1: opts.insert(1, ', ')
3841 if option.takes_value(): opts.append(' %s' % option.metavar)
3843 return "".join(opts)
3845 def _find_term_columns():
3846 columns = os.environ.get('COLUMNS', None)
3851 sp = subprocess.Popen(['stty', 'size'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
3852 out,err = sp.communicate()
3853 return int(out.split()[1])
3859 max_help_position = 80
3861 # No need to wrap help messages if we're on a wide console
3862 columns = _find_term_columns()
3863 if columns: max_width = columns
3865 fmt = optparse.IndentedHelpFormatter(width=max_width, max_help_position=max_help_position)
3866 fmt.format_option_strings = _format_option_string
3869 'version' : __version__,
3871 'usage' : '%prog [options] url [url...]',
3872 'conflict_handler' : 'resolve',
3875 parser = optparse.OptionParser(**kw)
3878 general = optparse.OptionGroup(parser, 'General Options')
3879 selection = optparse.OptionGroup(parser, 'Video Selection')
3880 authentication = optparse.OptionGroup(parser, 'Authentication Options')
3881 video_format = optparse.OptionGroup(parser, 'Video Format Options')
3882 postproc = optparse.OptionGroup(parser, 'Post-processing Options')
3883 filesystem = optparse.OptionGroup(parser, 'Filesystem Options')
3884 verbosity = optparse.OptionGroup(parser, 'Verbosity / Simulation Options')
3886 general.add_option('-h', '--help',
3887 action='help', help='print this help text and exit')
3888 general.add_option('-v', '--version',
3889 action='version', help='print program version and exit')
3890 general.add_option('-U', '--update',
3891 action='store_true', dest='update_self', help='update this program to latest version')
3892 general.add_option('-i', '--ignore-errors',
3893 action='store_true', dest='ignoreerrors', help='continue on download errors', default=False)
3894 general.add_option('-r', '--rate-limit',
3895 dest='ratelimit', metavar='LIMIT', help='download rate limit (e.g. 50k or 44.6m)')
3896 general.add_option('-R', '--retries',
3897 dest='retries', metavar='RETRIES', help='number of retries (default is 10)', default=10)
3898 general.add_option('--dump-user-agent',
3899 action='store_true', dest='dump_user_agent',
3900 help='display the current browser identification', default=False)
3901 general.add_option('--list-extractors',
3902 action='store_true', dest='list_extractors',
3903 help='List all supported extractors and the URLs they would handle', default=False)
3905 selection.add_option('--playlist-start',
3906 dest='playliststart', metavar='NUMBER', help='playlist video to start at (default is 1)', default=1)
3907 selection.add_option('--playlist-end',
3908 dest='playlistend', metavar='NUMBER', help='playlist video to end at (default is last)', default=-1)
3909 selection.add_option('--match-title', dest='matchtitle', metavar='REGEX',help='download only matching titles (regex or caseless sub-string)')
3910 selection.add_option('--reject-title', dest='rejecttitle', metavar='REGEX',help='skip download for matching titles (regex or caseless sub-string)')
3912 authentication.add_option('-u', '--username',
3913 dest='username', metavar='USERNAME', help='account username')
3914 authentication.add_option('-p', '--password',
3915 dest='password', metavar='PASSWORD', help='account password')
3916 authentication.add_option('-n', '--netrc',
3917 action='store_true', dest='usenetrc', help='use .netrc authentication data', default=False)
3920 video_format.add_option('-f', '--format',
3921 action='store', dest='format', metavar='FORMAT', help='video format code')
3922 video_format.add_option('--all-formats',
3923 action='store_const', dest='format', help='download all available video formats', const='all')
3924 video_format.add_option('--max-quality',
3925 action='store', dest='format_limit', metavar='FORMAT', help='highest quality format to download')
3926 video_format.add_option('-F', '--list-formats',
3927 action='store_true', dest='listformats', help='list all available formats (currently youtube only)')
3930 verbosity.add_option('-q', '--quiet',
3931 action='store_true', dest='quiet', help='activates quiet mode', default=False)
3932 verbosity.add_option('-s', '--simulate',
3933 action='store_true', dest='simulate', help='do not download the video and do not write anything to disk', default=False)
3934 verbosity.add_option('--skip-download',
3935 action='store_true', dest='skip_download', help='do not download the video', default=False)
3936 verbosity.add_option('-g', '--get-url',
3937 action='store_true', dest='geturl', help='simulate, quiet but print URL', default=False)
3938 verbosity.add_option('-e', '--get-title',
3939 action='store_true', dest='gettitle', help='simulate, quiet but print title', default=False)
3940 verbosity.add_option('--get-thumbnail',
3941 action='store_true', dest='getthumbnail',
3942 help='simulate, quiet but print thumbnail URL', default=False)
3943 verbosity.add_option('--get-description',
3944 action='store_true', dest='getdescription',
3945 help='simulate, quiet but print video description', default=False)
3946 verbosity.add_option('--get-filename',
3947 action='store_true', dest='getfilename',
3948 help='simulate, quiet but print output filename', default=False)
3949 verbosity.add_option('--get-format',
3950 action='store_true', dest='getformat',
3951 help='simulate, quiet but print output format', default=False)
3952 verbosity.add_option('--no-progress',
3953 action='store_true', dest='noprogress', help='do not print progress bar', default=False)
3954 verbosity.add_option('--console-title',
3955 action='store_true', dest='consoletitle',
3956 help='display progress in console titlebar', default=False)
3959 filesystem.add_option('-t', '--title',
3960 action='store_true', dest='usetitle', help='use title in file name', default=False)
3961 filesystem.add_option('-l', '--literal',
3962 action='store_true', dest='useliteral', help='use literal title in file name', default=False)
3963 filesystem.add_option('-A', '--auto-number',
3964 action='store_true', dest='autonumber',
3965 help='number downloaded files starting from 00000', default=False)
3966 filesystem.add_option('-o', '--output',
3967 dest='outtmpl', metavar='TEMPLATE', help='output filename template. Use %(stitle)s to get the title, %(uploader)s for the uploader name, %(autonumber)s to get an automatically incremented number, %(ext)s for the filename extension, and %% for a literal percent')
3968 filesystem.add_option('-a', '--batch-file',
3969 dest='batchfile', metavar='FILE', help='file containing URLs to download (\'-\' for stdin)')
3970 filesystem.add_option('-w', '--no-overwrites',
3971 action='store_true', dest='nooverwrites', help='do not overwrite files', default=False)
3972 filesystem.add_option('-c', '--continue',
3973 action='store_true', dest='continue_dl', help='resume partially downloaded files', default=False)
3974 filesystem.add_option('--no-continue',
3975 action='store_false', dest='continue_dl',
3976 help='do not resume partially downloaded files (restart from beginning)')
3977 filesystem.add_option('--cookies',
3978 dest='cookiefile', metavar='FILE', help='file to read cookies from and dump cookie jar in')
3979 filesystem.add_option('--no-part',
3980 action='store_true', dest='nopart', help='do not use .part files', default=False)
3981 filesystem.add_option('--no-mtime',
3982 action='store_false', dest='updatetime',
3983 help='do not use the Last-modified header to set the file modification time', default=True)
3984 filesystem.add_option('--write-description',
3985 action='store_true', dest='writedescription',
3986 help='write video description to a .description file', default=False)
3987 filesystem.add_option('--write-info-json',
3988 action='store_true', dest='writeinfojson',
3989 help='write video metadata to a .info.json file', default=False)
3992 postproc.add_option('--extract-audio', action='store_true', dest='extractaudio', default=False,
3993 help='convert video files to audio-only files (requires ffmpeg and ffprobe)')
3994 postproc.add_option('--audio-format', metavar='FORMAT', dest='audioformat', default='best',
3995 help='"best", "aac", "vorbis" or "mp3"; best by default')
3996 postproc.add_option('--audio-quality', metavar='QUALITY', dest='audioquality', default='128K',
3997 help='ffmpeg audio bitrate specification, 128k by default')
3998 postproc.add_option('-k', '--keep-video', action='store_true', dest='keepvideo', default=False,
3999 help='keeps the video file on disk after the post-processing; the video is erased by default')
4002 parser.add_option_group(general)
4003 parser.add_option_group(selection)
4004 parser.add_option_group(filesystem)
4005 parser.add_option_group(verbosity)
4006 parser.add_option_group(video_format)
4007 parser.add_option_group(authentication)
4008 parser.add_option_group(postproc)
4010 opts, args = parser.parse_args()
4012 return parser, opts, args
4014 def gen_extractors():
4015 """ Return a list of an instance of every supported extractor.
4016 The order does matter; the first extractor matched is the one handling the URL.
4018 youtube_ie = YoutubeIE()
4019 google_ie = GoogleIE()
4020 yahoo_ie = YahooIE()
4022 YoutubePlaylistIE(youtube_ie),
4023 YoutubeUserIE(youtube_ie),
4024 YoutubeSearchIE(youtube_ie),
4026 MetacafeIE(youtube_ie),
4029 GoogleSearchIE(google_ie),
4032 YahooSearchIE(yahoo_ie),
4049 parser, opts, args = parseOpts()
4051 # Open appropriate CookieJar
4052 if opts.cookiefile is None:
4053 jar = cookielib.CookieJar()
4056 jar = cookielib.MozillaCookieJar(opts.cookiefile)
4057 if os.path.isfile(opts.cookiefile) and os.access(opts.cookiefile, os.R_OK):
4059 except (IOError, OSError), err:
4060 sys.exit(u'ERROR: unable to open cookie file')
4063 if opts.dump_user_agent:
4064 print std_headers['User-Agent']
4067 # Batch file verification
4069 if opts.batchfile is not None:
4071 if opts.batchfile == '-':
4074 batchfd = open(opts.batchfile, 'r')
4075 batchurls = batchfd.readlines()
4076 batchurls = [x.strip() for x in batchurls]
4077 batchurls = [x for x in batchurls if len(x) > 0 and not re.search(r'^[#/;]', x)]
4079 sys.exit(u'ERROR: batch file could not be read')
4080 all_urls = batchurls + args
4082 # General configuration
4083 cookie_processor = urllib2.HTTPCookieProcessor(jar)
4084 opener = urllib2.build_opener(urllib2.ProxyHandler(), cookie_processor, YoutubeDLHandler())
4085 urllib2.install_opener(opener)
4086 socket.setdefaulttimeout(300) # 5 minutes should be enough (famous last words)
4088 extractors = gen_extractors()
4090 if opts.list_extractors:
4091 for ie in extractors:
4093 matchedUrls = filter(lambda url: ie.suitable(url), all_urls)
4094 all_urls = filter(lambda url: url not in matchedUrls, all_urls)
4095 for mu in matchedUrls:
4099 # Conflicting, missing and erroneous options
4100 if opts.usenetrc and (opts.username is not None or opts.password is not None):
4101 parser.error(u'using .netrc conflicts with giving username/password')
4102 if opts.password is not None and opts.username is None:
4103 parser.error(u'account username missing')
4104 if opts.outtmpl is not None and (opts.useliteral or opts.usetitle or opts.autonumber):
4105 parser.error(u'using output template conflicts with using title, literal title or auto number')
4106 if opts.usetitle and opts.useliteral:
4107 parser.error(u'using title conflicts with using literal title')
4108 if opts.username is not None and opts.password is None:
4109 opts.password = getpass.getpass(u'Type account password and press return:')
4110 if opts.ratelimit is not None:
4111 numeric_limit = FileDownloader.parse_bytes(opts.ratelimit)
4112 if numeric_limit is None:
4113 parser.error(u'invalid rate limit specified')
4114 opts.ratelimit = numeric_limit
4115 if opts.retries is not None:
4117 opts.retries = long(opts.retries)
4118 except (TypeError, ValueError), err:
4119 parser.error(u'invalid retry count specified')
4121 opts.playliststart = int(opts.playliststart)
4122 if opts.playliststart <= 0:
4123 raise ValueError(u'Playlist start must be positive')
4124 except (TypeError, ValueError), err:
4125 parser.error(u'invalid playlist start number specified')
4127 opts.playlistend = int(opts.playlistend)
4128 if opts.playlistend != -1 and (opts.playlistend <= 0 or opts.playlistend < opts.playliststart):
4129 raise ValueError(u'Playlist end must be greater than playlist start')
4130 except (TypeError, ValueError), err:
4131 parser.error(u'invalid playlist end number specified')
4132 if opts.extractaudio:
4133 if opts.audioformat not in ['best', 'aac', 'mp3', 'vorbis']:
4134 parser.error(u'invalid audio format specified')
4137 fd = FileDownloader({
4138 'usenetrc': opts.usenetrc,
4139 'username': opts.username,
4140 'password': opts.password,
4141 'quiet': (opts.quiet or opts.geturl or opts.gettitle or opts.getthumbnail or opts.getdescription or opts.getfilename or opts.getformat),
4142 'forceurl': opts.geturl,
4143 'forcetitle': opts.gettitle,
4144 'forcethumbnail': opts.getthumbnail,
4145 'forcedescription': opts.getdescription,
4146 'forcefilename': opts.getfilename,
4147 'forceformat': opts.getformat,
4148 'simulate': opts.simulate,
4149 'skip_download': (opts.skip_download or opts.simulate or opts.geturl or opts.gettitle or opts.getthumbnail or opts.getdescription or opts.getfilename or opts.getformat),
4150 'format': opts.format,
4151 'format_limit': opts.format_limit,
4152 'listformats': opts.listformats,
4153 'outtmpl': ((opts.outtmpl is not None and opts.outtmpl.decode(preferredencoding()))
4154 or (opts.format == '-1' and opts.usetitle and u'%(stitle)s-%(id)s-%(format)s.%(ext)s')
4155 or (opts.format == '-1' and opts.useliteral and u'%(title)s-%(id)s-%(format)s.%(ext)s')
4156 or (opts.format == '-1' and u'%(id)s-%(format)s.%(ext)s')
4157 or (opts.usetitle and opts.autonumber and u'%(autonumber)s-%(stitle)s-%(id)s.%(ext)s')
4158 or (opts.useliteral and opts.autonumber and u'%(autonumber)s-%(title)s-%(id)s.%(ext)s')
4159 or (opts.usetitle and u'%(stitle)s-%(id)s.%(ext)s')
4160 or (opts.useliteral and u'%(title)s-%(id)s.%(ext)s')
4161 or (opts.autonumber and u'%(autonumber)s-%(id)s.%(ext)s')
4162 or u'%(id)s.%(ext)s'),
4163 'ignoreerrors': opts.ignoreerrors,
4164 'ratelimit': opts.ratelimit,
4165 'nooverwrites': opts.nooverwrites,
4166 'retries': opts.retries,
4167 'continuedl': opts.continue_dl,
4168 'noprogress': opts.noprogress,
4169 'playliststart': opts.playliststart,
4170 'playlistend': opts.playlistend,
4171 'logtostderr': opts.outtmpl == '-',
4172 'consoletitle': opts.consoletitle,
4173 'nopart': opts.nopart,
4174 'updatetime': opts.updatetime,
4175 'writedescription': opts.writedescription,
4176 'writeinfojson': opts.writeinfojson,
4177 'matchtitle': opts.matchtitle,
4178 'rejecttitle': opts.rejecttitle,
4180 for extractor in extractors:
4181 fd.add_info_extractor(extractor)
4184 if opts.extractaudio:
4185 fd.add_post_processor(FFmpegExtractAudioPP(preferredcodec=opts.audioformat, preferredquality=opts.audioquality, keepvideo=opts.keepvideo))
4188 if opts.update_self:
4189 updateSelf(fd, sys.argv[0])
4192 if len(all_urls) < 1:
4193 if not opts.update_self:
4194 parser.error(u'you must provide at least one URL')
4197 retcode = fd.download(all_urls)
4199 # Dump cookie jar if requested
4200 if opts.cookiefile is not None:
4203 except (IOError, OSError), err:
4204 sys.exit(u'ERROR: unable to save cookie jar')
4209 if __name__ == '__main__':
4212 except DownloadError:
4214 except SameFileError:
4215 sys.exit(u'ERROR: fixed output name but more than one file to download')
4216 except KeyboardInterrupt:
4217 sys.exit(u'\nERROR: Interrupted by user')
4219 # vim: set ts=4 sw=4 sts=4 noet ai si filetype=python: