rawvideo和rgb32值传递给FFmpeg [英] rawvideo and rgb32 values passed to FFmpeg

查看:1611
本文介绍了rawvideo和rgb32值传递给FFmpeg的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用以下调用将文件转换为PNG格式:

I'm converting a file to PNG format using this call:

ffmpeg.exe -vframes 1 -vcodec rawvideo -f rawvideo -pix_fmt rgb32 -s <width>x<height> -i infile -f image2 -vcodec png out.png

我想使用一个可以链接或编译成封闭源商业产品,与 FFmpeg 不同,所以我需要了解我传入的输入文件的格式。

I want to use a converter that can be linked or compiled into a closed-source commercial product, unlike FFmpeg, so I need to understand the format of the input file I'm passing in.

所以, rawvideo 是什么意思是 FFmpeg

FFmpeg 确定输入文件具有什么类型的原始格式,或者 rawvideo 表示不同的东西

Is FFmpeg determining what type of raw format the input file has, or does rawvideo denote something distinct?

rgb32 是什么意思?

输入文件的大小稍微大于(width * height * 8)个字节。

The size of the input file is a little more than (width * height * 8) bytes.

推荐答案

通常,视频文件包含嵌入在媒体容器中的视频流(其格式由 -vcodec 指定) mp4,mkv,wav等)。 -f 选项用于指定容器格式。 -f rawvideo 基本上是一个虚拟设置,告诉ffmpeg您的视频不在任何容器中。

Normally a video file contains a video stream (whose format is specified using -vcodec), embedded in a media container (e.g. mp4, mkv, wav, etc.). The -f option is used to specify the container format. -f rawvideo is basically a dummy setting that tells ffmpeg that your video is not in any container.

-vcodec rawvideo 表示容器内的视频数据未被压缩。但是,有许多方式可以存储未压缩的视频,因此需要指定 -pix_fmt 选项。在您的情况下, -pix_fmt rgb32 表示,原始视频数据中的每个像素使用32位(每个红色,绿色和蓝色1个字节,忽略其余字节) 。

-vcodec rawvideo means that the video data within the container is not compressed. However, there are many ways uncompressed video could be stored, so it is necessary to specify the -pix_fmt option. In your case, -pix_fmt rgb32 says that each pixel in your raw video data uses 32 bits (1 byte each for red, green, and blue, and the remaining byte ignored).

有关选项的含义的更多信息,请参阅 ffmpeg文档

For more information on what the options mean, see the ffmpeg documentation.

这篇关于rawvideo和rgb32值传递给FFmpeg的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆