Browse Source

Merge branch 'support-external-audio-files' of github.com:jonas-resch/jellyfin into support-external-audio-files

Jonas Resch 3 years ago
parent
commit
ca2d94ee97
1 changed files with 2 additions and 2 deletions
  1. 2 2
      MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs

+ 2 - 2
MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs

@@ -698,7 +698,7 @@ namespace MediaBrowser.Controller.MediaEncoding
 
             if (state.AudioStream != null && state.AudioStream.IsExternal)
             {
-                arg.Append(" -i \"").Append(state.AudioStream.Path).Append("\"");
+                arg.Append(" -i \"").Append(state.AudioStream.Path).Append('"');
             }
 
             return arg.ToString();
@@ -2007,7 +2007,7 @@ namespace MediaBrowser.Controller.MediaEncoding
                 if (state.AudioStream.IsExternal)
                 {
                     int externalAudioMapIndex = state.SubtitleStream != null && state.SubtitleStream.IsExternal ? 2 : 1;
-                    int externalAudioStream = state.MediaSource.MediaStreams.Where(i => i.Path == state.AudioStream.Path).ToList().IndexOf(state.AudioStream);
+                    int externalAudioStream = state.MediaSource.MediaStreams.FindIndex(i => i.Path == state.AudioStream.Path);
 
                     args += string.Format(
                         CultureInfo.InvariantCulture,