是否可以将 IDv3 注入 MP3 流?
我会在 PHP 中制作一个中继音频流服务器(类似于shoutcast 中继,但可以自定义)。 是否可以动态添加 IDv3 标签的每个指定数据包(可能每秒 - 每 64KB)? 如果可以的话该怎么做呢?
I'd making a relay audio stream server (like shoutcast relaying but with customization) in PHP.
Is it possible to dynamicly add IDv3 tag's every specified pack of data (maybe every second - every 64KB)?
If it`s possible how to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IDv3 标签出现在 mp3 的开头,但由于 mp3 只是一系列帧,因为可以使用 mp3splt 来剪切它们,而无需重新编码该流将是 IDv3 标签,后跟 mp3 数据,然后它会重复流的下一部分采用相同的格式,
显然我忽略了很多细节
IDv3 tags occur at the beginning of a mp3 but as an mp3 is just a series of frames due to the way it's possible to cut them with say mp3splt without re-encoding that stream would be IDv3 tags followed by mp3 data and then it would repeat in the same format for the next part of the stream
clearly i'm ignoring a lot of the details