Przeglądaj źródła

PlayerComponent: fallback to first stream if stream index can't be found

This fixes selection of the audio stream with some transcodes. The
reason is that web-client will pass the original file's stream indexes
to the host, which is wrong.

In the long run it'd probably be better to pass explicitly whether
transcoding is used, or so. This commit still has some justification
beyond being a hack to make transcoding work again because e.g. the
server information might be outdated, the server somehow determines
stream indexes differently, or other cases when the indeses mismatch.
Vincent Lang 8 lat temu
rodzic
commit
d5fbbafef7
1 zmienionych plików z 10 dodań i 1 usunięć
  1. 10 1
      src/player/PlayerComponent.cpp

+ 10 - 1
src/player/PlayerComponent.cpp

@@ -758,6 +758,8 @@ void PlayerComponent::reselectStream(const QString &streamSelection, MediaType t
     }
   }
 
+  QString selection = "";
+
   for (auto stream : findStreamsForURL(streamName))
   {
     auto map = stream.toMap();
@@ -767,10 +769,17 @@ void PlayerComponent::reselectStream(const QString &streamSelection, MediaType t
 
     if (map["ff-index"].toString() == streamID)
     {
-      mpv::qt::set_property(m_mpv, streamIdPropertyName, map["id"]);
+      selection = map["id"].toString();
       break;
     }
   }
+
+  // Fallback to the first stream if none could be found.
+  // Useful if web-client uses wrong stream IDs when e.g. transcoding.
+  if (!streamID.isEmpty() && selection.isEmpty())
+    selection = "1";
+
+  mpv::qt::set_property(m_mpv, streamIdPropertyName, selection);
 }
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////