audio-streaming

Is there a "simple" way to play linear PCM audio on the iPhone?

I'm making a media playback app which gets given uncompressed linear PCM (über raw) audio from a third-party decoder, but I'm going crazy when it comes to just playing back the most simple audio format I can imagine.. The final app will get the PCM data progressively as the source file streams from a server, so I looked at Audio Queues ...

How do I use gstreamer to make an audio clip from a segment of a longer source?

I would like to use gstreamer to save an arbitrary clip from one audio file to a new file. For example, a segment from 1 minute to 2 minutes in the original. How do I do it? ...

Is it possible to play shoutcast internet radio streams with html5?

Is it possible to play shoutcast (or some) internet radio streams with html5? So I have next code: <html> <body> <audio src="http://shoutcast.internet-radio.org.uk:10272/" /> </body> </html> I save it as HTML page and start my browser (Google chrome 4.0.249.78, safary or FF) But it does not play/work!( And it does not play with an...

Android - Can I do this with MediaRecord/MediaPlayer instead of AudioRecord/Track?

I currently use AudioRecord to record audio in from the mic of an Android device and then pipe that straight to an AudioTrack that plays it out the Earpiece of an Android device. I'm wondering can I do the same but with the MediaPlayer and MediaRecorder classes instead as I need to use the AMR-NB encoding that is available on the Media ...

How to use RtAudio with Direct Sound on windows.

The RtAudio documentation says. Windows (DirectSound): The configure script provides support for the MinGW compiler. DirectSound support is specified with the "--with-ds" flag. In order to compile RtAudio under Windows for the DirectSound API, you must have the header and source files for DirectSound version 5.0 or higher. As far as I...

is it possible to get the duration of a streaming mp3 in Flash

Hi, I'm wondering if it is at all possible to get the total duration of an mp3 being streamed in flash? At the moment I'm using the following code to estimate the lenght but it is always inaccurate var loadTime:Number=_track.bytesLoaded / _track.bytesTotal; var loadPercent:uint=Math.round(100 * loadTime); estimatedLength=Math.ceil(_tr...

AudioStreamer class problem with 32 kbps stream

I'm building an app using Matt Gallagher's AudioStreamer class. It works just fine for 64 and 128 kbps streams but it keeps failing for 32 kbps stream. Content type is audio/aacp. Thanks for any tips that can bring me back on track. ...

Is it possible to decode an MMS+WMA2 stream using audio units on the iPhone?

I am not sure whether audio units can work as codecs in a streaming audio scenario on the iPhone. I've read in various places that it can be done, but I haven't seen any examples or proper documentation for that. Instead, I find that most of the apps released have utilised ffmpeg and libmms. I appreciate any help you can give me. ...

Best way to implement audio conference in Flash/Flex

Hi! I would like to develop public audio conference (some sort of personal radio). Now I am looking for the best solution to do this. I think, that there will be one, two, three, maybe 5 people who has right to talk. Others can only hear them. And, the leading man can give this possibility to talk or deny it. I see some ways, all of th...

How can I get it the Free Music Archive audio player or is there a better alternative?

I'm looking at free streaming audio players for web browsers that I can use in a project. I really like the audio player used on http://freemusicarchive.org/. Are they using an open source audio player and can I get a hold of it? Or is it closed source? Also if there are any open-source audio players that anybody knows about I'd love to...

Audio player / Flash issue - displaying content header and characters?

Not sure how to describe this issue, but I only get it in Firefox and not any other browser. When clicking around, the page sometimes blows up with the attached pic. Sometimes it has even more characters than that, and you can see things like LAME encoder referenced. Anyone know what the deal is? All site caching is disabled. I am no pr...

Streaming audio - where to start?

I need to develop an embedded audio streaming server. Requirements: Voice quality or better Intended for low power wifi transmission Broad support in existing software and devices (ie, windows media player, quicktime, vlc, iPhone, Android, etc). Royalty/patent free, or cheap to license Preferences: Low overhead TCP/IP based stre...

Trying to build automatic audio-conferencing capability into a WebApp

Hey all, I'm working with a team of relatively novice programmers, and we are trying to create a site that will have audio-conferencing capabilities such that whenever someone visits the page, they will immediately have audio-conferencing capabilities with everyone else on the page (5 people max). Can anyone point us in a general direc...

Android RTSP coding problem

I have Googled my butt off trying to find where if there is a surefire way to make rtsp work. I have a radio station that I listen to that streams via rtsp. Of course by default Android doesn't want to play it. If I pop the URL into yourmuze.fm and create a station there it lets me stream it to my phone. After checking how it works I...

Streaming to iphone via m3u8

Hi: I've been reading around about streaming on the iphone via m3u8 but I'm not sure if I'm missing something. It is well documented that MPMoviePlayerController will only play full-screen in OS 3.1, so iPhone users are stuck watching the video (listening to audio, in my case) and can't navigate in the application. I haven't found a way...

moving audio over a local network using GStreamer

I need to move realtime audio between two Linux machines, which are both running custom software (of mine) which builds on top of Gstreamer. (The software already has other communication between the machines, over a separate TCP-based protocol - I mention this in case having reliable out-of-band data makes a difference to the solution). ...

Android streaming from icecast server get track information

I have a stream from an icecast server downloading, and I can grab the information in the headers by doing the following: URLConnection cn = new URL(mediaUrl).openConnection(); cn.connect(); int pos=1; String x; String y; while (cn.getHeaderField(pos) != null) { x=cn.getHeaderFieldKey(pos); y = cn...

How could I play a shoutcast/icecast stream using HTML5?

Is it possible to play a shoutcast/icecast stream using HTML5? If so, how should I implement it? ...

Free audio players for website streaming

Are there any free audio players that I can use in my website? Are they customizable? I've heard of Soundmanager 2. It's a flash based player with a javascript front-end. Are there any other free players like that? ...

Play Apple's .caf audio file on a webserver?

Play Apple's .caf audio file on a webserver? I have .caf audio files (Apple's open audio format) stored on my webserver and want to play them from a web browser on any O/S. ...