"GStreamer-CRITICAL" after loading qmediaplayer's libs and plugins
-
@SGaist Hi,
If you asking about gst-plugins compilation, so all of the compilation done with my toolchain of-course.
Is there spacific location for them or /usr/lib is good enough?My target working with Linux FB, is that an issue? Because I have another log that show "No m_videoSink available"
When i have searched for that log i saw the code below in
qtmultimedia/src/gsttols/qgstreamervideowindow.cpp and it concern meif (elementName) {
m_videoSink = gst_element_factory_make(elementName, NULL);
} else if (QGuiApplication::platformName().compare(QLatin1String("xcb"), Qt::CaseInsensitive) == 0) {
// We need a native X window handle to be able to use xvimagesink.
// Bail out if Qt is not using xcb (the control will then be ignored by the plugin)
m_videoSink = gst_element_factory_make("xvimagesink", NULL);
}if (m_videoSink) {
...
}
else
qDebug() << "No m_videoSink available!";
Dose QtMultimedia gstreamer-1.0 support has been written for xcb and No eglfs, linuxfb, directfb, etc is available?Best regards,
IL -
What SGaist asked is: did you compile the plugins for ARM architecture?
Is your toolchain for cross-compilation for ARM? -
AFAIK it't not dependent on the QPA plugin
-
Found the missing plugins
Playing AVI required:- typedefinefunction lib
- inter lib
- autodetect lib
- libav codecs
- avi
And of-course I have new isuue :-(
Failed to start video surface due to main thread blocked
Thanks For the help, I probably start a new thread.
IL -
Glad you could go further !
You can use the "Topic Tool" button for that :)
-
@Ryan-Lee Set QT_DEBUG_PLUGINS variable before starting your app and analysehttps://doc.qt.io/qt-5.10/debug.html its output.
See https://doc.qt.io/qt-5.10/debug.html