mirror of
				https://github.com/devine-dl/devine.git
				synced 2025-11-04 11:54:50 +00:00 
			
		
		
		
	Add support for parsing SubRip (SRT) in Subtitle.parse()
This commit is contained in:
		
							parent
							
								
									14ebe4ee1b
								
							
						
					
					
						commit
						f4d8bc8dd0
					
				@ -149,7 +149,10 @@ class Subtitle(Track):
 | 
				
			|||||||
            raise ValueError(f"Subtitle data must be parsed as bytes data, not {type(data).__name__}")
 | 
					            raise ValueError(f"Subtitle data must be parsed as bytes data, not {type(data).__name__}")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        try:
 | 
					        try:
 | 
				
			||||||
            if codec == Subtitle.Codec.fTTML:
 | 
					            if codec == Subtitle.Codec.SubRip:
 | 
				
			||||||
 | 
					                text = try_ensure_utf8(data).decode("utf8")
 | 
				
			||||||
 | 
					                caption_set = pycaption.SRTReader().read(text)
 | 
				
			||||||
 | 
					            elif codec == Subtitle.Codec.fTTML:
 | 
				
			||||||
                caption_lists: dict[str, pycaption.CaptionList] = defaultdict(pycaption.CaptionList)
 | 
					                caption_lists: dict[str, pycaption.CaptionList] = defaultdict(pycaption.CaptionList)
 | 
				
			||||||
                for segment in (
 | 
					                for segment in (
 | 
				
			||||||
                    Subtitle.parse(box.data, Subtitle.Codec.TimedTextMarkupLang)
 | 
					                    Subtitle.parse(box.data, Subtitle.Codec.TimedTextMarkupLang)
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user