aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/ApiEntryPoint.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-11 09:47:38 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-11 09:47:38 -0400
commit3cb57db7fee72a634fb124bba3f3422128d7ef85 (patch)
tree8f8cf230efddc150b1da58377ca0d4eecdd6ba7e /MediaBrowser.Api/ApiEntryPoint.cs
parent204f7f68792e629acc78b6a9a2a53b63b35d8cac (diff)
fixes #564 - Enforce CanSeek and QueueableMediaTypes
Diffstat (limited to 'MediaBrowser.Api/ApiEntryPoint.cs')
-rw-r--r--MediaBrowser.Api/ApiEntryPoint.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Api/ApiEntryPoint.cs b/MediaBrowser.Api/ApiEntryPoint.cs
index 07b24c259..5cd0aae80 100644
--- a/MediaBrowser.Api/ApiEntryPoint.cs
+++ b/MediaBrowser.Api/ApiEntryPoint.cs
@@ -182,7 +182,8 @@ namespace MediaBrowser.Api
if (job.ActiveRequestCount == 0)
{
- var timerDuration = type == TranscodingJobType.Progressive ? 1000 : 180000;
+ // The HLS kill timer is long - 1/2 hr. clients should use the manual kill command when stopping.
+ var timerDuration = type == TranscodingJobType.Progressive ? 1000 : 1800000;
if (job.KillTimer == null)
{