处理视频帧

发布于 2024-09-13 23:26:57 字数 148 浏览 1 评论 0原文

我正在尝试找到执行以下功能的软件:

  1. 当流视频的压缩帧到达目标服务器时,在每个帧到达目标服务器后立即复制每个帧,
  2. 将数字化像素从一个帧复制到另一个帧内存位置
  3. 混合多个视频帧的数字化音频场并将结果复制到内存中

I am trying to find software that perform the following functions:

  1. when the compressed frames of a streamed video arrive to a destination server, make a copy of each frame as soon as it arrives at the destination server
  2. copy the digitized pixels from a frame to another memory location
  3. mix the digitized audio fields of several video frames and copy the result in memory

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

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

发布评论

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

评论(1

骷髅 2024-09-20 23:27:03

您的问题没有详细说明您想要实现的目标或限制是什么。您能否澄清一下这个问题,尤其是第 3 项?

FFMPEG 至少可以解决输出帧的问题(无论如何对于大多数格式),并且可以在许多平台上使用。有关示例,请参阅此处

例如:

ffmpeg -i input.dv -r 25 -f image2 images%05d.png

Your question doesn't give a detailed impression of what you're trying to achieve or what the constraints are. Could you clarify the question, especially item #3?

FFMPEG would at least solve the problem of outputting the frames (for most formats anyway), and is available on many platforms. See here for examples.

e.g.:

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