mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-10-30 18:22:41 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			270 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			270 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Kyoo.Models;
 | |
| using Kyoo.Models.Watch;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace Kyoo.Controllers
 | |
| {
 | |
| 	public interface ITranscoder
 | |
| 	{
 | |
| 		Task<Track[]> ExtractInfos(string path);
 | |
| 		Task<string> Transmux(Episode episode);
 | |
| 		Task<string> Transcode(Episode episode);
 | |
| 	}
 | |
| }
 |