首页 > 代码库 > [ffmpeg]通过Qt调用ffmpeg命令
[ffmpeg]通过Qt调用ffmpeg命令
Java代码
poc = new QProcess(this);
QString command = QString("D:/ffmpeg-bbezxcy-compressMode-0.0.1/bin/ffmpeg -i F:rawvideo/1.mp4 -pass 1 -y F:/rawvideo/1xxx1.mp4");
connect(poc, SIGNAL(readyReadStandardOutput()), this, SLOT(sltOnReadOutput()));
connect(poc, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(onFinished(int, QProcess::ExitStatus)));
//poc->start("D://ffmpeg.bat");
poc->setProcessChannelMode(QProcess::MergedChannels);
poc->start(command);
在Qt的槽中这样获取ffmpeg的字符串
Cpp代码 下载
void QtClass::sltOnReadOutput(){
QString s = poc->readAllStandardOutput();
}
[ffmpeg]通过Qt调用ffmpeg命令
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。