mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-29 06:43:23 +01:00
fixes #256 - Webm threads
This commit is contained in:
parent
50f4dcc8ea
commit
41fb933e5d
1 changed files with 4 additions and 1 deletions
|
|
@ -108,7 +108,9 @@ namespace MediaBrowser.Api.Playback.Progressive
|
|||
format = " -f mp4 -movflags frag_keyframe+empty_moov";
|
||||
}
|
||||
|
||||
return string.Format("{0} {1} {2} -i {3}{4}{5} {6} {7} -threads 0 {8}{9} \"{10}\"",
|
||||
var threads = string.Equals(videoCodec, "libvpx", StringComparison.OrdinalIgnoreCase) ? 2 : 0;
|
||||
|
||||
return string.Format("{0} {1} {2} -i {3}{4}{5} {6} {7} -threads {8} {9}{10} \"{11}\"",
|
||||
probeSize,
|
||||
GetUserAgentParam(state.Item),
|
||||
GetFastSeekCommandLineParameter(state.Request),
|
||||
|
|
@ -117,6 +119,7 @@ namespace MediaBrowser.Api.Playback.Progressive
|
|||
keyFrame,
|
||||
GetMapArgs(state),
|
||||
GetVideoArguments(state, videoCodec, performSubtitleConversions),
|
||||
threads,
|
||||
GetAudioArguments(state),
|
||||
format,
|
||||
outputPath
|
||||
|
|
|
|||
Loading…
Reference in a new issue