Merge remote-tracking branch 'rg3/master'
This commit is contained in:
commit
ac56503682
2
AUTHORS
2
AUTHORS
@ -137,3 +137,5 @@ Zach Bruggeman
|
|||||||
Tjark Saul
|
Tjark Saul
|
||||||
slangangular
|
slangangular
|
||||||
Behrouz Abbasi
|
Behrouz Abbasi
|
||||||
|
ngld
|
||||||
|
nyuszika7h
|
||||||
|
@ -272,6 +272,7 @@ The `-o` option allows users to indicate a template for the output file names. T
|
|||||||
- `autonumber`: The sequence will be replaced by a five-digit number that will be increased with each download, starting at zero.
|
- `autonumber`: The sequence will be replaced by a five-digit number that will be increased with each download, starting at zero.
|
||||||
- `playlist`: The name or the id of the playlist that contains the video.
|
- `playlist`: The name or the id of the playlist that contains the video.
|
||||||
- `playlist_index`: The index of the video in the playlist, a five-digit number.
|
- `playlist_index`: The index of the video in the playlist, a five-digit number.
|
||||||
|
- `format_id`: The sequence will be replaced by the format code specified by `--format`.
|
||||||
|
|
||||||
The current default template is `%(title)s-%(id)s.%(ext)s`.
|
The current default template is `%(title)s-%(id)s.%(ext)s`.
|
||||||
|
|
||||||
|
@ -35,6 +35,7 @@ class FragmentFD(FileDownloader):
|
|||||||
'quiet': True,
|
'quiet': True,
|
||||||
'noprogress': True,
|
'noprogress': True,
|
||||||
'ratelimit': self.params.get('ratelimit', None),
|
'ratelimit': self.params.get('ratelimit', None),
|
||||||
|
'retries': self.params.get('retries', 0),
|
||||||
'test': self.params.get('test', False),
|
'test': self.params.get('test', False),
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@ -32,6 +32,8 @@ class HlsFD(FileDownloader):
|
|||||||
for opt in (ffpp.executable, '-y', '-i', url, '-f', 'mp4', '-c', 'copy', '-bsf:a', 'aac_adtstoasc')]
|
for opt in (ffpp.executable, '-y', '-i', url, '-f', 'mp4', '-c', 'copy', '-bsf:a', 'aac_adtstoasc')]
|
||||||
args.append(encodeFilename(tmpfilename, True))
|
args.append(encodeFilename(tmpfilename, True))
|
||||||
|
|
||||||
|
self._debug_cmd(args)
|
||||||
|
|
||||||
retval = subprocess.call(args)
|
retval = subprocess.call(args)
|
||||||
if retval == 0:
|
if retval == 0:
|
||||||
fsize = os.path.getsize(encodeFilename(tmpfilename))
|
fsize = os.path.getsize(encodeFilename(tmpfilename))
|
||||||
|
@ -242,6 +242,10 @@ from .imdb import (
|
|||||||
)
|
)
|
||||||
from .imgur import ImgurIE
|
from .imgur import ImgurIE
|
||||||
from .ina import InaIE
|
from .ina import InaIE
|
||||||
|
from .indavideo import (
|
||||||
|
IndavideoIE,
|
||||||
|
IndavideoEmbedIE,
|
||||||
|
)
|
||||||
from .infoq import InfoQIE
|
from .infoq import InfoQIE
|
||||||
from .instagram import InstagramIE, InstagramUserIE
|
from .instagram import InstagramIE, InstagramUserIE
|
||||||
from .internetvideoarchive import InternetVideoArchiveIE
|
from .internetvideoarchive import InternetVideoArchiveIE
|
||||||
@ -491,6 +495,7 @@ from .rtl2 import RTL2IE
|
|||||||
from .rtp import RTPIE
|
from .rtp import RTPIE
|
||||||
from .rts import RTSIE
|
from .rts import RTSIE
|
||||||
from .rtve import RTVEALaCartaIE, RTVELiveIE, RTVEInfantilIE
|
from .rtve import RTVEALaCartaIE, RTVELiveIE, RTVEInfantilIE
|
||||||
|
from .rtvnh import RTVNHIE
|
||||||
from .ruhd import RUHDIE
|
from .ruhd import RUHDIE
|
||||||
from .rutube import (
|
from .rutube import (
|
||||||
RutubeIE,
|
RutubeIE,
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import (
|
from ..utils import parse_duration
|
||||||
xpath_text,
|
|
||||||
parse_duration,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class DHMIE(InfoExtractor):
|
class DHMIE(InfoExtractor):
|
||||||
|
@ -53,7 +53,7 @@ class FunnyOrDieIE(InfoExtractor):
|
|||||||
for bitrate in bitrates:
|
for bitrate in bitrates:
|
||||||
for link in links:
|
for link in links:
|
||||||
formats.append({
|
formats.append({
|
||||||
'url': '%s%d.%s' % (link[0], bitrate, link[1]),
|
'url': self._proto_relative_url('%s%d.%s' % (link[0], bitrate, link[1])),
|
||||||
'format_id': '%s-%d' % (link[1], bitrate),
|
'format_id': '%s-%d' % (link[1], bitrate),
|
||||||
'vbr': bitrate,
|
'vbr': bitrate,
|
||||||
})
|
})
|
||||||
|
142
youtube_dl/extractor/indavideo.py
Normal file
142
youtube_dl/extractor/indavideo.py
Normal file
@ -0,0 +1,142 @@
|
|||||||
|
# coding: utf-8
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from .common import InfoExtractor
|
||||||
|
from ..utils import (
|
||||||
|
int_or_none,
|
||||||
|
parse_age_limit,
|
||||||
|
parse_iso8601,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class IndavideoEmbedIE(InfoExtractor):
|
||||||
|
_VALID_URL = r'https?://(?:(?:embed\.)?indavideo\.hu/player/video/|assets\.indavideo\.hu/swf/player\.swf\?.*\b(?:v(?:ID|id))=)(?P<id>[\da-f]+)'
|
||||||
|
_TESTS = [{
|
||||||
|
'url': 'http://indavideo.hu/player/video/1bdc3c6d80/',
|
||||||
|
'md5': 'f79b009c66194acacd40712a6778acfa',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '1837039',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Cicatánc',
|
||||||
|
'description': '',
|
||||||
|
'thumbnail': 're:^https?://.*\.jpg$',
|
||||||
|
'uploader': 'cukiajanlo',
|
||||||
|
'uploader_id': '83729',
|
||||||
|
'timestamp': 1439193826,
|
||||||
|
'upload_date': '20150810',
|
||||||
|
'duration': 72,
|
||||||
|
'age_limit': 0,
|
||||||
|
'tags': ['tánc', 'cica', 'cuki', 'cukiajanlo', 'newsroom'],
|
||||||
|
},
|
||||||
|
}, {
|
||||||
|
'url': 'http://embed.indavideo.hu/player/video/1bdc3c6d80?autostart=1&hide=1',
|
||||||
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
'url': 'http://assets.indavideo.hu/swf/player.swf?v=fe25e500&vID=1bdc3c6d80&autostart=1&hide=1&i=1',
|
||||||
|
'only_matching': True,
|
||||||
|
}]
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
video_id = self._match_id(url)
|
||||||
|
|
||||||
|
video = self._download_json(
|
||||||
|
'http://amfphp.indavideo.hu/SYm0json.php/player.playerHandler.getVideoData/%s' % video_id,
|
||||||
|
video_id)['data']
|
||||||
|
|
||||||
|
title = video['title']
|
||||||
|
|
||||||
|
video_urls = video.get('video_files', [])
|
||||||
|
video_file = video.get('video_file')
|
||||||
|
if video:
|
||||||
|
video_urls.append(video_file)
|
||||||
|
video_urls = list(set(video_urls))
|
||||||
|
|
||||||
|
video_prefix = video_urls[0].rsplit('/', 1)[0]
|
||||||
|
|
||||||
|
for flv_file in video.get('flv_files', []):
|
||||||
|
flv_url = '%s/%s' % (video_prefix, flv_file)
|
||||||
|
if flv_url not in video_urls:
|
||||||
|
video_urls.append(flv_url)
|
||||||
|
|
||||||
|
formats = [{
|
||||||
|
'url': video_url,
|
||||||
|
'height': self._search_regex(r'\.(\d{3,4})\.mp4$', video_url, 'height', default=None),
|
||||||
|
} for video_url in video_urls]
|
||||||
|
self._sort_formats(formats)
|
||||||
|
|
||||||
|
timestamp = video.get('date')
|
||||||
|
if timestamp:
|
||||||
|
# upload date is in CEST
|
||||||
|
timestamp = parse_iso8601(timestamp + ' +0200', ' ')
|
||||||
|
|
||||||
|
thumbnails = [{
|
||||||
|
'url': self._proto_relative_url(thumbnail)
|
||||||
|
} for thumbnail in video.get('thumbnails', [])]
|
||||||
|
|
||||||
|
tags = [tag['title'] for tag in video.get('tags', [])]
|
||||||
|
|
||||||
|
return {
|
||||||
|
'id': video.get('id') or video_id,
|
||||||
|
'title': title,
|
||||||
|
'description': video.get('description'),
|
||||||
|
'thumbnails': thumbnails,
|
||||||
|
'uploader': video.get('user_name'),
|
||||||
|
'uploader_id': video.get('user_id'),
|
||||||
|
'timestamp': timestamp,
|
||||||
|
'duration': int_or_none(video.get('length')),
|
||||||
|
'age_limit': parse_age_limit(video.get('age_limit')),
|
||||||
|
'tags': tags,
|
||||||
|
'formats': formats,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class IndavideoIE(InfoExtractor):
|
||||||
|
_VALID_URL = r'https?://(?:.+?\.)?indavideo\.hu/video/(?P<id>[^/#?]+)'
|
||||||
|
_TESTS = [{
|
||||||
|
'url': 'http://indavideo.hu/video/Vicces_cica_1',
|
||||||
|
'md5': '8c82244ba85d2a2310275b318eb51eac',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '1335611',
|
||||||
|
'display_id': 'Vicces_cica_1',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Vicces cica',
|
||||||
|
'description': 'Játszik a tablettel. :D',
|
||||||
|
'thumbnail': 're:^https?://.*\.jpg$',
|
||||||
|
'uploader': 'Jet_Pack',
|
||||||
|
'uploader_id': '491217',
|
||||||
|
'timestamp': 1390821212,
|
||||||
|
'upload_date': '20140127',
|
||||||
|
'duration': 7,
|
||||||
|
'age_limit': 0,
|
||||||
|
'tags': ['vicces', 'macska', 'cica', 'ügyes', 'nevetés', 'játszik', 'Cukiság', 'Jet_Pack'],
|
||||||
|
},
|
||||||
|
}, {
|
||||||
|
'url': 'http://index.indavideo.hu/video/2015_0728_beregszasz',
|
||||||
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
'url': 'http://auto.indavideo.hu/video/Sajat_utanfutoban_a_kis_tacsko',
|
||||||
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
'url': 'http://erotika.indavideo.hu/video/Amator_tini_punci',
|
||||||
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
'url': 'http://film.indavideo.hu/video/f_hrom_nagymamm_volt',
|
||||||
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
'url': 'http://palyazat.indavideo.hu/video/Embertelen_dal_Dodgem_egyuttes',
|
||||||
|
'only_matching': True,
|
||||||
|
}]
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
display_id = self._match_id(url)
|
||||||
|
|
||||||
|
webpage = self._download_webpage(url, display_id)
|
||||||
|
embed_url = self._search_regex(
|
||||||
|
r'<link[^>]+rel="video_src"[^>]+href="(.+?)"', webpage, 'embed url')
|
||||||
|
|
||||||
|
return {
|
||||||
|
'_type': 'url_transparent',
|
||||||
|
'ie_key': 'IndavideoEmbed',
|
||||||
|
'url': embed_url,
|
||||||
|
'display_id': display_id,
|
||||||
|
}
|
@ -201,7 +201,7 @@ class IqiyiIE(InfoExtractor):
|
|||||||
return raw_data
|
return raw_data
|
||||||
|
|
||||||
def get_enc_key(self, swf_url, video_id):
|
def get_enc_key(self, swf_url, video_id):
|
||||||
enc_key = '3601ba290e4f4662848c710e2122007e' # last update at 2015-08-10 for Zombie
|
enc_key = '3601ba290e4f4662848c710e2122007e' # last update at 2015-08-10 for Zombie
|
||||||
return enc_key
|
return enc_key
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
47
youtube_dl/extractor/rtvnh.py
Normal file
47
youtube_dl/extractor/rtvnh.py
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
# coding: utf-8
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from .common import InfoExtractor
|
||||||
|
from ..utils import ExtractorError
|
||||||
|
|
||||||
|
|
||||||
|
class RTVNHIE(InfoExtractor):
|
||||||
|
_VALID_URL = r'https?://(?:www\.)?rtvnh\.nl/video/(?P<id>[0-9]+)'
|
||||||
|
_TEST = {
|
||||||
|
'url': 'http://www.rtvnh.nl/video/131946',
|
||||||
|
'md5': '6e1d0ab079e2a00b6161442d3ceacfc1',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '131946',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Grote zoektocht in zee bij Zandvoort naar vermiste vrouw',
|
||||||
|
'thumbnail': 're:^https?:.*\.jpg$'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
video_id = self._match_id(url)
|
||||||
|
|
||||||
|
meta = self._parse_json(self._download_webpage(
|
||||||
|
'http://www.rtvnh.nl/video/json?m=' + video_id, video_id), video_id)
|
||||||
|
|
||||||
|
status = meta.get('status')
|
||||||
|
if status != 200:
|
||||||
|
raise ExtractorError(
|
||||||
|
'%s returned error code %d' % (self.IE_NAME, status), expected=True)
|
||||||
|
|
||||||
|
formats = self._extract_smil_formats(
|
||||||
|
'http://www.rtvnh.nl/video/smil?m=' + video_id, video_id, fatal=False)
|
||||||
|
|
||||||
|
for item in meta['source']['fb']:
|
||||||
|
if item.get('type') == 'hls':
|
||||||
|
formats.extend(self._extract_m3u8_formats(
|
||||||
|
item['file'], video_id, ext='mp4', entry_protocol='m3u8_native'))
|
||||||
|
elif item.get('type') == '':
|
||||||
|
formats.append({'url': item['file']})
|
||||||
|
|
||||||
|
return {
|
||||||
|
'id': video_id,
|
||||||
|
'title': meta['title'].strip(),
|
||||||
|
'thumbnail': meta.get('image'),
|
||||||
|
'formats': formats
|
||||||
|
}
|
@ -108,7 +108,11 @@ class ThePlatformIE(InfoExtractor):
|
|||||||
config_url = config_url.replace('swf/', 'config/')
|
config_url = config_url.replace('swf/', 'config/')
|
||||||
config_url = config_url.replace('onsite/', 'onsite/config/')
|
config_url = config_url.replace('onsite/', 'onsite/config/')
|
||||||
config = self._download_json(config_url, video_id, 'Downloading config')
|
config = self._download_json(config_url, video_id, 'Downloading config')
|
||||||
smil_url = config['releaseUrl'] + '&format=SMIL&formats=MPEG4&manifest=f4m'
|
if 'releaseUrl' in config:
|
||||||
|
release_url = config['releaseUrl']
|
||||||
|
else:
|
||||||
|
release_url = 'http://link.theplatform.com/s/%s?mbr=true' % path
|
||||||
|
smil_url = release_url + '&format=SMIL&formats=MPEG4&manifest=f4m'
|
||||||
else:
|
else:
|
||||||
smil_url = 'http://link.theplatform.com/s/%s/meta.smil?format=smil&mbr=true' % path
|
smil_url = 'http://link.theplatform.com/s/%s/meta.smil?format=smil&mbr=true' % path
|
||||||
|
|
||||||
|
@ -1,12 +1,6 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import (
|
|
||||||
xpath_text,
|
|
||||||
xpath_with_ns,
|
|
||||||
int_or_none,
|
|
||||||
float_or_none,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class TweakersIE(InfoExtractor):
|
class TweakersIE(InfoExtractor):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user