快速格式转换开源库

发布于 2024-09-05 03:26:20 字数 1539 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

岛歌少女 2024-09-12 03:26:20

看一下 FFmpeg 的 libswscale 库,它根据以下条款获得许可LGPL。

我不确定 libswscale 是否可以使用 MSVC 进行编译(可能不会),但您始终可以使用 MSYS/MingW 将 libswscale 编译为共享库并在 MSVC 项目中使用它。

Have a look at FFmpeg's libswscale library, which is licensed under the terms of the LGPL.

I'm not sure if libswscale will compile with MSVC (it probably won't), but you can always use MSYS/MingW to compile libswscale to a shared library and use that in your MSVC project.

本宫微胖 2024-09-12 03:26:20

libyuv 是一个开源项目,包含 YUV 缩放和转换功能。

使用点、双线性或盒式滤波器缩放 YUV 以准备压缩内容。
从网络摄像头格式转换为 YUV。
从 YUV 转换为渲染/效果格式。
旋转 90/180/270 度以适应移动设备的纵向模式。

针对 x86/x64 上的 SSE2/SSSE3/AVX2 进行了优化。
针对 Arm 上的 Neon 进行了优化。
针对 Mips 上的 DSP R2 进行了优化。

libyuv is an open source project that includes YUV scaling and conversion functionality.

Scale YUV to prepare content for compression, with point, bilinear or box filter.
Convert to YUV from webcam formats.
Convert from YUV to formats for rendering/effects.
Rotate by 90/180/270 degrees to adjust for mobile devices in portrait mode.

Optimized for SSE2/SSSE3/AVX2 on x86/x64.
Optimized for Neon on Arm.
Optimized for DSP R2 on Mips.

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