2014-09-16 18:48:53 +00:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2014-09-16 20:56:31 +00:00
|
|
|
import os.path
|
2014-09-16 18:48:53 +00:00
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
from ..utils import (
|
|
|
|
compat_urllib_parse,
|
|
|
|
compat_urllib_request,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2014-09-18 19:37:09 +00:00
|
|
|
class MonikerIE(InfoExtractor):
|
2014-09-18 16:54:03 +00:00
|
|
|
IE_DESC = 'allmyvideos.net and vidspot.net'
|
2014-09-18 16:56:02 +00:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?(?:allmyvideos|vidspot)\.net/(?P<id>[a-zA-Z0-9_-]+)'
|
2014-09-16 18:48:53 +00:00
|
|
|
|
2014-09-18 16:54:03 +00:00
|
|
|
_TESTS = [{
|
2014-09-16 18:48:53 +00:00
|
|
|
'url': 'http://allmyvideos.net/jih3nce3x6wn',
|
2014-09-16 20:56:31 +00:00
|
|
|
'md5': '710883dee1bfc370ecf9fa6a89307c88',
|
2014-09-16 18:48:53 +00:00
|
|
|
'info_dict': {
|
|
|
|
'id': 'jih3nce3x6wn',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'youtube-dl test video',
|
|
|
|
},
|
2014-09-18 16:54:03 +00:00
|
|
|
}, {
|
|
|
|
'url': 'http://vidspot.net/l2ngsmhs8ci5',
|
|
|
|
'md5': '710883dee1bfc370ecf9fa6a89307c88',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'l2ngsmhs8ci5',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'youtube-dl test video',
|
|
|
|
},
|
2014-09-18 16:56:02 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://www.vidspot.net/l2ngsmhs8ci5',
|
|
|
|
'only_matching': True,
|
2014-09-18 16:54:03 +00:00
|
|
|
}]
|
2014-09-16 18:48:53 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2014-09-16 19:05:50 +00:00
|
|
|
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)
|
2014-09-16 20:56:31 +00:00
|
|
|
data = dict(fields)
|
2014-09-16 19:05:50 +00:00
|
|
|
|
|
|
|
post = compat_urllib_parse.urlencode(data)
|
|
|
|
headers = {
|
|
|
|
b'Content-Type': b'application/x-www-form-urlencoded',
|
|
|
|
}
|
|
|
|
req = compat_urllib_request.Request(url, post, headers)
|
2014-09-16 20:56:31 +00:00
|
|
|
webpage = self._download_webpage(
|
|
|
|
req, video_id, note='Downloading video page ...')
|
|
|
|
|
|
|
|
title = os.path.splitext(data['fname'])[0]
|
2014-09-16 19:05:50 +00:00
|
|
|
|
|
|
|
#Could be several links with different quality
|
|
|
|
links = re.findall(r'"file" : "?(.+?)",', webpage)
|
2014-09-16 20:56:31 +00:00
|
|
|
# Assume the links are ordered in quality
|
|
|
|
formats = [{
|
|
|
|
'url': l,
|
|
|
|
'quality': i,
|
|
|
|
} for i, l in enumerate(links)]
|
|
|
|
self._sort_formats(formats)
|
2014-09-16 19:05:50 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
2014-09-16 20:56:31 +00:00
|
|
|
'title': title,
|
|
|
|
'formats': formats,
|
|
|
|
}
|