gpt4 book ai didi

c++ - 使用 C++ 和 ffmpeg 从 mp2 流中提取 KLV 数据

转载 作者:太空宇宙 更新时间:2023-11-04 12:39:46 24 4
gpt4 key购买 nike

我有一个包含 klv 元数据的 mp2 流。我使用 ffmpeg 命令行将 klv 存储在一个文件中:

ffmpeg -i input.mpg -map data-re -codec copy -f data output.klv

我现在想用 C++ 来做这个。所以,我有

FFMPEG 设置......

然后是主循环

// Read frames
while(av_read_frame(pFormatCtx, &packet) >= 0)
{
// Is this a packet from the video stream?
if(packet.stream_index == videoStream)
{
// Decode video frame
avcodec_decode_video2(pCodecCtx, pFrame, &frameFinished, &packet);

// Did we get a video frame?
if(frameFinished)
{
// Convert the image from its native format to RGB
sws_scale(sws_ctx, (uint8_t const * const *)pFrame->data,
pFrame->linesize, 0, pCodecCtx->height,
pFrameRGB->data, pFrameRGB->linesize);

QImage myImage(pFrameRGB->data[0], pCodecCtx->width, pCodecCtx->height, QImage::Format_RGB888);

QPixmap img(QPixmap::fromImage(myImage.scaled(ui->label->width(),ui->label->height(),Qt::KeepAspectRatio)));

ui->label->setPixmap(img);
QCoreApplication::processEvents();
}
}
else // klv stream
{
// Decode klv data
qDebug() << packet.buf->size;
for(int i=0; i<packet.buf->size; i++)
{
qDebug() << packet.buf->data[i];
}
}

产生的 klv 输出是不同的——我一定是在处理数据包时做错了什么。帧很好,我在 qt 标签中查看它 - 所以我的 ffmpeg 设置正在处理图像而不是 klv 数据。

最佳答案

我的错 - 这段代码正在运行 - 我正在将 int 输出与在记事本中查看的 ffmpeg 输出进行比较 - 当我使用 notepad++ 时 - 我可以理解 ffmpeg 输出并且它确实相关 :)

关于c++ - 使用 C++ 和 ffmpeg 从 mp2 流中提取 KLV 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54772703/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com