视频文件编码和解码之间的主要区别

发布于 2024-10-15 05:55:09 字数 101 浏览 1 评论 0原文

主要区别是什么? 假设我有一个 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

入画浅相思 2024-10-22 05:55:09

有两种类型的视频格式 - 未压缩(原始视频格式,如 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 it rar archive - first you'll unzip your file(s) and then compress by rar

仲春光 2024-10-22 05:55:09

您可能会转码它。

如果没有,那么您将首先对其进行解码,然后再次对其进行编码。

You will probably be transcoding it.

If not, then you will first decode it, and than encode it again.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文