aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-02-04 16:33:06 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-02-04 16:33:06 +0100
commitacf1555d76f55c05516e23e45262dfd95df77314 (patch)
treeacdfe38cb5dc296c55d9333188e7e65ecdf6a820
parent22e7f1a6ec4d15434544a1e5ff440b54af9cc0c6 (diff)
parent3c493256584fa5563df1e7963a40cb82ba1d1d01 (diff)
downloadyoutube-dl-acf1555d76f55c05516e23e45262dfd95df77314.tar.xz
Merge remote-tracking branch 'origin/master'
-rw-r--r--youtube_dl/extractor/__init__.py1
-rw-r--r--youtube_dl/extractor/lifenews.py2
-rw-r--r--youtube_dl/extractor/mooshare.py114
3 files changed, 116 insertions, 1 deletions
diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py
index a8d5a9cb8..ae702240b 100644
--- a/youtube_dl/extractor/__init__.py
+++ b/youtube_dl/extractor/__init__.py
@@ -127,6 +127,7 @@ from .mit import TechTVMITIE, MITIE
from .mixcloud import MixcloudIE
from .mpora import MporaIE
from .mofosex import MofosexIE
+from .mooshare import MooshareIE
from .mtv import (
MTVIE,
MTVIggyIE,
diff --git a/youtube_dl/extractor/lifenews.py b/youtube_dl/extractor/lifenews.py
index 4e4035b76..051259857 100644
--- a/youtube_dl/extractor/lifenews.py
+++ b/youtube_dl/extractor/lifenews.py
@@ -31,7 +31,7 @@ class LifeNewsIE(InfoExtractor):
webpage = self._download_webpage('http://lifenews.ru/mobile/news/%s' % video_id, video_id, 'Downloading page')
video_url = self._html_search_regex(
- r'<video.*?src="([^"]+)"></video>', webpage, 'video URL')
+ r'<video.*?src="([^"]+)".*?></video>', webpage, 'video URL')
thumbnail = self._html_search_regex(
r'<video.*?poster="([^"]+)".*?"></video>', webpage, 'video thumbnail')
diff --git a/youtube_dl/extractor/mooshare.py b/youtube_dl/extractor/mooshare.py
new file mode 100644
index 000000000..909d21a99
--- /dev/null
+++ b/youtube_dl/extractor/mooshare.py
@@ -0,0 +1,114 @@
+from __future__ import unicode_literals
+
+import re
+import time
+
+from .common import InfoExtractor
+from ..utils import (
+ ExtractorError,
+ compat_urllib_request,
+ compat_urllib_parse,
+)
+
+
+class MooshareIE(InfoExtractor):
+ IE_NAME = 'mooshare'
+ IE_DESC = 'Mooshare.biz'
+ _VALID_URL = r'http://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):
+ mobj = re.match(self._VALID_URL, url)
+ video_id = mobj.group('id')
+
+ page = self._download_webpage(url, video_id, 'Downloading page')
+
+ if re.search(r'>Video Not Found or Deleted<', page) is not None:
+ raise ExtractorError(u'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 = compat_urllib_request.Request(
+ 'http://mooshare.biz/8dqtk4bjbp8g', compat_urllib_parse.urlencode(download_form))
+ request.add_header('Content-Type', 'application/x-www-form-urlencoded')
+
+ self.to_screen('%s: Waiting for timeout' % video_id)
+ time.sleep(5)
+
+ 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,
+ }