qt QProcess로 커맨드라인에서 프로그램을 파이프라인으로 실행하는 방법

익명 사용자의 이미지

안녕하세요 qt 중인 초짜입니다 제목에 써 놓은것처럼 QProcess를 사용해서 커맨드라인상의 파이프라인을 사용하여 프로그램을 실행하고 싶습니다.

다음은 제가 작성한 코드입니다.

    QProcess* videoCallProcess1 = new QProcess();
    QProcess* videoCallProcess2 = new QProcess();
 
    videoCallProcess1->setStandardOutputProcess(videoCallProcess2);
 
    QStringList args1;
    args1<<"-n"<<"-t"<<"0"<<"-vf"<<"-h"<<"720"<<"-w"<<"1280"<<"-fps"<<"30"<<"-b"<<"2000000"<<"-o"<<"-";
    videoCallProcess1->start("raspivid", args1);
 
    QStringList args2;
    args2 << "-v"<<"fdsrc"<<"!"<<"h264parse"<< "!"<< "rtph264pay"<< "config-interval=1"<< "pt=96"<< "!"<<"gdppay" 
             << "!"<< "tcpserversink"<< "host=127.0.0.1"<< "port=5000";
    videoCallProcess2->execute("gst-launch-1.0", args2);

여러 검색을 통해서 이런 코드를 구성했는데 각 프로세스는 잘 돌아가도 파이프라이닝이 잘 이루어지지 않는 것 같습니다
도와 주십시오 ㅠㅠ

*원래 사용하는 명령어는 raspivid -n -t 0 -vf -h 720 -w 1280 -fps 25 -b 2000000 -o - | gst-launch-1.0 -v fdsrc ! h264parse ! rtph264pay config-interval=1 pt=96 ! gdppay ! tcpserversink host=127.0.0.1 port=5000 입니다

jachin의 이미지

command 1 | command 2 를 실행한다면, command 1 의 출력 결과(stdout)가 command 2의 입력(stdin)으로 연결되는 것이라 생각합니다.

비슷한 고민을 가진 분이 질문한 글이 있네요.

https://stackoverflow.com/questions/17344807/read-qprocess-output-to-string

QString arg1out(args1.readAllStandardOutput()); 으로 출력을 받아서 args2 에 전달해주시면 되지 않을까요? :)

jachin의 이미지

괜히 아는척 했습니다. ㅎㅎㅎ Pipeline set 을 해두셨지만, 아마 프로세스 실행 결과를 기다리지 않으셔서 생기는 문제 같습니다. 링크 안에서 Process Start 와 Wait 부분을 쓰시면 되지 않을까 생각합니다.

질문게시자의 이미지

답변 감사합니다. 제 경우에는 조금 특이한 경우인데요 처음 프로세스에서 지속적으로 출력을 두번째 프로세스에게 계속 보내는 상황이기때문에 인터넷에서 찾았던 내용과 많이 달랐습니다. 혹시 이런경우에는 방법이 없을까요 .. ?

jachin의 이미지

이런 경우는 QString 보다는 QTextStream 클래스 객체를 사용하시는 것이 맞는 것 같습니다.

http://doc.qt.io/qt-5/qtextstream.html

시작과 끝이 정해지지 않는 자료의 흐름을 스트림(Stream)이라고 표현하는데, 실제 C++ 의 stream 도 그런 의미이고, 구현도 stream 을 통해 이뤄져 있습니다. 문제는 다른 명령어가 전달받은 스트림의 포인터를 따라갈 수 있어야 하는 것인데요, 명령어로 입력해도 계속 실행되고 있다면, 수정하시고 충분히 작동시키실 수 있을 것 같습니다. :)

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.