GstEnginePipeline: Set Spotify bitrate to 320
This commit is contained in:
parent
c2a7509e0e
commit
d3dd26c596
|
@ -1006,14 +1006,18 @@ void GstEnginePipeline::SourceSetupCallback(GstElement *playbin, GstElement *sou
|
|||
}
|
||||
|
||||
#ifdef HAVE_SPOTIFY
|
||||
if (instance->media_url_.scheme() == QStringLiteral("spotify") &&
|
||||
!instance->spotify_username_.isEmpty() &&
|
||||
if (instance->media_url_.scheme() == QStringLiteral("spotify")) {
|
||||
if (g_object_class_find_property(G_OBJECT_GET_CLASS(source), "bitrate")) {
|
||||
g_object_set(source, "bitrate", 2, nullptr);
|
||||
}
|
||||
if (!instance->spotify_username_.isEmpty() &&
|
||||
!instance->spotify_password_.isEmpty() &&
|
||||
g_object_class_find_property(G_OBJECT_GET_CLASS(source), "username") &&
|
||||
g_object_class_find_property(G_OBJECT_GET_CLASS(source), "password")) {
|
||||
g_object_set(source, "username", instance->spotify_username_.toUtf8().constData(), nullptr);
|
||||
g_object_set(source, "password", instance->spotify_password_.toUtf8().constData(), nullptr);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
// If the pipeline was buffering we stop that now.
|
||||
|
|
Loading…
Reference in New Issue