mirror of
				https://github.com/ytdl-org/youtube-dl
				synced 2025-11-04 11:43:47 +00:00 
			
		
		
		
	[moevideo] fix extraction
This commit is contained in:
		
							parent
							
								
									612a159510
								
							
						
					
					
						commit
						8569058f88
					
				@ -1,15 +1,12 @@
 | 
				
			|||||||
# coding: utf-8
 | 
					# coding: utf-8
 | 
				
			||||||
from __future__ import unicode_literals
 | 
					from __future__ import unicode_literals
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import json
 | 
					 | 
				
			||||||
import re
 | 
					import re
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
from ..utils import (
 | 
					from ..utils import (
 | 
				
			||||||
    ExtractorError,
 | 
					    clean_html,
 | 
				
			||||||
    int_or_none,
 | 
					    int_or_none,
 | 
				
			||||||
    sanitized_Request,
 | 
					 | 
				
			||||||
    urlencode_postdata,
 | 
					 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -17,8 +14,8 @@ class MoeVideoIE(InfoExtractor):
 | 
				
			|||||||
    IE_DESC = 'LetitBit video services: moevideo.net, playreplay.net and videochart.net'
 | 
					    IE_DESC = 'LetitBit video services: moevideo.net, playreplay.net and videochart.net'
 | 
				
			||||||
    _VALID_URL = r'''(?x)
 | 
					    _VALID_URL = r'''(?x)
 | 
				
			||||||
        https?://(?P<host>(?:www\.)?
 | 
					        https?://(?P<host>(?:www\.)?
 | 
				
			||||||
        (?:(?:moevideo|playreplay|videochart)\.net))/
 | 
					        (?:(?:moevideo|playreplay|videochart)\.net|thesame\.tv))/
 | 
				
			||||||
        (?:video|framevideo)/(?P<id>[0-9]+\.[0-9A-Za-z]+)'''
 | 
					        (?:video|framevideo|embed)/(?P<id>[0-9a-z]+\.[0-9A-Za-z]+)'''
 | 
				
			||||||
    _API_URL = 'http://api.letitbit.net/'
 | 
					    _API_URL = 'http://api.letitbit.net/'
 | 
				
			||||||
    _API_KEY = 'tVL0gjqo5'
 | 
					    _API_KEY = 'tVL0gjqo5'
 | 
				
			||||||
    _TESTS = [
 | 
					    _TESTS = [
 | 
				
			||||||
@ -57,58 +54,26 @@ class MoeVideoIE(InfoExtractor):
 | 
				
			|||||||
    ]
 | 
					    ]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def _real_extract(self, url):
 | 
					    def _real_extract(self, url):
 | 
				
			||||||
        mobj = re.match(self._VALID_URL, url)
 | 
					        host, video_id = re.match(self._VALID_URL, url).groups()
 | 
				
			||||||
        video_id = mobj.group('id')
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        webpage = self._download_webpage(
 | 
					        webpage = self._download_webpage(
 | 
				
			||||||
            'http://%s/video/%s' % (mobj.group('host'), video_id),
 | 
					            'http://%s/video/%s' % (host, video_id),
 | 
				
			||||||
            video_id, 'Downloading webpage')
 | 
					            video_id, 'Downloading webpage')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        title = self._og_search_title(webpage)
 | 
					        title = self._og_search_title(webpage)
 | 
				
			||||||
        thumbnail = self._og_search_thumbnail(webpage)
 | 
					 | 
				
			||||||
        description = self._og_search_description(webpage)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        r = [
 | 
					        embed_webpage = self._download_webpage(
 | 
				
			||||||
            self._API_KEY,
 | 
					            'http://%s/embed/%s' % (host, video_id),
 | 
				
			||||||
            [
 | 
					            video_id, 'Downloading embed webpage')
 | 
				
			||||||
                'preview/flv_link',
 | 
					        video = self._parse_json(self._search_regex(
 | 
				
			||||||
                {
 | 
					            r'mvplayer\("#player"\s*,\s*({.+})',
 | 
				
			||||||
                    'uid': video_id,
 | 
					            embed_webpage, 'mvplayer'), video_id)['video']
 | 
				
			||||||
                },
 | 
					 | 
				
			||||||
            ],
 | 
					 | 
				
			||||||
        ]
 | 
					 | 
				
			||||||
        r_json = json.dumps(r)
 | 
					 | 
				
			||||||
        post = urlencode_postdata({'r': r_json})
 | 
					 | 
				
			||||||
        req = sanitized_Request(self._API_URL, post)
 | 
					 | 
				
			||||||
        req.add_header('Content-type', 'application/x-www-form-urlencoded')
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        response = self._download_json(req, video_id)
 | 
					 | 
				
			||||||
        if response['status'] != 'OK':
 | 
					 | 
				
			||||||
            raise ExtractorError(
 | 
					 | 
				
			||||||
                '%s returned error: %s' % (self.IE_NAME, response['data']),
 | 
					 | 
				
			||||||
                expected=True
 | 
					 | 
				
			||||||
            )
 | 
					 | 
				
			||||||
        item = response['data'][0]
 | 
					 | 
				
			||||||
        video_url = item['link']
 | 
					 | 
				
			||||||
        duration = int_or_none(item['length'])
 | 
					 | 
				
			||||||
        width = int_or_none(item['width'])
 | 
					 | 
				
			||||||
        height = int_or_none(item['height'])
 | 
					 | 
				
			||||||
        filesize = int_or_none(item['convert_size'])
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        formats = [{
 | 
					 | 
				
			||||||
            'format_id': 'sd',
 | 
					 | 
				
			||||||
            'http_headers': {'Range': 'bytes=0-'},  # Required to download
 | 
					 | 
				
			||||||
            'url': video_url,
 | 
					 | 
				
			||||||
            'width': width,
 | 
					 | 
				
			||||||
            'height': height,
 | 
					 | 
				
			||||||
            'filesize': filesize,
 | 
					 | 
				
			||||||
        }]
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return {
 | 
					        return {
 | 
				
			||||||
            'id': video_id,
 | 
					            'id': video_id,
 | 
				
			||||||
            'title': title,
 | 
					            'title': title,
 | 
				
			||||||
            'thumbnail': thumbnail,
 | 
					            'thumbnail': video.get('poster') or self._og_search_thumbnail(webpage),
 | 
				
			||||||
            'description': description,
 | 
					            'description': clean_html(self._og_search_description(webpage)),
 | 
				
			||||||
            'duration': duration,
 | 
					            'duration': int_or_none(self._og_search_property('video:duration', webpage)),
 | 
				
			||||||
            'formats': formats,
 | 
					            'url': video['ourUrl'],
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user