Questions tagged [audio-streaming]

The process of delivering audio from a server to a client, different from the download in that the client is able to hear audio while it's being downloaded.

The process of delivering audio from a server to a client, different from the download in that the client is able to hear audio while it's being downloaded.

More details in Wikipedia page on streaming media

2571 questions
1
vote
1 answer

HTML5 audio playing on every page

I want to play html5 audio player to play the same audio without any delay even if I go to the next page.. It's working with cookie.. But the problem is..whenever I reload the page the player starts playing on it's own..I know it's very tough to…
user2605321
  • 93
  • 2
  • 5
  • 11
1
vote
1 answer

How to create an audio file metadata header if I am streaming data to icecast?

How do I send the metadata header to the icecast server ? I am recording in AAC and streaming it to the icecast server through ios but the file shows corrupt . I suspect that the metadata needs to be added to be able to play a file. How do i send…
syncmi
  • 13
  • 5
1
vote
1 answer

Blackberry buffered playback demo?

Can someone help me to buffer a mp3 file on a server using the Blackberry buffered playback demo app provided with the jde? I have loaded it in the simulator and my mds is started but I'm unable to play the audio. There is no error but it doesn't…
Bohemian
  • 5,957
  • 11
  • 38
  • 47
1
vote
0 answers

Play Soundcloud track inside

I'm trying to play a music from Soundcloud API inside an audio tag, my main goal is develop a spectrum analyzer with d3.js and some other stuff, but I just can't make it works. My current code is (here's a fiddle): …
Lucas Sampaio
  • 1,568
  • 2
  • 18
  • 36
1
vote
0 answers

Is it possible to use Novocaine for audio streaming

Currently i'm using Novocaine in several apps for different reasons. Thanks to Alex for the great framework! Thanks to Nick D. for the making it arc also! I can get samples using the basic play thru example like this: [self.audioManager…
1
vote
2 answers

What is the best method of synchronizing audio across iOS devices with WiFi?

Basically, for my team's app, we need to be able to synchronize music across multiple iOS devices. The first way we did this was by having the music on all the devices already and just sending a play command to all the devices. Some would get it…
Chris
  • 452
  • 1
  • 7
  • 15
1
vote
0 answers

Mediaelement C# Windows 8 store get song/artist online radiostream

I need some help on how to read taginfo (song/artist) from a online radiostream. I'm building my app in c# and I use the mediaelement. When I play this steam in windows media player/winamp it show the current playing song. I have tried the…
1
vote
1 answer

Pyglet player won't play

I'm writing an audio player in python using pyglet's Player class. This module is just a test of the Player and Source classes and it produces nothing. No sound, no error, just one warning about vsync that probably has nothing to do with the actual…
colossus16
  • 135
  • 1
  • 6
1
vote
0 answers

Using JavaScript to stream audio via webKitAudioContext

I am trying to access my computer's audio source in order to stream to a back end server. I am using the tutorial found here which uses a webKitAudioContext object to facilitate this connection. I'm confused by the stream object, however. First…
1
vote
0 answers

RTP streaming using AudioQueue

I have set up an audioQueue with audio format kAudioFormatMPEG4AAC (which I believe is AAC-LC). I'm looking for some code to send those AAC packets over RTP (does I just need to add a header ?) and a tip to make a good SDP because I don't find any…
HaneTV
  • 916
  • 1
  • 7
  • 24
1
vote
3 answers

How to detect if user aborted connection in php

I'm trying to create php stream application. The problem is that I can't allow two users to connect at the same time because, well they are paying for it so if they share stream it's useless. So my solution was to add a row in my MySQL database…
1
vote
2 answers

How to reduce mp3 streaming traffic comsumption for mobile use?

I want to be able to send an audio stream to Android/IOS devices. The current encoding for the stream is mp3 128 kbps. If i'd send this over the network it will take huge amount of mobile data. I was thinking of compressing the data with gzip but i…
Dan Dinu
  • 32,492
  • 24
  • 78
  • 114
1
vote
1 answer

Hide next/previous track controls on iOS

I am using AVPlayer to playback a continuous internet radio stream. I set up an AVAudioSession and my Info.plist to continue playback while the app is in background, and handle the remote control events to play, pause and stop. On iOS there are…
Lysann Schlegel
  • 886
  • 10
  • 16
1
vote
2 answers

gstreamer choose one channel and convert to mono (deinterleave)

i'm creating an audio stream from an audio server and streaming it to the receiver and I would like the receiver to choose one channel and convert it to mono. The code below is the pipeline of my receiver. It is receiving an rtp stream.…
Boon Yao Tan
  • 85
  • 1
  • 5
1
vote
0 answers

how to broadcast my voice From iPhone to Web using shoutcast/icecast

how to broadcast my voice From iPhone to Web shout cast/ice cast , basically I have seen many of the code snippets just like Audio Streamer (in this code audio streaming through URL) , now I want to stream (broadcast) my sound from iPhone to web.…