视频文件编码和解码之间的主要区别
主要区别是什么? 假设我有一个 .flv 格式的视频,我想使用 avcodec.dll 将其转换为 .h264 格式。我将对其进行编码或解码吗? 我真的很困惑。 任何明确的答案将不胜感激。
What is the main difference?
Suppose i have a video in the format .flv and i want to convert it to format .h264 using avcodec.dll. Will I be encoding or decoding it?
I am really confused.
Any clear answer will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有两种类型的视频格式 - 未压缩(原始视频格式,如 RGB 或 YUV 或其他格式)和压缩(如 H.264 或 WebM 等)。通常,没有从一种压缩格式到另一种压缩格式的直接转码,因此您需要使用共同点 - 原始视频(未压缩)。您必须对其进行解码(解压缩),然后编码(压缩)为另一种格式。
打个比方 - 认为您有
zip
存档,并且需要将其设为rar
存档 - 首先您需要解压
文件,然后通过rar
压缩there're two types of video formats - uncompressed (raw video formats like RGB or YUV or whatever else) and compressed (like H.264 or WebM etc.). typically there's no direct transcoding from one compressed format to another, so you need to use common denominator - raw video (not compressed). You have to decode (decompress) it and then encode (compress) to another format.
for analogy - think you have
zip
archive and you need to make itrar
archive - first you'llunzip
your file(s) and then compress byrar
您可能会转码它。
如果没有,那么您将首先对其进行解码,然后再次对其进行编码。
You will probably be transcoding it.
If not, then you will first decode it, and than encode it again.