Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

defaultServiceProvider::requestService(): no service found for - "org.qt-project.qt.camera"

Tags:

ubuntu

qt

qt5.6

I'm trying to execute QCamera example on Ubuntu, Qt 5.6. "The camera service is missing" message observed.

defaultServiceProvider::requestService(): no service found for - "org.qt-project.qt.camera"
like image 940
shevv Avatar asked Jun 06 '16 06:06

shevv


1 Answers

Check if you have all dependencies installed. They are:

qtmultimedia5-dev

_

libqt5multimedia5-plugins

Ex:

sudo apt-get install libqt5multimedia5-plugins
like image 94
Ráfagan Avatar answered Nov 09 '22 14:11

Ráfagan