icecast

MediaElement and AAC stream support on Windows Phone 7

一曲冷凌霜 提交于 2019-12-21 17:02:53
问题 According to this link the Windows Phone 7 supports the AAC encoded audio stream in the browser and via the MediaElement API as well. We have tested few the icecast streams (e.g. this) it on our devices (e.g. HTC HD7 T9292, with latest updated - ver 7.0 (7392) ), but it does not work either in web browser or via API. The mp3 live stream works fine. Any clues, why the AAC does not work, even the documentation says it should? BR SteN 回答1: Icecast is not pure AAC, in 7.0 you need to strip out

Title of current icecast streamed song

允我心安 提交于 2019-12-20 05:49:25
问题 i've readed some question,but not one solved me. i've maked a simple client to read soundstream by icecast2 server. i read sound sound with: a = new WMPLib.WindowsMediaPlayer(); a.URL = "http://radiolink:8000/music"; a.controls.play(); it's works and i ear music. now i want to read title of current song. i've found here i have to create a request like: HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://radiolink:8000/music"); request.Headers.Clear(); request.Headers.Add("GET",

Use PHP to show Icecast2 statistics

半世苍凉 提交于 2019-12-18 11:13:26
问题 I have some trouble viewing statistics (viewers, current song playing etc) with PHP and I can't find any information how to do this. There is a couple of XLS files included with Icecast2 and I could include this files with PHP to my site but I wan't to update the DIV that the include is in every 5 seconds and that won't work with XLS files. Thanks! 回答1: Hi there and thanks for the code. I made a class from it and added some checks so it doesn't complain when the server is offline. Since I

Fetch Icecast song title without buffering audio

蹲街弑〆低调 提交于 2019-12-13 18:34:09
问题 I want to write a small JavaScript library that can fetch "now playing" data for Icecast streams. From what I understand, I can do this by sending a HTTP request to a radio stream as follows: GET /radiotunes_bebop HTTP/1.1 Host: pub2.radiotunes.com Icy-MetaData:1 The server will then answer with some reponse headers. One of them is the icy-metaint field that indicates the interval at which the metadata is inserted into the stream. The metadata will look something like this: StreamTitle=

Error occurred executing external native build for ndkBuild in android studio

六月ゝ 毕业季﹏ 提交于 2019-12-12 10:25:55
问题 I used coolMic repofor broadcasting audio from android device. But When i import it in android studio i got following error:- E:\New folder (2)\CoolMicApp-Android\app\build.gradle Error:executing external native build for ndkBuild E:\New folder (2)\CoolMicApp-Android\app\src\main\jni\Android.mk Error:executing external native build for ndkBuild E:\New folder (2)\CoolMicApp-Android\app\src\main\jni\Android.mk I checked on some resources but not help to resolve this. Also From coolMic document

PHP script to extract artist & title from Shoutcast/Icecast stream

本小妞迷上赌 提交于 2019-12-12 07:13:26
问题 I found a script which can extract the artist & title name from an Icecast or Shoutcast stream. I want the script to update automatically when a song changed, at the moment its working only when i execute it. I'm new to PHP so any help will be appreciated. Thanks! define('CRLF', "\r\n"); class streaminfo{ public $valid = false; public $useragent = 'Winamp 2.81'; protected $headers = array(); protected $metadata = array(); public function __construct($location){ $errno = $errstr = ''; $t =

Send buffer stream to Icecast server using jshout in Java [closed]

久未见 提交于 2019-12-12 04:51:01
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 4 years ago . I am trying to develop live streaming using Icecast or SHOUTcast library. I recorded audio in Java, and I need to send a byte stream to the Icecast Server. 回答1: http://icecast.org/download/#bindings lists: https://github.com/OlegKunitsyn/libshout-java Have you tried that yet? Also

Icecast relay stream can buffer a progressive audio stream

偶尔善良 提交于 2019-12-12 04:37:09
问题 After reading the documents of icecast, I have two questions: 1) I'm not sure the icecast server can buffer audio streams, if It does can, How about using relaying? 2) If i have many dynamic relay servers to proxy, How to config the config file? I mean I have to change the config file dynamicly, since i have not sean that icecast supports the regular expression such as /realtime(\d+) to match all the realtime stations. 回答1: Icecast does buffer streams. When a client connects, the buffer data

PHP - Icecast info being updated on page

独自空忆成欢 提交于 2019-12-12 02:57:33
问题 I'm using a script from this site. This script works fine for me and it does what its need to do but I have one problem. When a track finishes on my Icecast server it doesn't get updates on the site. So if my song is 'Stole the show' than it says 'Stole the show' the page but when the song finished and e.g. 'Thinking out loud' starts the page still says 'Stole the show' on a refresh it will update. But how to make it so the page auto updates itself so the users doesn't have to refresh

How do I get the output from an ASIO device to IceCast2 or FFMpeg?

泪湿孤枕 提交于 2019-12-11 23:04:56
问题 I have an ASIO device (Presonus Firestudio 2626). I am using it to mix and create different outputs on all of it's provided outputs (about 9 outputs like ADT1, ADT2). I need someway to stream these outputs using either IceCast or FFMpeg RTP. One of the problems is that I have a restriction on using only a MAC or a Windows machine as my ASIO device does not provide drivers for ubuntu. What are the ways that I can connect the ASIO device outputs to IceCast or FFMpeg? I've tried the following.