소스 검색

Merge pull request #11064 from Shadowghost/bdmv-fixes

Do not dispose the ffmpeg process
Bond-009 1 년 전
부모
커밋
c61f6945d0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs

+ 1 - 1
MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs

@@ -437,7 +437,7 @@ public sealed class TranscodeManager : ITranscodeManager, IDisposable
             }
         }
 
-        using var process = new Process
+        var process = new Process
         {
             StartInfo = new ProcessStartInfo
             {