소스 검색

remove noaccurateseek param

Luke Pulverenti 9 년 전
부모
커밋
83c33dd741
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      MediaBrowser.Api/Playback/BaseStreamingService.cs

+ 2 - 1
MediaBrowser.Api/Playback/BaseStreamingService.cs

@@ -2222,9 +2222,10 @@ namespace MediaBrowser.Api.Playback
 
             if (state.VideoRequest != null)
             {
+                // Important: If this is ever re-enabled, make sure not to use it with wtv because it breaks seeking
                 if (string.Equals(state.OutputContainer, "mkv", StringComparison.OrdinalIgnoreCase) && state.VideoRequest.CopyTimestamps)
                 {
-                    inputModifier += " -noaccurate_seek";
+                    //inputModifier += " -noaccurate_seek";
                 }
             }