使用php从流中获取字节
我知道用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当在 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.