mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			490 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			490 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Collections.Generic;
 | |
| using static MediaBrowser.Controller.Extensions.ConfigurationExtensions;
 | |
| 
 | |
| namespace Emby.Server.Implementations
 | |
| {
 | |
|     public static class ConfigurationOptions
 | |
|     {
 | |
|         public static Dictionary<string, string> Configuration => new Dictionary<string, string>
 | |
|         {
 | |
|             { "HttpListenerHost:DefaultRedirectPath", "web/index.html" },
 | |
|             { FfmpegProbeSizeKey, "1G" },
 | |
|             { FfmpegAnalyzeDurationKey, "200M" }
 | |
|         };
 | |
|     }
 | |
| }
 |