使用php从流中获取字节

发布于 2024-12-14 04:25:54 字数 94 浏览 2 评论 0原文

我知道用 php 流式传输 flv 是可能的,有一些库可以实现这一点,但我的问题是,是否可以从 flv 流中获取字节并使用它们来绘制声波形状并导出 jpg 或 png 位图?

I know that streaming flv with php is possible, there are libraries out there for that but my question is, is it possible to get bytes from flv stream and use them to draw sound wave shape and export is a jpg or png bitmap?

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

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

发布评论

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

评论(2

絕版丫頭 2024-12-21 04:25:54
  1. 使用 FFMPEG 提取音频部分并转换为临时 WAV 文件。
  2. 运行众多可用脚本之一 在此 WAV 上生成您想要的波形打印。
  1. Use FFMPEG to extract the audio portion and convert to a temporary WAV file.
  2. Run one of the many scripts available on this WAV to generate the wave print you want.
ι不睡觉的鱼゛ 2024-12-21 04:25:54

当在 PHP 中接收数据时,它很可能会存储为字符串。 PHP 字符串只是字节序列。因此 $string[0] 给出字符串的第一个字节。这就是在 PHP 中获取一个字节所需要做的全部事情。

When receiving the data in PHP, it'll most likely be stored as a string. PHP strings are simply byte sequences. So $string[0] gives you the first byte of the string. That's all you need to do to get a byte in PHP.

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