3

我正在使用QtGStreamer 0.10.0并且我正在尝试检索视频大小,但它为高度宽度值返回零。

但是,我可以在QImage上毫无问题地播放视频。

QGst::init();        

pipeline = QGst::Pipeline::create();
filesrc = QGst::ElementFactory::make("filesrc");
filesrc->setProperty("location", "sample.avi");
pipeline->add(filesrc);

decodebin = QGst::ElementFactory::make("decodebin2").dynamicCast<QGst::Bin>();
pipeline->add(decodebin);
QGlib::connect(decodebin, "pad-added", this, &MyMultimedia::onNewDecodedPad);
QGlib::connect(decodebin, "pad-removed", this, &MyMultimedia::onRemoveDecodedPad);
filesrc->link(decodebin);

// more code ...

上面的代码显示了管道设置的开始。通过将我的方法连接MyMultimedia::onNewDecodedPad到信号上,"pad-added"我可以访问视频数据。至少我是这么认为的。

void MyMultimedia::onNewDecodedPad(QGst::PadPtr pad)
{  
    QGst::CapsPtr caps = pad->caps();
    QGst::StructurePtr structure = caps->internalStructure(0);
    if (structure->name().contains("video/x-raw"))
    {
        // Trying to print width and height using a couple of different ways,
        // but all of them returns 0 for width/height.

        qDebug() << "#1 Size: " << structure->value("width").get<int>() << "x" << structure->value("height").get<int>();

        qDebug() << "#2 Size: " << structure->value("width").toInt() << "x" << structure->value("height").toInt();

        qDebug() << "#3 Size: " << structure.data()->value("width").get<int>() << "x" << structure.data()->value("height").get<int>();

        // numberOfFields also returns 0, which is very wierd.
        qDebug() << "numberOfFields:" << structure->numberOfFields(); 

    }

    // some other code
}

我想知道我可能做错了什么。有小费吗?我无法使用此 API 在网络上找到相关示例。

4

1 回答 1

3

解决了。在onNewDecodedPad()您仍然无法访问有关视频帧的信息。

该类MyMultimedia继承自QGst::Utils::ApplicationSink,因此我必须实现一个名为的方法,该方法QGst::FlowReturn MyMultimedia::newBuffer()在新帧准备好时由 QtGstreamer 调用。

也就是说,使用这种方法将视频的帧复制到一个QImage. 我不知道的是pullBuffer()返回 a QGst::BufferPtr,它有一个QGst::CapsPtr. 这是这个 var 的内部结构,其中包含我正在寻找的信息:

QGst::FlowReturn MyMultimedia::newBuffer()
{
    QGst::BufferPtr buf_ptr = pullBuffer();        
    QGst::CapsPtr caps_ptr = buf_ptr->caps();
    QGst::StructurePtr struct_ptr = caps_ptr->internalStructure(0);

    qDebug() << struct_ptr->value("width").get<int>() << 
                "x" << 
                struct_ptr->value("height").get<int>();

    // ...
}
于 2011-11-11T17:00:24.617 回答