transcodingthread.h
上传用户:dsfsafq
上传日期:2022-06-05
资源大小:47k
文件大小:0k
源码类别:

多媒体

开发平台:

Visual C++

  1. #ifndef TRANSCODINGTHREAD_H
  2. #define TRANSCODINGTHREAD_H
  3. #include <QtCore>
  4. class TranscodingThread : public QThread
  5. {
  6.     Q_OBJECT
  7. public:
  8.     TranscodingThread(const QString&, const QString&, const QString&);
  9.     void run();
  10. signals:
  11.     void updateProgress(const QString&);
  12. private slots:
  13.     void readOutput();
  14. private:
  15.     QString input;
  16.     QString output;
  17.     QString framerate;
  18.     QString c_proc_out;
  19.     QProcess proc;
  20. };
  21. #endif // TRANSCODINGTHREAD_H