[noco] Add support for noco.tv (Closes #2712)
This commit is contained in:
parent
e6c6d10d99
commit
1bf3210816
2 changed files with 106 additions and 0 deletions
|
@ -181,6 +181,7 @@ from .nfb import NFBIE
|
||||||
from .nhl import NHLIE, NHLVideocenterIE
|
from .nhl import NHLIE, NHLVideocenterIE
|
||||||
from .niconico import NiconicoIE
|
from .niconico import NiconicoIE
|
||||||
from .ninegag import NineGagIE
|
from .ninegag import NineGagIE
|
||||||
|
from .noco import NocoIE
|
||||||
from .normalboots import NormalbootsIE
|
from .normalboots import NormalbootsIE
|
||||||
from .novamov import NovaMovIE
|
from .novamov import NovaMovIE
|
||||||
from .nowness import NownessIE
|
from .nowness import NownessIE
|
||||||
|
|
105
youtube_dl/extractor/noco.py
Normal file
105
youtube_dl/extractor/noco.py
Normal file
|
@ -0,0 +1,105 @@
|
||||||
|
# encoding: utf-8
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import re
|
||||||
|
|
||||||
|
from .common import InfoExtractor
|
||||||
|
from ..utils import (
|
||||||
|
ExtractorError,
|
||||||
|
unified_strdate,
|
||||||
|
compat_str,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class NocoIE(InfoExtractor):
|
||||||
|
_VALID_URL = r'http://(?:(?:www\.)?noco\.tv/emission/|player\.noco\.tv/\?idvideo=)(?P<id>\d+)'
|
||||||
|
|
||||||
|
_TEST = {
|
||||||
|
'url': 'http://noco.tv/emission/11538/nolife/ami-ami-idol-hello-france/',
|
||||||
|
'md5': '0a993f0058ddbcd902630b2047ef710e',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '11538',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Ami Ami Idol - Hello! France',
|
||||||
|
'description': 'md5:6fcfdbbb73aee107a6b7553cefbcbeae',
|
||||||
|
'upload_date': '20140412',
|
||||||
|
'uploader': 'Nolife',
|
||||||
|
'uploader_id': 'NOL',
|
||||||
|
'duration': 2851.2,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
mobj = re.match(self._VALID_URL, url)
|
||||||
|
video_id = mobj.group('id')
|
||||||
|
|
||||||
|
medias = self._download_json(
|
||||||
|
'http://api.noco.tv/1.0/video/medias/%s' % video_id, video_id, 'Downloading video JSON')
|
||||||
|
|
||||||
|
formats = []
|
||||||
|
|
||||||
|
for fmt in medias['fr']['video_list']['default']['quality_list']:
|
||||||
|
format_id = fmt['quality_key']
|
||||||
|
|
||||||
|
file = self._download_json(
|
||||||
|
'http://api.noco.tv/1.0/video/file/%s/fr/%s' % (format_id.lower(), video_id),
|
||||||
|
video_id, 'Downloading %s video JSON' % format_id)
|
||||||
|
|
||||||
|
file_url = file['file']
|
||||||
|
if not file_url:
|
||||||
|
continue
|
||||||
|
|
||||||
|
if file_url == 'forbidden':
|
||||||
|
raise ExtractorError(
|
||||||
|
'%s returned error: %s - %s' % (
|
||||||
|
self.IE_NAME, file['popmessage']['title'], file['popmessage']['message']),
|
||||||
|
expected=True)
|
||||||
|
|
||||||
|
formats.append({
|
||||||
|
'url': file_url,
|
||||||
|
'format_id': format_id,
|
||||||
|
'width': fmt['res_width'],
|
||||||
|
'height': fmt['res_lines'],
|
||||||
|
'abr': fmt['audiobitrate'],
|
||||||
|
'vbr': fmt['videobitrate'],
|
||||||
|
'filesize': fmt['filesize'],
|
||||||
|
'format_note': fmt['quality_name'],
|
||||||
|
'preference': fmt['priority'],
|
||||||
|
})
|
||||||
|
|
||||||
|
self._sort_formats(formats)
|
||||||
|
|
||||||
|
show = self._download_json(
|
||||||
|
'http://api.noco.tv/1.0/shows/show/%s' % video_id, video_id, 'Downloading show JSON')[0]
|
||||||
|
|
||||||
|
upload_date = unified_strdate(show['indexed'])
|
||||||
|
uploader = show['partner_name']
|
||||||
|
uploader_id = show['partner_key']
|
||||||
|
duration = show['duration_ms'] / 1000.0
|
||||||
|
thumbnail = show['screenshot']
|
||||||
|
|
||||||
|
episode = show.get('show_TT') or show.get('show_OT')
|
||||||
|
family = show.get('family_TT') or show.get('family_OT')
|
||||||
|
episode_number = show.get('episode_number')
|
||||||
|
|
||||||
|
title = ''
|
||||||
|
if family:
|
||||||
|
title += family
|
||||||
|
if episode_number:
|
||||||
|
title += ' #' + compat_str(episode_number)
|
||||||
|
if episode:
|
||||||
|
title += ' - ' + episode
|
||||||
|
|
||||||
|
description = show.get('show_resume') or show.get('family_resume')
|
||||||
|
|
||||||
|
return {
|
||||||
|
'id': video_id,
|
||||||
|
'title': title,
|
||||||
|
'description': description,
|
||||||
|
'thumbnail': thumbnail,
|
||||||
|
'upload_date': upload_date,
|
||||||
|
'uploader': uploader,
|
||||||
|
'uploader_id': uploader_id,
|
||||||
|
'duration': duration,
|
||||||
|
'formats': formats,
|
||||||
|
}
|
Loading…
Reference in a new issue