mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[bigflix] Extract all formats
This commit is contained in:
parent
15b1c6656f
commit
6e99d5762a
@ -1,15 +1,16 @@
|
|||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from base64 import b64decode
|
import base64
|
||||||
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..compat import compat_urllib_parse_unquote
|
from ..compat import compat_urllib_parse_unquote
|
||||||
|
|
||||||
|
|
||||||
class BigflixIE(InfoExtractor):
|
class BigflixIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?bigflix\.com/.*/(?P<id>[0-9]+)'
|
_VALID_URL = r'https?://(?:www\.)?bigflix\.com/.+/(?P<id>[0-9]+)'
|
||||||
_TEST = {
|
_TESTS = [{
|
||||||
'url': 'http://www.bigflix.com/Hindi-movies/Action-movies/Singham-Returns/16537',
|
'url': 'http://www.bigflix.com/Hindi-movies/Action-movies/Singham-Returns/16537',
|
||||||
'md5': 'ec76aa9b1129e2e5b301a474e54fab74',
|
'md5': 'ec76aa9b1129e2e5b301a474e54fab74',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
@ -18,7 +19,20 @@ class BigflixIE(InfoExtractor):
|
|||||||
'title': 'Singham Returns',
|
'title': 'Singham Returns',
|
||||||
'description': 'md5:3d2ba5815f14911d5cc6a501ae0cf65d',
|
'description': 'md5:3d2ba5815f14911d5cc6a501ae0cf65d',
|
||||||
}
|
}
|
||||||
|
}, {
|
||||||
|
# multiple formats
|
||||||
|
'url': 'http://www.bigflix.com/Tamil-movies/Drama-movies/Madarasapatinam/16070',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '16070',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Madarasapatinam',
|
||||||
|
'description': 'md5:63b9b8ed79189c6f0418c26d9a3452ca',
|
||||||
|
'formats': 'mincount:2',
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
'skip_download': True,
|
||||||
}
|
}
|
||||||
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
@ -29,14 +43,28 @@ def _real_extract(self, url):
|
|||||||
r'<div[^>]+class=["\']pagetitle["\'][^>]*>(.+?)</div>',
|
r'<div[^>]+class=["\']pagetitle["\'][^>]*>(.+?)</div>',
|
||||||
webpage, 'title')
|
webpage, 'title')
|
||||||
|
|
||||||
video_url = b64decode(compat_urllib_parse_unquote(self._search_regex(
|
def decode_url(quoted_b64_url):
|
||||||
r'file=([^&]+)', webpage, 'video url')).encode('ascii')).decode('utf-8')
|
return base64.b64decode(compat_urllib_parse_unquote(
|
||||||
|
quoted_b64_url)).encode('ascii').decode('utf-8')
|
||||||
|
|
||||||
|
formats = [{
|
||||||
|
'url': decode_url(encoded_url),
|
||||||
|
'format_id': '%sp' % height,
|
||||||
|
'height': int(height),
|
||||||
|
} for height, encoded_url in re.findall(
|
||||||
|
r'ContentURL_(\d{3,4})[pP][^=]+=([^&]+)', webpage)]
|
||||||
|
|
||||||
|
if not formats:
|
||||||
|
formats.append({
|
||||||
|
'url': decode_url(self._search_regex(
|
||||||
|
r'file=([^&]+)', webpage, 'video url')),
|
||||||
|
})
|
||||||
|
|
||||||
description = self._html_search_meta('description', webpage)
|
description = self._html_search_meta('description', webpage)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': title,
|
'title': title,
|
||||||
'url': video_url,
|
|
||||||
'description': description,
|
'description': description,
|
||||||
|
'formats': formats
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user