ubuntu 12.04で外部Linuxプログラムを起動するプログラムを実行しようとしています。このコマンドは、ターミナル ウィンドウに入力すると機能しますが、QT 4.8 でクリックされたボタン オブジェクトに配置すると機能しないようです。
端末ウィンドウに入力したときに機能するコードを次に示します。(ウェブカメラにアクセスし、オーバーレイを使用します)。私がやろうとしているのは、ボタンが押されるたびにウェブカメラの写真を撮り、日付と時刻をファイル名として使用して画像を保存することです)
gst-launch-0.10 v4l2src ! video/x-raw-yuv, width=640, height=480 ! timeoverlay halignment=right valignment=bottom shaded-background=true ! clockoverlay halignment=left valignment=bottom text="M/D/Y:" shaded-background=true time-format="%m/%d/%Y %H:%M:%S" ! autovideosink
ドキュメント
HOWTO: Start an external program from a Qt application
http://www.qtforum.org/article/3079/howto-start-an-external-program-from-a-qt-application.htmlに従っていました
しかし、QTのプッシュボタンにコードを追加すると
void runprg2::on_pushButton_clicked()
{
commandAndParameters<<"gst-launch-0.10 v4l2src ! video/x-raw-yuv, width=640, height=480 ! timeoverlay halignment=right valignment=bottom shaded-background=true ! clockoverlay halignment=left valignment=bottom text="M/D/Y:" shaded-background=true time-format="%m/%d/%Y %H:%M:%S" ! autovideosink";
}
コンパイルされず、エラーが発生します。このチュートリアルは正しいですか?
エラーを見る
../test3/main.cpp: In function 'int main(int, char**)':
../test3/main.cpp:23:26: error: expected primary-expression before '<<' token
../test3/main.cpp:28:48: error: no matching function for call to 'QProcess::QProcess(QStringList&)'
../test3/main.cpp:28:48: note: candidates are:
/usr/include/qt4/QtCore/qprocess.h:228:5: note: QProcess::QProcess(const QProcess&)
/usr/include/qt4/QtCore/qprocess.h:228:5: note: no known conversion for argument 1 from 'QStringList' to 'const QProcess&'
/usr/include/qt4/QtCore/qprocess.h:133:14: note: QProcess::QProcess(QObject*)
/usr/include/qt4/QtCore/qprocess.h:133:14: note: no known conversion for argument 1 from 'QStringList' to 'QObject*'
../test3/main.cpp:31:25: error: no matching function for call to 'QProcess::start()'
../test3/main.cpp:31:25: note: candidates are:
/usr/include/qt4/QtCore/qprocess.h:136:10: note: void QProcess::start(const QString&, const QStringList&, QIODevice::OpenMode)
/usr/include/qt4/QtCore/qprocess.h:136:10: note: candidate expects 3 arguments, 0 provided
/usr/include/qt4/QtCore/qprocess.h:137:10: note: void QProcess::start(const QString&, QIODevice::OpenMode)
/usr/include/qt4/QtCore/qprocess.h:137:10: note: candidate expects 2 arguments, 0 provided
make: *** [main.o] Error 1
すべてのコードを投稿することが適切なエチケットだとは思わなかったので、エラーと問題があったプッシュ ボタンのコードを投稿しました。すべてのコードを投稿する必要がありますか?
これが役立つ場合は、main.cpp を次に示します。
#include <QtGui/QApplication>
#include "mainwindow.h"
#include <qapplication.h>
#include <qprocess.h>
#include <qstringlist.h>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
// Set up the command line which starts the external program as QStringList.
QStringList commandAndParameters;
/* Fill in the following things:
* - Name of program to execute.
* - Every option needed by the program.
* Attention: be aware of any strange options you pass to the program, e.g.
* IP addresses. Quoting these options will usually help.
*/
// commandAndParameters<<"konqueror"
<<"file:/home/thomas";
/* Create a QProcess instance. It does not matter if it is created on the stack or
* on the heap. - Ahem, I tested it on Linux only. :-)
*/
QProcess myProcess(commandAndParameters);
// Start the QProcess instance.
myProcess.start();
/* O.k., everything is fine now, leave the Qt application. The external program
* will continue running.
*/
return 0;
return a.exec();
}