QMediaPlayer::ServiceMissingError
-
-
AFAIK, Qt 5.5 uses GStreamer 0.10. So you can either install that version (plus plugins) or rebuild the QtMultimedia plugins against your installed GStreamer version.
-
In this case not because it's a new major release (1.0 vs 0.1). That's why the plugin doesn't load.
Since you'll be building Qt 5.7 by hand, it will pickup the your installed GStreamer and build the plugin accordingly.
-
No, Qt Creator is a younger and independent project. However you don't have to build it yourself (unless your current Qt Creator is really old).
Qt Creator can handle older as well as newer version of Qt.
-
Add your self built 5.7 to the Qt Versions and then create a new Kit using it. Then you'll be able to configure and build your project with that Kit.
-
'make -j4' run for about an hour now, and finished with
'Makefile:77: recipe for target 'module-qtbase-make_first' failedBefore running 'make', I run './configure -help' and I did not see anything related to module 'qtbase'. Any ideia on what I missed?
Thanks
-
I think I found the answer at https://bbs.archlinux.org/viewtopic.php?id=191765. Well, if it works, it'll take about an hour for 'make' to run again. It's 9:30 p.m. here, so maybe I'll only have news tomorrow.
Thanks again!
-
Did you add the
-developer-buildoption ? If so you should drop it unless you plan to hack on Qt itself. -
In my first attempt, I used it, but then I tried
./configure -no-warnings-are-errors -gstreamer 1.0 -prefix /usr/local/Qt-5.7 -debugand I got the same error...
I saw somewhere someone tried with '-release -force-debug-info'. I'll try that, and let you know later.
Thanks