Change GStreamer text

This commit is contained in:
Jonas Kvinge
2021-07-11 05:17:45 +02:00
parent cdb3729a88
commit 5700c3f72e

View File

@@ -465,7 +465,7 @@ SongLoader::Result SongLoader::LoadRemote() {
// Create the source element automatically based on the URL // Create the source element automatically based on the URL
GstElement *source = gst_element_make_from_uri(GST_URI_SRC, url_.toEncoded().constData(), nullptr, nullptr); GstElement *source = gst_element_make_from_uri(GST_URI_SRC, url_.toEncoded().constData(), nullptr, nullptr);
if (!source) { if (!source) {
errors_ << tr("Couldn't create gstreamer source element for %1").arg(url_.toString()); errors_ << tr("Couldn't create GStreamer source element for %1").arg(url_.toString());
return Error; return Error;
} }
g_object_set(source, "ssl-strict", FALSE, nullptr); g_object_set(source, "ssl-strict", FALSE, nullptr);