compat_urllib_request.Request [downloader/dash] Use sanitized_Request [downloader/http] Use sanitized_Request [atresplayer] Use sanitized_Request [bambuser] Use sanitized_Request [bliptv] Use sanitized_Request [brightcove] Use sanitized_Request [cbs] Use sanitized_Request [ceskatelevize] Use sanitized_Request [collegerama] Use sanitized_Request [extractor/common] Use sanitized_Request [crunchyroll] Use sanitized_Request [dailymotion] Use sanitized_Request [dcn] Use sanitized_Request [dramafever] Use sanitized_Request [dumpert] Use sanitized_Request [eitb] Use sanitized_Request [escapist] Use sanitized_Request [everyonesmixtape] Use sanitized_Request [extremetube] Use sanitized_Request [facebook] Use sanitized_Request [fc2] Use sanitized_Request [flickr] Use sanitized_Request [4tube] Use sanitized_Request [gdcvault] Use sanitized_Request [extractor/generic] Use sanitized_Request [hearthisat] Use sanitized_Request [hotnewhiphop] Use sanitized_Request [hypem] Use sanitized_Request [iprima] Use sanitized_Request [ivi] Use sanitized_Request [keezmovies] Use sanitized_Request [letv] Use sanitized_Request [lynda] Use sanitized_Request [metacafe] Use sanitized_Request [minhateca] Use sanitized_Request [miomio] Use sanitized_Request [meovideo] Use sanitized_Request [mofosex] Use sanitized_Request [moniker] Use sanitized_Request [mooshare] Use sanitized_Request [movieclips] Use sanitized_Request [mtv] Use sanitized_Request [myvideo] Use sanitized_Request [neteasemusic] Use sanitized_Request [nfb] Use sanitized_Request [niconico] Use sanitized_Request [noco] Use sanitized_Request [nosvideo] Use sanitized_Request [novamov] Use sanitized_Request [nowness] Use sanitized_Request [nuvid] Use sanitized_Request [played] Use sanitized_Request [pluralsight] Use sanitized_Request [pornhub] Use sanitized_Request [pornotube] Use sanitized_Request [primesharetv] Use sanitized_Request [promptfile] Use sanitized_Request [qqmusic] Use sanitized_Request [rtve] Use sanitized_Request [safari] Use sanitized_Request [sandia] Use sanitized_Request [shared] Use sanitized_Request [sharesix] Use sanitized_Request [sina] Use sanitized_Request [smotri] Use sanitized_Request [sohu] Use sanitized_Request [spankwire] Use sanitized_Request [sportdeutschland] Use sanitized_Request [streamcloud] Use sanitized_Request [streamcz] Use sanitized_Request [tapely] Use sanitized_Request [tube8] Use sanitized_Request [tubitv] Use sanitized_Request [twitch] Use sanitized_Request [twitter] Use sanitized_Request [udemy] Use sanitized_Request [vbox7] Use sanitized_Request [veoh] Use sanitized_Request [vessel] Use sanitized_Request [vevo] Use sanitized_Request [viddler] Use sanitized_Request [videomega] Use sanitized_Request [viewvster] Use sanitized_Request [viki] Use sanitized_Request [vk] Use sanitized_Request [vodlocker] Use sanitized_Request [voicerepublic] Use sanitized_Request [wistia] Use sanitized_Request [xfileshare] Use sanitized_Request [xtube] Use sanitized_Request [xvideos] Use sanitized_Request [yandexmusic] Use sanitized_Request [youku] Use sanitized_Request [youporn] Use sanitized_Request [youtube] Use sanitized_Request [patreon] Use sanitized_Request [extractor/common] Remove unused import [nfb] PEP 8
		
			
				
	
	
		
			111 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			111 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals
 | |
| 
 | |
| import re
 | |
| 
 | |
| from .common import InfoExtractor
 | |
| from ..compat import compat_urllib_parse
 | |
| from ..utils import (
 | |
|     ExtractorError,
 | |
|     sanitized_Request,
 | |
| )
 | |
| 
 | |
| 
 | |
| class MooshareIE(InfoExtractor):
 | |
|     IE_NAME = 'mooshare'
 | |
|     IE_DESC = 'Mooshare.biz'
 | |
|     _VALID_URL = r'http://(?:www\.)?mooshare\.biz/(?P<id>[\da-z]{12})'
 | |
| 
 | |
|     _TESTS = [
 | |
|         {
 | |
|             'url': 'http://mooshare.biz/8dqtk4bjbp8g',
 | |
|             'md5': '4e14f9562928aecd2e42c6f341c8feba',
 | |
|             'info_dict': {
 | |
|                 'id': '8dqtk4bjbp8g',
 | |
|                 'ext': 'mp4',
 | |
|                 'title': 'Comedy Football 2011 - (part 1-2)',
 | |
|                 'duration': 893,
 | |
|             },
 | |
|         },
 | |
|         {
 | |
|             'url': 'http://mooshare.biz/aipjtoc4g95j',
 | |
|             'info_dict': {
 | |
|                 'id': 'aipjtoc4g95j',
 | |
|                 'ext': 'mp4',
 | |
|                 'title': 'Orange Caramel  Dashing Through the Snow',
 | |
|                 'duration': 212,
 | |
|             },
 | |
|             'params': {
 | |
|                 # rtmp download
 | |
|                 'skip_download': True,
 | |
|             }
 | |
|         }
 | |
|     ]
 | |
| 
 | |
|     def _real_extract(self, url):
 | |
|         video_id = self._match_id(url)
 | |
|         page = self._download_webpage(url, video_id, 'Downloading page')
 | |
| 
 | |
|         if re.search(r'>Video Not Found or Deleted<', page) is not None:
 | |
|             raise ExtractorError('Video %s does not exist' % video_id, expected=True)
 | |
| 
 | |
|         hash_key = self._html_search_regex(r'<input type="hidden" name="hash" value="([^"]+)">', page, 'hash')
 | |
|         title = self._html_search_regex(r'(?m)<div class="blockTitle">\s*<h2>Watch ([^<]+)</h2>', page, 'title')
 | |
| 
 | |
|         download_form = {
 | |
|             'op': 'download1',
 | |
|             'id': video_id,
 | |
|             'hash': hash_key,
 | |
|         }
 | |
| 
 | |
|         request = sanitized_Request(
 | |
|             'http://mooshare.biz/%s' % video_id, compat_urllib_parse.urlencode(download_form))
 | |
|         request.add_header('Content-Type', 'application/x-www-form-urlencoded')
 | |
| 
 | |
|         self._sleep(5, video_id)
 | |
| 
 | |
|         video_page = self._download_webpage(request, video_id, 'Downloading video page')
 | |
| 
 | |
|         thumbnail = self._html_search_regex(r'image:\s*"([^"]+)",', video_page, 'thumbnail', fatal=False)
 | |
|         duration_str = self._html_search_regex(r'duration:\s*"(\d+)",', video_page, 'duration', fatal=False)
 | |
|         duration = int(duration_str) if duration_str is not None else None
 | |
| 
 | |
|         formats = []
 | |
| 
 | |
|         # SD video
 | |
|         mobj = re.search(r'(?m)file:\s*"(?P<url>[^"]+)",\s*provider:', video_page)
 | |
|         if mobj is not None:
 | |
|             formats.append({
 | |
|                 'url': mobj.group('url'),
 | |
|                 'format_id': 'sd',
 | |
|                 'format': 'SD',
 | |
|             })
 | |
| 
 | |
|         # HD video
 | |
|         mobj = re.search(r'\'hd-2\': { file: \'(?P<url>[^\']+)\' },', video_page)
 | |
|         if mobj is not None:
 | |
|             formats.append({
 | |
|                 'url': mobj.group('url'),
 | |
|                 'format_id': 'hd',
 | |
|                 'format': 'HD',
 | |
|             })
 | |
| 
 | |
|         # rtmp video
 | |
|         mobj = re.search(r'(?m)file: "(?P<playpath>[^"]+)",\s*streamer: "(?P<rtmpurl>rtmp://[^"]+)",', video_page)
 | |
|         if mobj is not None:
 | |
|             formats.append({
 | |
|                 'url': mobj.group('rtmpurl'),
 | |
|                 'play_path': mobj.group('playpath'),
 | |
|                 'rtmp_live': False,
 | |
|                 'ext': 'mp4',
 | |
|                 'format_id': 'rtmp',
 | |
|                 'format': 'HD',
 | |
|             })
 | |
| 
 | |
|         return {
 | |
|             'id': video_id,
 | |
|             'title': title,
 | |
|             'thumbnail': thumbnail,
 | |
|             'duration': duration,
 | |
|             'formats': formats,
 | |
|         }
 |