mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:30:46 +00:00 
			
		
		
		
	· Import from compat what comes from compat. Yes, some names are available in utils too, but that's an implementation detail. · Use _match_id consistently whenever possible · Fix some outdated tests · Use consistent valid URL (always match the whole protocol, no ^ at start required) · Use modern test definitions
		
			
				
	
	
		
			76 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# encoding: utf-8
 | 
						|
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
import re
 | 
						|
 | 
						|
from .common import InfoExtractor
 | 
						|
from ..compat import (
 | 
						|
    compat_urllib_parse,
 | 
						|
)
 | 
						|
 | 
						|
 | 
						|
class DaumIE(InfoExtractor):
 | 
						|
    _VALID_URL = r'https?://(?:m\.)?tvpot\.daum\.net/(?:v/|.*?clipid=)(?P<id>[^?#&]+)'
 | 
						|
    IE_NAME = 'daum.net'
 | 
						|
 | 
						|
    _TESTS = [{
 | 
						|
        'url': 'http://tvpot.daum.net/clip/ClipView.do?clipid=52554690',
 | 
						|
        'info_dict': {
 | 
						|
            'id': '52554690',
 | 
						|
            'ext': 'mp4',
 | 
						|
            'title': 'DOTA 2GETHER 시즌2 6회 - 2부',
 | 
						|
            'description': 'DOTA 2GETHER 시즌2 6회 - 2부',
 | 
						|
            'upload_date': '20130831',
 | 
						|
            'duration': 3868,
 | 
						|
        },
 | 
						|
    }, {
 | 
						|
        'url': 'http://tvpot.daum.net/v/vab4dyeDBysyBssyukBUjBz',
 | 
						|
        'only_matching': True,
 | 
						|
    }, {
 | 
						|
        'url': 'http://tvpot.daum.net/v/07dXWRka62Y%24',
 | 
						|
        'only_matching': True,
 | 
						|
    }]
 | 
						|
 | 
						|
    def _real_extract(self, url):
 | 
						|
        mobj = re.match(self._VALID_URL, url)
 | 
						|
        video_id = mobj.group('id')
 | 
						|
        canonical_url = 'http://tvpot.daum.net/v/%s' % video_id
 | 
						|
        webpage = self._download_webpage(canonical_url, video_id)
 | 
						|
        full_id = self._search_regex(
 | 
						|
            r'<iframe src="http://videofarm.daum.net/controller/video/viewer/Video.html\?.*?vid=(.+?)[&"]',
 | 
						|
            webpage, 'full id')
 | 
						|
        query = compat_urllib_parse.urlencode({'vid': full_id})
 | 
						|
        info = self._download_xml(
 | 
						|
            'http://tvpot.daum.net/clip/ClipInfoXml.do?' + query, video_id,
 | 
						|
            'Downloading video info')
 | 
						|
        urls = self._download_xml(
 | 
						|
            'http://videofarm.daum.net/controller/api/open/v1_2/MovieData.apixml?' + query,
 | 
						|
            video_id, 'Downloading video formats info')
 | 
						|
 | 
						|
        formats = []
 | 
						|
        for format_el in urls.findall('result/output_list/output_list'):
 | 
						|
            profile = format_el.attrib['profile']
 | 
						|
            format_query = compat_urllib_parse.urlencode({
 | 
						|
                'vid': full_id,
 | 
						|
                'profile': profile,
 | 
						|
            })
 | 
						|
            url_doc = self._download_xml(
 | 
						|
                'http://videofarm.daum.net/controller/api/open/v1_2/MovieLocation.apixml?' + format_query,
 | 
						|
                video_id, note='Downloading video data for %s format' % profile)
 | 
						|
            format_url = url_doc.find('result/url').text
 | 
						|
            formats.append({
 | 
						|
                'url': format_url,
 | 
						|
                'format_id': profile,
 | 
						|
            })
 | 
						|
 | 
						|
        return {
 | 
						|
            'id': video_id,
 | 
						|
            'title': info.find('TITLE').text,
 | 
						|
            'formats': formats,
 | 
						|
            'thumbnail': self._og_search_thumbnail(webpage),
 | 
						|
            'description': info.find('CONTENTS').text,
 | 
						|
            'duration': int(info.find('DURATION').text),
 | 
						|
            'upload_date': info.find('REGDTTM').text[:8],
 | 
						|
        }
 |