我想在bash
中获得仅实时icecast流的标题信息。我想使用这些信息
Content-Type: audio/ogg
采取某些行动。
我已经尝试了curl
和wget
但是它接缝冰网服务器不接受HEAD命令,因此我无法使用curl --head
或-I
。
我需要做的是
curl -s -m 1 -D - -o /dev/null http://stream.radioreklama.bg:80/radio1_low.ogg | grep Content-Type
***只使用来自icecast目录(http://dir.xiph.org/)
的示例流问题是-m 1
,即它仍然会获取1秒的内容。我不想要任何内容,只需抓住标题并结束。
任何建议都表示赞赏。