The audio-streaming tag has no wiki summary.
21
votes
5answers
36k views
Streaming Audio from A URL in Android using MediaPlayer?
I've been trying to stream mp3's over http using Android's built in MediaPlayer class. The documentation would suggest to me that this should be as easy as :
MediaPlayer mp = new MediaPlayer();
...
19
votes
1answer
5k views
Streaming audio from a Node.js server to HTML5 <audio> tag
I've been experimenting with binary streams in Node.js, and much to my amazement do actually have a working demo of taking a Shoutcast stream using node-radio-stream and pushing it into a HTML5 ...
11
votes
2answers
3k views
android code for streaming shoutcast stream breaks in 2.2
The following code works fine on Android 2.1update1 -
package com.troubadorian.android.teststreaming;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import ...
10
votes
8answers
405 views
Creating a Web Radio
I'd like to develop a web sample application that can send and read audio on the fly.
The idea is to develop a website with HTML5/JS.
So, the admin part (in php or whatever server side language) will ...
8
votes
2answers
5k views
Using AudioTrack in Android to play a WAV file
I'm working with Android, trying to make my AudioTrack application play a Windows .wav file (Tada.wav). Frankly, it shouldn't be this hard, but I'm hearing a lot of strange stuff. The file is saved ...
8
votes
2answers
1k views
How to customize MPVolumeView?
I have tried many methods to implement a regular UISlider and control the device volume, but it's all Native-C functions which results in many untraceable bugs.
I tried the MPVolumeView it works ...
6
votes
1answer
199 views
Live audio streaming on a website
I am trying to build a website for an internet radio station. I would like to incorporate a feature that allows visitors to play the live audio stream on the website itself.
What technologies should ...
6
votes
1answer
666 views
Yet another AVPlayer streaming audio in background problem
I have a problem with the AVPlayer playing in background mode, like a lot of people here and everywhere on the web. I've done what I think is supposed to work, but is still doesn't... I think my ...
6
votes
1answer
513 views
Getting the speaker audio signal and then streaming it out
I am trying to build what I think is a basic app. Well, two apps one for windows and one for OS X. I would like to capture the audio signal that is playing (ie if the user is playing music out ...
6
votes
9answers
667 views
What video encoding and streaming services are there out there?
I looking for something that I can either embed their uploader directly or send the video files to that will then encode the video and allow me to stream the video through a player on "my" website.
...
5
votes
2answers
125 views
Which thread to use for audio decoding?
When working with audio playback I am used to the following pattern:
one disk (or network) thread which reads data from disk (or the network) and fills a ringbuffer
one audio thread which reads data ...
5
votes
2answers
2k views
How to play online radio in android
I am working on android application in which i have play online radio streaming.
i have gone through the media player classes but i don't think is there any method to online streaming of radio. If ...
5
votes
9answers
14k views
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/" />
...
5
votes
5answers
643 views
Best API for low-level audio in Windows?
I'm working on an audio application, written in C. I need to provide live audio playback under Windows. I need to decide which audio API to use. I'm planning to use the basic waveOut API, but I ...
4
votes
1answer
89 views
MPMoviePlayerController reconnecting multiple times
I have a simple HTTP server running that pretty much just serves an MP3 file in chunks of equal size. I'm writing an iOS app (for testing purposes), that basically takes a URL and streams the file ...
4
votes
1answer
260 views
MediaElement and AAC stream support on Windows Phone 7
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 ...
4
votes
6answers
473 views
jQuery: Cross-browser problem — Debugging Internet Explorer
Update: The issue seems to be that due to the JavaScript that was written to acccomodate a problem with Firefox/flash, the program is now trying to play html5 in IE, which isn't working for IE 8 and ...
4
votes
1answer
2k views
HTML5 Audio Streaming
There has been some talk of this around stackoverflow before, but nothing really answered this question from what I have seen.
I am trying to implement a streaming audio web application. Almost ...
4
votes
2answers
391 views
Multiple Audio, Live Smooth Streaming
I could not find any document which explains how to provide multiple audio streams for Live Smooth Streaming.
For example, in Microsoft PDC's streams, it is possible to select languages.
Does SMF ...
4
votes
2answers
1k views
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, ...
4
votes
3answers
681 views
VOIP functionality (real time voice streaming across max of 5 users) over Silverlight 4.0?
As SL 4.0 has got video and Mic support...
How feasible it is to provide VOIP functionality (real time voice streaming across max of 5 users) over Silverlight 4.0, for a web based application?
What ...
3
votes
2answers
555 views
Android MediaPlayer works fine in our Custom audio Streaming application up to Android 2.1 but not in higher versions
EDIT:
Android 2.2 MediaPlayer is working fine with one SHOUTcast URL but not with the other one
I need to play audio files from external URLs(shoutcast stream). Currently the audio files are ...
3
votes
2answers
173 views
J2ME Audio Streaming through SIP Connection
I am creating a J2ME real time streaming audio player with RTP and through SIP connection. Also I am new for these things. I want to take look deeply those things. If any one know a good working ...
3
votes
1answer
52 views
How can I record online radio in .NET?
I did see this question but not much on .NET...
I want to write .NET code to connect to a web server streaming SHOUTcast (Winamp) audio content (if anyone is interested, the URL is ...
3
votes
2answers
111 views
Getting Parse bytes failed. err: optm 1869640813 in audio streaming in iphone sdk
I am using an Audio streamer into my application.I am getting the audiofile form the server and playing it using audio streamer.The url is like ...
3
votes
1answer
159 views
forwarding and rewinding audio in xuggler
I have used xuggler to play audio files other than wav,au,aiff. Since xuggler performs audio decoding at low level it is very hard to write a method that both forwards and rewinds the audio being ...
3
votes
2answers
541 views
Why does it take so long for Android's MediaPlayer to prepare some live streams for playback?
I am finding big differences in the time it takes the Android MediaPlayer to prepare for live stream playback with different streams.
The hard data
I added logging between prepareAsync() and the ...
3
votes
1answer
94 views
How can I change the speed of audio being played? (Using Clip as well as AudioPlayer.player.start()?)
How can I change the speed of audio being played in a Java program (Using Clip as well as AudioPlayer.player.start()?)
3
votes
1answer
704 views
Ruby/Rails - Ways to stream audio (mp3/wav/etc)…Gem/Plugins vs HTML5?
I have a rails app that is coming along nicely...I would like to give the users the ability to upload and stream uploaded mp3s.
Currently I'm uploading to Amazon S3 through Paperclip with my site ...
3
votes
1answer
146 views
An efficient method for server side data streaming?
Is there an efficient way of streaming data from client side to server side for typical web applications? For example, I want to take audio/video/media input from the clients and deliver these inputs ...
3
votes
1answer
1k views
iOS multitasking : let a stream play when the app is in the tray
Does anyone knows how I can let an audio stream play (from a webview ou in a AVPlayer component) after the app lose focus (when the home button is pushed) ? In iOS 4.2. I know I must read about ...
3
votes
1answer
441 views
cross-platform, open libraries for C#/Silverlight/.NET audio/video real time streaming
I'm looking for a library for conference a/v streaming to a server, which multicasts to all other clients. I've looked at SIP and openh323, and both seem too specialized for voip telephony.
I want ...
3
votes
2answers
7k views
Play audio file stream using HTTP Live Streaming on iOS client without losing UI to Quick Time
I have a HTTP Live streaming server setup that serves segmented mp3 audio content (the URL points to playlist.m3u8 index file). I need to build an iOS client application to consume this audio stream ...
3
votes
1answer
309 views
iPhone SDK SDL_openAudio with Multitasking Support
I'm playing audio from a Online Live RTPS Stream with ffmpeg(because Apple doesn't support rtsp live streaming).
Now I would play my Stream in the background. I started a thread in the background and ...
3
votes
1answer
451 views
Need Android equivalent of AudioInputStream
I'm trying to write an Android app that analyzes content from the user's music library. Let's assume that these are mp3 files on the SD drive, for starters. I'm able to find Java algorithms to ...
3
votes
2answers
670 views
Audio will play in 3.2 sim but not in 4.x
This streaming audio app will play in 3.2 simulator, but not in 4.x sim or my 4.1 iPhone.
The console logs are as follows:
4.0 Sim
This GDB was configured as "x86_64-apple-darwin".Attaching to ...
3
votes
1answer
532 views
Is there a any way to use audio player without flash?
I would like to add a audio player in my html page. Is there any other way to play the audio file with a simple player without using flash player?
And also is my idea right?
Please provide me ...
3
votes
2answers
1k views
Noise reduction and compression in streaming audio
hope you can help. I am recording audio from a microphone and streaming it live across a network. The quality of the samples is 11025hz, 8 bit, mono. Although there is a small delay (1 second), it ...
3
votes
2answers
743 views
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.
3
votes
4answers
9k views
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?
3
votes
2answers
775 views
record output sound in python
i want to programatically record sound coming out of my laptop in python. i found PyAudio and came up with the following program that accomplishes the task:
import pyaudio, wave, sys
chunk = 1024
...
3
votes
3answers
1k views
Audio streaming from iPhone to a server?
How can I stream the audio recorded from iPhone to a server continuously? Am I really have to use RTP?
Any other suggestions?
Thanks.
3
votes
5answers
391 views
JavaScript for MP3 playback
Is there a JavaScript library available that can playback an MP3 or related music file? The JavaScript would be fed the MP3 from the server and stream it back over the browser.
3
votes
2answers
2k views
Browser Based Streaming Video/Audio (not progressive download)
I am trying to understand conceptually the best way to deliver real streaming audio and video content. I would want it to be consumed with a web browser, utilizing the least amount of proprietary ...
3
votes
1answer
548 views
On iPhone, how can I use fileHandle to download a mp3 file on the fly?
I am trying to implement the AudioFileStreamSeek feature on my streaming app. But there is no way I can get this running. Even Matt Gallagher said on his blog:
Icidentally, the ...
2
votes
0answers
31 views
+50
Why JMF is not working on Audio streaming with Mjsip?
I am using Mjsip to create a softphone. In the code there is three type option for audio straming.
Using JMF (Java Media Framework)
Using Java Audio
Using RAT (Robust Audio Tool)
I am not using ...
2
votes
2answers
61 views
How to get duration of Audio Stream and continue audio streaming from any point
Description:
I have following code for an Audio player. I can continue Audio playback from any duration by clicking on Progress Bar(between 0-to-mediaplayer.getDuration()). It is working perfectly ...
2
votes
0answers
98 views
iPhone HE-AAC Streaming over Mobile Network (3G)
Developed an internet radio streamer using jPlayer which utilizes the html5 audio tags with jQuery and has a flash fall back for unsupported browsers. Upon testing the player on the iPhone (iOS ...
2
votes
1answer
80 views
“Deeplink” to a certain position in an MP3 with HTML5/Flash
Are there any existing examples of code where it is possible to do something similar along the lines of what occurs on YouTube whereby it is possible to 'deeplink' to a certain position in a video, ...
2
votes
1answer
91 views
Play remote mp3 using iOS
I have a remote mp3 (small file, just a few seconds) which I have the URL.
I need to play it on an App that uses iOS 4.
The URL is not exactly a .mp3 file, but it is a dynamic .php url that requests ...