aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Ramos <carlos.ramos1@alu.uclm.es>2014-09-16 20:48:53 +0200
committerCarlos Ramos <carlos.ramos1@alu.uclm.es>2014-09-16 20:48:53 +0200
commit38349518f1292b665905b0c2dc30d33021aaa8cb (patch)
tree1338ef40b6fb6a6600239789cb5410116d4310e1
parent64892c0b79b401ab487c8facb5a646011873194c (diff)
downloadyoutube-dl-38349518f1292b665905b0c2dc30d33021aaa8cb.tar.xz
Added new host: allmyvideos.net
-rw-r--r--youtube_dl/extractor/__init__.py1
-rw-r--r--youtube_dl/extractor/allmyvideos.py51
2 files changed, 52 insertions, 0 deletions
diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py
index e9fceae4c..f715c3310 100644
--- a/youtube_dl/extractor/__init__.py
+++ b/youtube_dl/extractor/__init__.py
@@ -6,6 +6,7 @@ from .aftonbladet import AftonbladetIE
from .anitube import AnitubeIE
from .anysex import AnySexIE
from .aol import AolIE
+from .allmyvideos import AllmyvideosIE
from .allocine import AllocineIE
from .aparat import AparatIE
from .appletrailers import AppleTrailersIE
diff --git a/youtube_dl/extractor/allmyvideos.py b/youtube_dl/extractor/allmyvideos.py
new file mode 100644
index 000000000..4cb559483
--- /dev/null
+++ b/youtube_dl/extractor/allmyvideos.py
@@ -0,0 +1,51 @@
+# coding: utf-8
+from __future__ import unicode_literals
+
+import re
+
+from .common import InfoExtractor
+from ..utils import (
+ compat_urllib_parse,
+ compat_urllib_request,
+)
+
+
+class AllmyvideosIE(InfoExtractor):
+ IE_NAME = 'allmyvideos.net'
+ _VALID_URL = r'https?://allmyvideos\.net/(?P<id>[a-zA-Z0-9_-]+)'
+
+ _TEST = {
+ 'url': 'http://allmyvideos.net/jih3nce3x6wn',
+ 'md5': '8f26c1e7102556a0d7f24306d32c2092',
+ 'info_dict': {
+ 'id': 'jih3nce3x6wn',
+ 'ext': 'mp4',
+ 'title': 'youtube-dl test video',
+ },
+ }
+
+ def _real_extract(self, url):
+ mobj = re.match(self._VALID_URL, url)
+ video_id = mobj.group('id')
+
+ orig_webpage = self._download_webpage(url, video_id)
+ fields = re.findall(r'type="hidden" name="(.+?)"\s* value="?(.+?)">', orig_webpage)
+ data = {}
+ for name, value in fields:
+ data[name] = value
+
+ post = compat_urllib_parse.urlencode(data)
+ headers = {
+ b'Content-Type': b'application/x-www-form-urlencoded',
+ }
+ req = compat_urllib_request.Request(url, post, headers)
+ webpage = self._download_webpage(req, video_id, note='Downloading video page ...')
+
+ #Could be several links with different quality
+ links = re.findall(r'"file" : "?(.+?)",', webpage)
+
+ return {
+ 'id': video_id,
+ 'title': data['fname'][:len(data['fname'])-4], #Remove .mp4 extension
+ 'url': links[len(links)-1] #Choose the higher quality link
+ } \ No newline at end of file