View Single Post
Posts: 2,154 | Thanked: 8,464 times | Joined on May 2010
#20
Originally Posted by marxian View Post
No. You have to use Qt.
So use Qt correctly Qt has QProcess

Code:
#include <QCoreApplication>
#include <QProcess>

int main(argc, char *argv[])
{
QCoreApplication app(argc, argv); QProcess::execute("gst-launch v4l2src ! filesink location=/dev/null"); return app.exec();
}