mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 22:13:06 +03:00
Also seek the external audio stream
This commit is contained in:
@@ -886,6 +886,13 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||||||
|
|
||||||
if (state.AudioStream != null && state.AudioStream.IsExternal)
|
if (state.AudioStream != null && state.AudioStream.IsExternal)
|
||||||
{
|
{
|
||||||
|
// Also seek the external audio stream.
|
||||||
|
var seekAudioParam = GetFastSeekCommandLineParameter(state, options);
|
||||||
|
if (!string.IsNullOrEmpty(seekAudioParam))
|
||||||
|
{
|
||||||
|
arg.Append(' ').Append(seekAudioParam);
|
||||||
|
}
|
||||||
|
|
||||||
arg.Append(" -i \"").Append(state.AudioStream.Path).Append('"');
|
arg.Append(" -i \"").Append(state.AudioStream.Path).Append('"');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user