我正在使用Icecast的功能添加包含流的当前元数据的重复消息。它启用了以下标题:
<script id="source" language="javascript" type="text/javascript">
$.ajax({
url: 'Kategorie1.php', //the script to call to get data
data: "", //you can insert url argumnets here to pass to api.php
//for example "id=5&parent=6"
dataType: 'json', //data format
success: function(data) {
console.log(data); // outputs the json data into your console
}
})
此后,在HTTP响应中,有一个包含间隔的标头,该标识定义服务器在普通流内容的request.headers().set("Icy-MetaData", "1");
字节后再次发送元数据。另外,我想在元数据标签之间存储流内容。
我现在的问题是,实现这一目标的最佳方法是什么?一个是使用x
到&#34;过滤器&#34;元数据标签,但字节已经解码为ByteToMessageDecoder
。我当前的处理程序如下所示:
HttpObject
谢谢!