mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-03 20:47:07 -05:00 
			
		
		
		
	Merge branch 'bliptv' of github.com:remitamine/youtube-dl into remitamine-bliptv
This commit is contained in:
		@@ -62,7 +62,6 @@ from .bet import BetIE
 | 
			
		||||
from .bild import BildIE
 | 
			
		||||
from .bilibili import BiliBiliIE
 | 
			
		||||
from .blinkx import BlinkxIE
 | 
			
		||||
from .bliptv import BlipTVIE, BlipTVUserIE
 | 
			
		||||
from .bloomberg import BloombergIE
 | 
			
		||||
from .bpb import BpbIE
 | 
			
		||||
from .br import BRIE
 | 
			
		||||
@@ -282,6 +281,7 @@ from .jadorecettepub import JadoreCettePubIE
 | 
			
		||||
from .jeuxvideo import JeuxVideoIE
 | 
			
		||||
from .jove import JoveIE
 | 
			
		||||
from .jukebox import JukeboxIE
 | 
			
		||||
from .jwplatform import JWPlatformIE
 | 
			
		||||
from .jpopsukitv import JpopsukiIE
 | 
			
		||||
from .kaltura import KalturaIE
 | 
			
		||||
from .kanalplay import KanalPlayIE
 | 
			
		||||
@@ -336,6 +336,7 @@ from .lynda import (
 | 
			
		||||
from .m6 import M6IE
 | 
			
		||||
from .macgamestore import MacGameStoreIE
 | 
			
		||||
from .mailru import MailRuIE
 | 
			
		||||
from .makertv import MakerTVIE
 | 
			
		||||
from .malemotion import MalemotionIE
 | 
			
		||||
from .mdr import MDRIE
 | 
			
		||||
from .metacafe import MetacafeIE
 | 
			
		||||
 
 | 
			
		||||
@@ -1,290 +0,0 @@
 | 
			
		||||
from __future__ import unicode_literals
 | 
			
		||||
 | 
			
		||||
import re
 | 
			
		||||
 | 
			
		||||
from .common import InfoExtractor
 | 
			
		||||
 | 
			
		||||
from ..compat import compat_urlparse
 | 
			
		||||
from ..utils import (
 | 
			
		||||
    clean_html,
 | 
			
		||||
    int_or_none,
 | 
			
		||||
    parse_iso8601,
 | 
			
		||||
    sanitized_Request,
 | 
			
		||||
    unescapeHTML,
 | 
			
		||||
    xpath_text,
 | 
			
		||||
    xpath_with_ns,
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class BlipTVIE(InfoExtractor):
 | 
			
		||||
    _VALID_URL = r'https?://(?:\w+\.)?blip\.tv/(?:(?:.+-|rss/flash/)(?P<id>\d+)|((?:play/|api\.swf#)(?P<lookup_id>[\da-zA-Z+_]+)))'
 | 
			
		||||
 | 
			
		||||
    _TESTS = [
 | 
			
		||||
        {
 | 
			
		||||
            'url': 'http://blip.tv/cbr/cbr-exclusive-gotham-city-imposters-bats-vs-jokerz-short-3-5796352',
 | 
			
		||||
            'md5': '80baf1ec5c3d2019037c1c707d676b9f',
 | 
			
		||||
            'info_dict': {
 | 
			
		||||
                'id': '5779306',
 | 
			
		||||
                'ext': 'm4v',
 | 
			
		||||
                'title': 'CBR EXCLUSIVE: "Gotham City Imposters" Bats VS Jokerz Short 3',
 | 
			
		||||
                'description': 'md5:9bc31f227219cde65e47eeec8d2dc596',
 | 
			
		||||
                'timestamp': 1323138843,
 | 
			
		||||
                'upload_date': '20111206',
 | 
			
		||||
                'uploader': 'cbr',
 | 
			
		||||
                'uploader_id': '679425',
 | 
			
		||||
                'duration': 81,
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            # https://github.com/rg3/youtube-dl/pull/2274
 | 
			
		||||
            'note': 'Video with subtitles',
 | 
			
		||||
            'url': 'http://blip.tv/play/h6Uag5OEVgI.html',
 | 
			
		||||
            'md5': '309f9d25b820b086ca163ffac8031806',
 | 
			
		||||
            'info_dict': {
 | 
			
		||||
                'id': '6586561',
 | 
			
		||||
                'ext': 'mp4',
 | 
			
		||||
                'title': 'Red vs. Blue Season 11 Episode 1',
 | 
			
		||||
                'description': 'One-Zero-One',
 | 
			
		||||
                'timestamp': 1371261608,
 | 
			
		||||
                'upload_date': '20130615',
 | 
			
		||||
                'uploader': 'redvsblue',
 | 
			
		||||
                'uploader_id': '792887',
 | 
			
		||||
                'duration': 279,
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            # https://bugzilla.redhat.com/show_bug.cgi?id=967465
 | 
			
		||||
            'url': 'http://a.blip.tv/api.swf#h6Uag5KbVwI',
 | 
			
		||||
            'md5': '314e87b1ebe7a48fcbfdd51b791ce5a6',
 | 
			
		||||
            'info_dict': {
 | 
			
		||||
                'id': '6573122',
 | 
			
		||||
                'ext': 'mov',
 | 
			
		||||
                'upload_date': '20130520',
 | 
			
		||||
                'description': 'Two hapless space marines argue over what to do when they realize they have an astronomically huge problem on their hands.',
 | 
			
		||||
                'title': 'Red vs. Blue Season 11 Trailer',
 | 
			
		||||
                'timestamp': 1369029609,
 | 
			
		||||
                'uploader': 'redvsblue',
 | 
			
		||||
                'uploader_id': '792887',
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            'url': 'http://blip.tv/play/gbk766dkj4Yn',
 | 
			
		||||
            'md5': 'fe0a33f022d49399a241e84a8ea8b8e3',
 | 
			
		||||
            'info_dict': {
 | 
			
		||||
                'id': '1749452',
 | 
			
		||||
                'ext': 'mp4',
 | 
			
		||||
                'upload_date': '20090208',
 | 
			
		||||
                'description': 'Witness the first appearance of the Nostalgia Critic character, as Doug reviews the movie Transformers.',
 | 
			
		||||
                'title': 'Nostalgia Critic: Transformers',
 | 
			
		||||
                'timestamp': 1234068723,
 | 
			
		||||
                'uploader': 'NostalgiaCritic',
 | 
			
		||||
                'uploader_id': '246467',
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            # https://github.com/rg3/youtube-dl/pull/4404
 | 
			
		||||
            'note': 'Audio only',
 | 
			
		||||
            'url': 'http://blip.tv/hilarios-productions/weekly-manga-recap-kingdom-7119982',
 | 
			
		||||
            'md5': '76c0a56f24e769ceaab21fbb6416a351',
 | 
			
		||||
            'info_dict': {
 | 
			
		||||
                'id': '7103299',
 | 
			
		||||
                'ext': 'flv',
 | 
			
		||||
                'title': 'Weekly Manga Recap: Kingdom',
 | 
			
		||||
                'description': 'And then Shin breaks the enemy line, and he's all like HWAH! And then he slices a guy and it's all like FWASHING! And... it's really hard to describe the best parts of this series without breaking down into sound effects, okay?',
 | 
			
		||||
                'timestamp': 1417660321,
 | 
			
		||||
                'upload_date': '20141204',
 | 
			
		||||
                'uploader': 'The Rollo T',
 | 
			
		||||
                'uploader_id': '407429',
 | 
			
		||||
                'duration': 7251,
 | 
			
		||||
                'vcodec': 'none',
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            # missing duration
 | 
			
		||||
            'url': 'http://blip.tv/rss/flash/6700880',
 | 
			
		||||
            'info_dict': {
 | 
			
		||||
                'id': '6684191',
 | 
			
		||||
                'ext': 'm4v',
 | 
			
		||||
                'title': 'Cowboy Bebop: Gateway Shuffle Review',
 | 
			
		||||
                'description': 'md5:3acc480c0f9ae157f5fe88547ecaf3f8',
 | 
			
		||||
                'timestamp': 1386639757,
 | 
			
		||||
                'upload_date': '20131210',
 | 
			
		||||
                'uploader': 'sfdebris',
 | 
			
		||||
                'uploader_id': '706520',
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    ]
 | 
			
		||||
 | 
			
		||||
    @staticmethod
 | 
			
		||||
    def _extract_url(webpage):
 | 
			
		||||
        mobj = re.search(r'<meta\s[^>]*https?://api\.blip\.tv/\w+/redirect/\w+/(\d+)', webpage)
 | 
			
		||||
        if mobj:
 | 
			
		||||
            return 'http://blip.tv/a/a-' + mobj.group(1)
 | 
			
		||||
        mobj = re.search(r'<(?:iframe|embed|object)\s[^>]*(https?://(?:\w+\.)?blip\.tv/(?:play/|api\.swf#)[a-zA-Z0-9_]+)', webpage)
 | 
			
		||||
        if mobj:
 | 
			
		||||
            return mobj.group(1)
 | 
			
		||||
 | 
			
		||||
    def _real_extract(self, url):
 | 
			
		||||
        mobj = re.match(self._VALID_URL, url)
 | 
			
		||||
        lookup_id = mobj.group('lookup_id')
 | 
			
		||||
 | 
			
		||||
        # See https://github.com/rg3/youtube-dl/issues/857 and
 | 
			
		||||
        # https://github.com/rg3/youtube-dl/issues/4197
 | 
			
		||||
        if lookup_id:
 | 
			
		||||
            urlh = self._request_webpage(
 | 
			
		||||
                'http://blip.tv/play/%s' % lookup_id, lookup_id, 'Resolving lookup id')
 | 
			
		||||
            url = compat_urlparse.urlparse(urlh.geturl())
 | 
			
		||||
            qs = compat_urlparse.parse_qs(url.query)
 | 
			
		||||
            mobj = re.match(self._VALID_URL, qs['file'][0])
 | 
			
		||||
 | 
			
		||||
        video_id = mobj.group('id')
 | 
			
		||||
 | 
			
		||||
        rss = self._download_xml('http://blip.tv/rss/flash/%s' % video_id, video_id, 'Downloading video RSS')
 | 
			
		||||
 | 
			
		||||
        def _x(p):
 | 
			
		||||
            return xpath_with_ns(p, {
 | 
			
		||||
                'blip': 'http://blip.tv/dtd/blip/1.0',
 | 
			
		||||
                'media': 'http://search.yahoo.com/mrss/',
 | 
			
		||||
                'itunes': 'http://www.itunes.com/dtds/podcast-1.0.dtd',
 | 
			
		||||
            })
 | 
			
		||||
 | 
			
		||||
        item = rss.find('channel/item')
 | 
			
		||||
 | 
			
		||||
        video_id = xpath_text(item, _x('blip:item_id'), 'video id') or lookup_id
 | 
			
		||||
        title = xpath_text(item, 'title', 'title', fatal=True)
 | 
			
		||||
        description = clean_html(xpath_text(item, _x('blip:puredescription'), 'description'))
 | 
			
		||||
        timestamp = parse_iso8601(xpath_text(item, _x('blip:datestamp'), 'timestamp'))
 | 
			
		||||
        uploader = xpath_text(item, _x('blip:user'), 'uploader')
 | 
			
		||||
        uploader_id = xpath_text(item, _x('blip:userid'), 'uploader id')
 | 
			
		||||
        duration = int_or_none(xpath_text(item, _x('blip:runtime'), 'duration'))
 | 
			
		||||
        media_thumbnail = item.find(_x('media:thumbnail'))
 | 
			
		||||
        thumbnail = (media_thumbnail.get('url') if media_thumbnail is not None
 | 
			
		||||
                     else xpath_text(item, 'image', 'thumbnail'))
 | 
			
		||||
        categories = [category.text for category in item.findall('category') if category is not None]
 | 
			
		||||
 | 
			
		||||
        formats = []
 | 
			
		||||
        subtitles_urls = {}
 | 
			
		||||
 | 
			
		||||
        media_group = item.find(_x('media:group'))
 | 
			
		||||
        for media_content in media_group.findall(_x('media:content')):
 | 
			
		||||
            url = media_content.get('url')
 | 
			
		||||
            role = media_content.get(_x('blip:role'))
 | 
			
		||||
            msg = self._download_webpage(
 | 
			
		||||
                url + '?showplayer=20140425131715&referrer=http://blip.tv&mask=7&skin=flashvars&view=url',
 | 
			
		||||
                video_id, 'Resolving URL for %s' % role)
 | 
			
		||||
            real_url = compat_urlparse.parse_qs(msg.strip())['message'][0]
 | 
			
		||||
 | 
			
		||||
            media_type = media_content.get('type')
 | 
			
		||||
            if media_type == 'text/srt' or url.endswith('.srt'):
 | 
			
		||||
                LANGS = {
 | 
			
		||||
                    'english': 'en',
 | 
			
		||||
                }
 | 
			
		||||
                lang = role.rpartition('-')[-1].strip().lower()
 | 
			
		||||
                langcode = LANGS.get(lang, lang)
 | 
			
		||||
                subtitles_urls[langcode] = url
 | 
			
		||||
            elif media_type.startswith('video/'):
 | 
			
		||||
                formats.append({
 | 
			
		||||
                    'url': real_url,
 | 
			
		||||
                    'format_id': role,
 | 
			
		||||
                    'format_note': media_type,
 | 
			
		||||
                    'vcodec': media_content.get(_x('blip:vcodec')) or 'none',
 | 
			
		||||
                    'acodec': media_content.get(_x('blip:acodec')),
 | 
			
		||||
                    'filesize': media_content.get('filesize'),
 | 
			
		||||
                    'width': int_or_none(media_content.get('width')),
 | 
			
		||||
                    'height': int_or_none(media_content.get('height')),
 | 
			
		||||
                })
 | 
			
		||||
        self._check_formats(formats, video_id)
 | 
			
		||||
        self._sort_formats(formats)
 | 
			
		||||
 | 
			
		||||
        subtitles = self.extract_subtitles(video_id, subtitles_urls)
 | 
			
		||||
 | 
			
		||||
        return {
 | 
			
		||||
            'id': video_id,
 | 
			
		||||
            'title': title,
 | 
			
		||||
            'description': description,
 | 
			
		||||
            'timestamp': timestamp,
 | 
			
		||||
            'uploader': uploader,
 | 
			
		||||
            'uploader_id': uploader_id,
 | 
			
		||||
            'duration': duration,
 | 
			
		||||
            'thumbnail': thumbnail,
 | 
			
		||||
            'categories': categories,
 | 
			
		||||
            'formats': formats,
 | 
			
		||||
            'subtitles': subtitles,
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
    def _get_subtitles(self, video_id, subtitles_urls):
 | 
			
		||||
        subtitles = {}
 | 
			
		||||
        for lang, url in subtitles_urls.items():
 | 
			
		||||
            # For some weird reason, blip.tv serves a video instead of subtitles
 | 
			
		||||
            # when we request with a common UA
 | 
			
		||||
            req = sanitized_Request(url)
 | 
			
		||||
            req.add_header('User-Agent', 'youtube-dl')
 | 
			
		||||
            subtitles[lang] = [{
 | 
			
		||||
                # The extension is 'srt' but it's actually an 'ass' file
 | 
			
		||||
                'ext': 'ass',
 | 
			
		||||
                'data': self._download_webpage(req, None, note=False),
 | 
			
		||||
            }]
 | 
			
		||||
        return subtitles
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class BlipTVUserIE(InfoExtractor):
 | 
			
		||||
    _VALID_URL = r'(?:(?:https?://(?:\w+\.)?blip\.tv/)|bliptvuser:)(?!api\.swf)([^/]+)/*$'
 | 
			
		||||
    _PAGE_SIZE = 12
 | 
			
		||||
    IE_NAME = 'blip.tv:user'
 | 
			
		||||
    _TEST = {
 | 
			
		||||
        'url': 'http://blip.tv/actone',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'actone',
 | 
			
		||||
            'title': 'Act One: The Series',
 | 
			
		||||
        },
 | 
			
		||||
        'playlist_count': 5,
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    def _real_extract(self, url):
 | 
			
		||||
        mobj = re.match(self._VALID_URL, url)
 | 
			
		||||
        username = mobj.group(1)
 | 
			
		||||
 | 
			
		||||
        page_base = 'http://m.blip.tv/pr/show_get_full_episode_list?users_id=%s&lite=0&esi=1'
 | 
			
		||||
 | 
			
		||||
        page = self._download_webpage(url, username, 'Downloading user page')
 | 
			
		||||
        mobj = re.search(r'data-users-id="([^"]+)"', page)
 | 
			
		||||
        page_base = page_base % mobj.group(1)
 | 
			
		||||
        title = self._og_search_title(page)
 | 
			
		||||
 | 
			
		||||
        # Download video ids using BlipTV Ajax calls. Result size per
 | 
			
		||||
        # query is limited (currently to 12 videos) so we need to query
 | 
			
		||||
        # page by page until there are no video ids - it means we got
 | 
			
		||||
        # all of them.
 | 
			
		||||
 | 
			
		||||
        video_ids = []
 | 
			
		||||
        pagenum = 1
 | 
			
		||||
 | 
			
		||||
        while True:
 | 
			
		||||
            url = page_base + "&page=" + str(pagenum)
 | 
			
		||||
            page = self._download_webpage(
 | 
			
		||||
                url, username, 'Downloading video ids from page %d' % pagenum)
 | 
			
		||||
 | 
			
		||||
            # Extract video identifiers
 | 
			
		||||
            ids_in_page = []
 | 
			
		||||
 | 
			
		||||
            for mobj in re.finditer(r'href="/([^"]+)"', page):
 | 
			
		||||
                if mobj.group(1) not in ids_in_page:
 | 
			
		||||
                    ids_in_page.append(unescapeHTML(mobj.group(1)))
 | 
			
		||||
 | 
			
		||||
            video_ids.extend(ids_in_page)
 | 
			
		||||
 | 
			
		||||
            # A little optimization - if current page is not
 | 
			
		||||
            # "full", ie. does not contain PAGE_SIZE video ids then
 | 
			
		||||
            # we can assume that this page is the last one - there
 | 
			
		||||
            # are no more ids on further pages - no need to query
 | 
			
		||||
            # again.
 | 
			
		||||
 | 
			
		||||
            if len(ids_in_page) < self._PAGE_SIZE:
 | 
			
		||||
                break
 | 
			
		||||
 | 
			
		||||
            pagenum += 1
 | 
			
		||||
 | 
			
		||||
        urls = ['http://blip.tv/%s' % video_id for video_id in video_ids]
 | 
			
		||||
        url_entries = [self.url_result(vurl, 'BlipTV') for vurl in urls]
 | 
			
		||||
        return self.playlist_result(
 | 
			
		||||
            url_entries, playlist_title=title, playlist_id=username)
 | 
			
		||||
@@ -5,7 +5,6 @@ import re
 | 
			
		||||
 | 
			
		||||
from .common import InfoExtractor
 | 
			
		||||
from ..utils import ExtractorError
 | 
			
		||||
from .bliptv import BlipTVIE
 | 
			
		||||
from .screenwavemedia import ScreenwaveMediaIE
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@@ -34,18 +33,17 @@ class CinemassacreIE(InfoExtractor):
 | 
			
		||||
            },
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            # blip.tv embedded video
 | 
			
		||||
            # Youtube embedded video
 | 
			
		||||
            'url': 'http://cinemassacre.com/2006/12/07/chronologically-confused-about-bad-movie-and-video-game-sequel-titles/',
 | 
			
		||||
            'md5': 'ca9b3c8dd5a66f9375daeb5135f5a3de',
 | 
			
		||||
            'md5': 'df4cf8a1dcedaec79a73d96d83b99023',
 | 
			
		||||
            'info_dict': {
 | 
			
		||||
                'id': '4065369',
 | 
			
		||||
                'ext': 'flv',
 | 
			
		||||
                'id': 'OEVzPCY2T-g',
 | 
			
		||||
                'ext': 'mp4',
 | 
			
		||||
                'title': 'AVGN: Chronologically Confused about Bad Movie and Video Game Sequel Titles',
 | 
			
		||||
                'upload_date': '20061207',
 | 
			
		||||
                'uploader': 'cinemassacre',
 | 
			
		||||
                'uploader_id': '250778',
 | 
			
		||||
                'timestamp': 1283233867,
 | 
			
		||||
                'description': 'md5:0a108c78d130676b207d0f6d029ecffd',
 | 
			
		||||
                'uploader': 'Cinemassacre',
 | 
			
		||||
                'uploader_id': 'JamesNintendoNerd',
 | 
			
		||||
                'description': 'md5:784734696c2b8b7f4b8625cc799e07f6',
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
@@ -88,8 +86,6 @@ class CinemassacreIE(InfoExtractor):
 | 
			
		||||
                r'<iframe[^>]+src="(?P<url>(?:https?:)?//(?:[^.]+\.)?youtube\.com/.+?)"',
 | 
			
		||||
            ],
 | 
			
		||||
            webpage, 'player data URL', default=None, group='url')
 | 
			
		||||
        if not playerdata_url:
 | 
			
		||||
            playerdata_url = BlipTVIE._extract_url(webpage)
 | 
			
		||||
        if not playerdata_url:
 | 
			
		||||
            raise ExtractorError('Unable to find player data')
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -44,7 +44,6 @@ from .myvi import MyviIE
 | 
			
		||||
from .condenast import CondeNastIE
 | 
			
		||||
from .udn import UDNEmbedIE
 | 
			
		||||
from .senateisvp import SenateISVPIE
 | 
			
		||||
from .bliptv import BlipTVIE
 | 
			
		||||
from .svt import SVTIE
 | 
			
		||||
from .pornhub import PornHubIE
 | 
			
		||||
from .xhamster import XHamsterEmbedIE
 | 
			
		||||
@@ -56,6 +55,7 @@ from .screenwavemedia import ScreenwaveMediaIE
 | 
			
		||||
from .mtv import MTVServicesEmbeddedIE
 | 
			
		||||
from .pladform import PladformIE
 | 
			
		||||
from .googledrive import GoogleDriveIE
 | 
			
		||||
from .jwplatform import JWPlatformIE
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class GenericIE(InfoExtractor):
 | 
			
		||||
@@ -1441,11 +1441,6 @@ class GenericIE(InfoExtractor):
 | 
			
		||||
                'id': match.group('id')
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
        # Look for embedded blip.tv player
 | 
			
		||||
        bliptv_url = BlipTVIE._extract_url(webpage)
 | 
			
		||||
        if bliptv_url:
 | 
			
		||||
            return self.url_result(bliptv_url, 'BlipTV')
 | 
			
		||||
 | 
			
		||||
        # Look for SVT player
 | 
			
		||||
        svt_url = SVTIE._extract_url(webpage)
 | 
			
		||||
        if svt_url:
 | 
			
		||||
@@ -1802,6 +1797,11 @@ class GenericIE(InfoExtractor):
 | 
			
		||||
        if snagfilms_url:
 | 
			
		||||
            return self.url_result(snagfilms_url)
 | 
			
		||||
 | 
			
		||||
        # Look for JWPlatform embeds
 | 
			
		||||
        jwplatform_url = JWPlatformIE._extract_url(webpage)
 | 
			
		||||
        if jwplatform_url:
 | 
			
		||||
            return self.url_result(jwplatform_url, 'JWPlatform')
 | 
			
		||||
 | 
			
		||||
        # Look for ScreenwaveMedia embeds
 | 
			
		||||
        mobj = re.search(ScreenwaveMediaIE.EMBED_PATTERN, webpage)
 | 
			
		||||
        if mobj is not None:
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										71
									
								
								youtube_dl/extractor/jwplatform.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										71
									
								
								youtube_dl/extractor/jwplatform.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,71 @@
 | 
			
		||||
# coding: utf-8
 | 
			
		||||
from __future__ import unicode_literals
 | 
			
		||||
 | 
			
		||||
import re
 | 
			
		||||
 | 
			
		||||
from .common import InfoExtractor
 | 
			
		||||
from ..utils import int_or_none
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class JWPlatformIE(InfoExtractor):
 | 
			
		||||
    _VALID_URL = r'(?:https?://content\.jwplatform\.com/(?:feeds|players|jw6)/|jwplatform:)(?P<id>[a-zA-Z0-9]{8})'
 | 
			
		||||
    _TEST = {
 | 
			
		||||
        'url': 'http://content.jwplatform.com/players/nPripu9l-ALJ3XQCI.js',
 | 
			
		||||
        'md5': 'fa8899fa601eb7c83a64e9d568bdf325',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'nPripu9l',
 | 
			
		||||
            'ext': 'mov',
 | 
			
		||||
            'title': 'Big Buck Bunny Trailer',
 | 
			
		||||
            'description': 'Big Buck Bunny is a short animated film by the Blender Institute. It is made using free and open source software.',
 | 
			
		||||
            'upload_date': '20081127',
 | 
			
		||||
            'timestamp': 1227796140,
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    @staticmethod
 | 
			
		||||
    def _extract_url(webpage):
 | 
			
		||||
        mobj = re.search(
 | 
			
		||||
            r'<script[^>]+?src=["\'](?P<url>(?:https?:)?//content.jwplatform.com/players/[a-zA-Z0-9]{8})',
 | 
			
		||||
            webpage)
 | 
			
		||||
        if mobj:
 | 
			
		||||
            return mobj.group('url')
 | 
			
		||||
 | 
			
		||||
    def _real_extract(self, url):
 | 
			
		||||
        video_id = self._match_id(url)
 | 
			
		||||
        json_data = self._download_json('http://content.jwplatform.com/feeds/%s.json' % video_id, video_id)
 | 
			
		||||
        video_data = json_data['playlist'][0]
 | 
			
		||||
        subtitles = {}
 | 
			
		||||
        for track in video_data['tracks']:
 | 
			
		||||
            if track['kind'] == 'captions':
 | 
			
		||||
                subtitles[track['label']] = [{'url': self._proto_relative_url(track['file'])}]
 | 
			
		||||
 | 
			
		||||
        formats = []
 | 
			
		||||
        for source in video_data['sources']:
 | 
			
		||||
            source_url = self._proto_relative_url(source['file'])
 | 
			
		||||
            source_type = source.get('type') or ''
 | 
			
		||||
            if source_type == 'application/vnd.apple.mpegurl':
 | 
			
		||||
                m3u8_formats = self._extract_m3u8_formats(source_url, video_id, 'mp4', 'm3u8_native', fatal=None)
 | 
			
		||||
                if m3u8_formats:
 | 
			
		||||
                    formats.extend(m3u8_formats)
 | 
			
		||||
            elif source_type.startswith('audio'):
 | 
			
		||||
                formats.append({
 | 
			
		||||
                    'url': source_url,
 | 
			
		||||
                    'vcodec': 'none',
 | 
			
		||||
                })
 | 
			
		||||
            else:
 | 
			
		||||
                formats.append({
 | 
			
		||||
                    'url': source_url,
 | 
			
		||||
                    'width': int_or_none(source.get('width')),
 | 
			
		||||
                    'height': int_or_none(source.get('height')),
 | 
			
		||||
                })
 | 
			
		||||
        self._sort_formats(formats)
 | 
			
		||||
 | 
			
		||||
        return {
 | 
			
		||||
            'id': video_id,
 | 
			
		||||
            'title': video_data['title'],
 | 
			
		||||
            'description': video_data.get('description'),
 | 
			
		||||
            'thumbnail': self._proto_relative_url(video_data.get('image')),
 | 
			
		||||
            'timestamp': int_or_none(video_data.get('pubdate')),
 | 
			
		||||
            'subtitles': subtitles,
 | 
			
		||||
            'formats': formats,
 | 
			
		||||
        }
 | 
			
		||||
							
								
								
									
										32
									
								
								youtube_dl/extractor/makertv.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								youtube_dl/extractor/makertv.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,32 @@
 | 
			
		||||
# coding: utf-8
 | 
			
		||||
from __future__ import unicode_literals
 | 
			
		||||
 | 
			
		||||
from .common import InfoExtractor
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class MakerTVIE(InfoExtractor):
 | 
			
		||||
    _VALID_URL = r'https?://(?:(?:www\.)?maker\.tv/(?:[^/]+/)*video|makerplayer.com/embed/maker)/(?P<id>[a-zA-Z0-9]{12})'
 | 
			
		||||
    _TEST = {
 | 
			
		||||
        'url': 'http://www.maker.tv/video/Fh3QgymL9gsc',
 | 
			
		||||
        'md5': 'ca237a53a8eb20b6dc5bd60564d4ab3e',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'Fh3QgymL9gsc',
 | 
			
		||||
            'ext': 'mp4',
 | 
			
		||||
            'title': 'Maze Runner: The Scorch Trials Official Movie Review',
 | 
			
		||||
            'description': 'md5:11ff3362d7ef1d679fdb649f6413975a',
 | 
			
		||||
            'upload_date': '20150918',
 | 
			
		||||
            'timestamp': 1442549540,
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    def _real_extract(self, url):
 | 
			
		||||
        video_id = self._match_id(url)
 | 
			
		||||
        webpage = self._download_webpage(url, video_id)
 | 
			
		||||
        jwplatform_id = self._search_regex(r'jw_?id="([^"]+)"', webpage, 'jwplatform id')
 | 
			
		||||
 | 
			
		||||
        return {
 | 
			
		||||
            '_type': 'url_transparent',
 | 
			
		||||
            'id': video_id,
 | 
			
		||||
            'url': 'jwplatform:%s' % jwplatform_id,
 | 
			
		||||
            'ie_key': 'JWPlatform',
 | 
			
		||||
        }
 | 
			
		||||
		Reference in New Issue
	
	Block a user