mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 00:25:15 +00:00 
			
		
		
		
	[pornhub] Add support for DASH formats (closes #20403)
This commit is contained in:
		@@ -14,6 +14,7 @@ from ..compat import (
 | 
			
		||||
)
 | 
			
		||||
from .openload import PhantomJSwrapper
 | 
			
		||||
from ..utils import (
 | 
			
		||||
    determine_ext,
 | 
			
		||||
    ExtractorError,
 | 
			
		||||
    int_or_none,
 | 
			
		||||
    orderedSet,
 | 
			
		||||
@@ -275,6 +276,10 @@ class PornHubIE(PornHubBaseIE):
 | 
			
		||||
                    r'/(\d{6}/\d{2})/', video_url, 'upload data', default=None)
 | 
			
		||||
                if upload_date:
 | 
			
		||||
                    upload_date = upload_date.replace('/', '')
 | 
			
		||||
            if determine_ext(video_url) == 'mpd':
 | 
			
		||||
                formats.extend(self._extract_mpd_formats(
 | 
			
		||||
                    video_url, video_id, mpd_id='dash', fatal=False))
 | 
			
		||||
                continue
 | 
			
		||||
            tbr = None
 | 
			
		||||
            mobj = re.search(r'(?P<height>\d+)[pP]?_(?P<tbr>\d+)[kK]', video_url)
 | 
			
		||||
            if mobj:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user