Explorar el Código

Merge pull request #168 from joshuaboniface/ffmpeg-timeout

Up the timerDuration back to 10s, 2s is too low
Andrew Rabert hace 6 años
padre
commit
72619ddc5a
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      MediaBrowser.Api/ApiEntryPoint.cs

+ 1 - 2
MediaBrowser.Api/ApiEntryPoint.cs

@@ -421,15 +421,14 @@ namespace MediaBrowser.Api
                 return;
             }
 
-            /*
             var timerDuration = 10000;
 
+            /*
             if (job.Type != TranscodingJobType.Progressive)
             {
                 timerDuration = 60000;
             }
             */
-            var timerDuration = 2000;
 
             job.PingTimeout = timerDuration;
             job.LastPingDate = DateTime.UtcNow;