如何使用vlc-qt从视频中获取帧

时间:2017-12-15 10:41:50

标签: c++ qt vlc vlc-qt

我使用vlc-qt解码h264视频流,但我需要视频(流)中的每一帧进行进一步处理。我找到了描述解决方案的链接:

https://discuss.tano.si/t/how-to-get-frame-from-video/253

我创建了一个继承自VlcVideoStream类的类,并重新实现了frameUpdated()函数,如下所示:

void MyVideoStream::frameUpdated()  {
qDebug() << "frame" ;
int rows, cols, matType;
// convert to shared pointer to const frame to avoid crash
std::shared_ptr<const VlcYUVVideoFrame> frame = std::dynamic_pointer_cast<const VlcYUVVideoFrame>(renderFrame());

if (!frame) {
    return; // LCOV_EXCL_LINE
}

rows = frame->height + frame->height/2;
cols = frame->width;

}

并宣布我的班级为:

MyVideoStream *_stream ;
_stream = new MyVideoStream(Vlc::YUVFormat,ui->video) ;
_stream->init(_player) ;

其中_player是VlcMediaPlayer对象引用。但是当我运行程序时没有发生任何事情。我不知道是什么问题。

1 个答案:

答案 0 :(得分:0)

当您将VlcVideoStream子类化并重新实现frameUpdated()时,每次更新YUV帧时您都可以访问。 如果您熟悉Opencv,只需将这些代码添加到frameUpdated()函数中,即可看到灰色图像:

void MyVideoStream::frameUpdated() 
{
      std::shared_ptr<const VlcYUVVideoFrame> frame= std::dynamic_pointer_cast<const VlcYUVVideoFrame>(renderFrame());

 if (!frame) {
  return; // LCOV_EXCL_LINE
  }

int width = frame->width;
int height = frame->height;

cv::Mat result = cv::Mat(height, width, CV_8UC1,    (void*)frame->frameBuffer.data());
imshow("result", result);
waitKey(2);

}