mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[crunchyroll] Add even more relaxed fmt fallback
This commit is contained in:
		@@ -314,7 +314,10 @@ Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
 | 
				
			|||||||
                continue
 | 
					                continue
 | 
				
			||||||
            available_fmts.append(fmt)
 | 
					            available_fmts.append(fmt)
 | 
				
			||||||
        if not available_fmts:
 | 
					        if not available_fmts:
 | 
				
			||||||
            available_fmts = re.findall(r'token="showmedia\.([0-9]{3,4})p"', webpage)
 | 
					            for p in (r'token=["\']showmedia\.([0-9]{3,4})p"', r'showmedia\.([0-9]{3,4})p'):
 | 
				
			||||||
 | 
					                available_fmts = re.findall(p, webpage)
 | 
				
			||||||
 | 
					                if available_fmts:
 | 
				
			||||||
 | 
					                    break
 | 
				
			||||||
        video_encode_ids = []
 | 
					        video_encode_ids = []
 | 
				
			||||||
        formats = []
 | 
					        formats = []
 | 
				
			||||||
        for fmt in available_fmts:
 | 
					        for fmt in available_fmts:
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user