mirror of
				https://github.com/ytdl-org/youtube-dl
				synced 2025-11-03 19:23:44 +00:00 
			
		
		
		
	* add _search_nextjs_data(), from https://github.com/yt-dlp/yt-dlp/pull/1386
  thanks selfisekai
* add _search_nuxt_data(), from https://github.com/yt-dlp/yt-dlp/pull/1921,
  thanks Lesmiscore, pukkandan
* add tests for the above
* also fix HTML5 type recognition and tests, from
  222a230871,
  thanks Lesmiscore
* update extractors in PR using above, fix tests.
		
	
			
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# coding: utf-8
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
from .common import InfoExtractor
 | 
						|
from ..utils import (
 | 
						|
    float_or_none,
 | 
						|
    merge_dicts,
 | 
						|
    str_or_none,
 | 
						|
    T,
 | 
						|
    traverse_obj,
 | 
						|
    url_or_none,
 | 
						|
)
 | 
						|
 | 
						|
 | 
						|
class WhypIE(InfoExtractor):
 | 
						|
    _VALID_URL = r'https?://(?:www\.)?whyp\.it/tracks/(?P<id>\d+)'
 | 
						|
    _TESTS = [{
 | 
						|
        'url': 'https://www.whyp.it/tracks/18337/home-page-example-track-b4kq7',
 | 
						|
        'md5': 'c1187b42ebf8605284e3dc92aeb33d16',
 | 
						|
        'info_dict': {
 | 
						|
            'url': 'https://cdn.whyp.it/50eb17cc-e9ff-4e18-b89b-dc9206a95cb1.mp3',
 | 
						|
            'id': '18337',
 | 
						|
            'title': 'Home Page Example Track',
 | 
						|
            'description': r're:(?s).+\bexample track\b',
 | 
						|
            'ext': 'mp3',
 | 
						|
            'duration': 52.82,
 | 
						|
            'uploader': 'Brad',
 | 
						|
            'uploader_id': '1',
 | 
						|
            'thumbnail': 'https://cdn.whyp.it/a537bb36-3373-4c61-96c8-27fc1b2f427a.jpg',
 | 
						|
        },
 | 
						|
    }, {
 | 
						|
        'url': 'https://www.whyp.it/tracks/18337',
 | 
						|
        'only_matching': True,
 | 
						|
    }]
 | 
						|
 | 
						|
    def _real_extract(self, url):
 | 
						|
        unique_id = self._match_id(url)
 | 
						|
        webpage = self._download_webpage(url, unique_id)
 | 
						|
        data = self._search_nuxt_data(webpage, unique_id)['rawTrack']
 | 
						|
 | 
						|
        return merge_dicts({
 | 
						|
            'url': data['audio_url'],
 | 
						|
            'id': unique_id,
 | 
						|
        }, traverse_obj(data, {
 | 
						|
            'title': 'title',
 | 
						|
            'description': 'description',
 | 
						|
            'duration': ('duration', T(float_or_none)),
 | 
						|
            'uploader': ('user', 'username'),
 | 
						|
            'uploader_id': ('user', 'id', T(str_or_none)),
 | 
						|
            'thumbnail': ('artwork_url', T(url_or_none)),
 | 
						|
        }), {
 | 
						|
            'ext': 'mp3',
 | 
						|
            'vcodec': 'none',
 | 
						|
            'http_headers': {'Referer': 'https://whyp.it/'},
 | 
						|
        }, rev=True)
 |