diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-05-03 17:55:03 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-03 17:55:03 -0400 |
| commit | 229be75961cc9d94698c37c7f95eb52cd6d5cc28 (patch) | |
| tree | 68d9736ec05239deffcdcbbe5d147b0d96137957 /Emby.Server.Implementations | |
| parent | 0a9a5480c8121ee2edf8733a1bd03d31d443de7c (diff) | |
| parent | 568d769cc80644e27c15d5b842eb8bc7393016b5 (diff) | |
Merge pull request #2611 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs b/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs index f59772c45..1673c9150 100644 --- a/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs +++ b/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs @@ -213,9 +213,11 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV var subtitleArgs = CopySubtitles ? " -codec:s copy" : " -sn"; - var outputParam = string.Equals(Path.GetExtension(targetFile), ".mp4", StringComparison.OrdinalIgnoreCase) ? - " -f mp4 -movflags frag_keyframe+empty_moov" : - string.Empty; + //var outputParam = string.Equals(Path.GetExtension(targetFile), ".mp4", StringComparison.OrdinalIgnoreCase) ? + // " -f mp4 -movflags frag_keyframe+empty_moov" : + // string.Empty; + + var outputParam = string.Empty; var commandLineArgs = string.Format("-i \"{0}\"{5} {2} -map_metadata -1 -threads 0 {3}{4}{6} -y \"{1}\"", inputTempFile, |
