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
19
votes
5 answers

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 like charm, it even controls the device volume even…
mohdajami
  • 9,604
  • 3
  • 32
  • 53
19
votes
3 answers

Python: Realtime audio streaming with PyAudio (or something else)?

Currently I'm using NumPy to generate the WAV file from a NumPy array. I wonder if it's possible to play the NumPy array in realtime before it's actually written to the hard drive. All examples I found using PyAudio rely on writing the NumPy array…
Mario Krušelj
  • 653
  • 1
  • 6
  • 20
19
votes
2 answers

How to prevent HTML5 audio from predownload / streaming on load?

I have a single page website which lists a collection of HTML5 audio players. The problem is the site has become slow because the following browsers start predownloading the content (mp3 and ogg) Internet Explorer Google…
TheBlackBenzKid
  • 26,324
  • 41
  • 139
  • 209
19
votes
2 answers

How to download audio/video files from internet and store in iPhone app?

I am developing an iPhone app for music. I want to give some options to the user so they can listen the song/music by streaming or they can download the music in the app. I know how to stream the audio files in the app programmatically. But, i don't…
Gopinath
  • 5,392
  • 21
  • 64
  • 97
18
votes
1 answer

Bluetooth audio streaming between android devices

I made a research on the same topic and found that android devices are a2dp sources and the audio can be streamed only from an a2dp source to an a2dp sink. A2dp sink can be a bluetooth headset or a bluetooth speaker. But my question is then how the…
Nidhin Joseph
  • 1,461
  • 3
  • 15
  • 32
18
votes
3 answers

What is the best way to stream a audio file to website users/listeners

I'm developing a music site which will stream audio files stored in a server to users, audio files will be played through flash player placed in a webpage.. As I heard I need to use a streaming media server for streaming audio files ( like 2mb to…
Naveen Gamage
  • 1,844
  • 12
  • 32
  • 51
17
votes
2 answers

Audio data streaming in HTML5

I am receiving PCM audio data from the server in small chunks and having them stored in an Array. Now I would like to play these audio chunks sequentially without gaps using some HTML5 capability. Two options which I am looking at as 'possible'…
17
votes
4 answers

Chrome extension to listen and capture streaming audio

Is it possible for a Chrome extension to listen for streaming audio from any of the browser's tabs? I would like to capture the streaming audio data and then analyse it. Thanks
16
votes
4 answers

ios avplayer trigger streaming is out of buffer

I want to reconnect to the server when the streaming buffer is empty. How can I trigger a method when the AVPlayer or AVPlayerItem buffer is empty? I know there are playbackLikelyToKeepUp, playbackBufferEmpty and playbackBufferFull methods to check…
Adam Tang
  • 163
  • 1
  • 1
  • 5
16
votes
3 answers

Realtime Audio/Video Streaming FROM iPhone to another device (Browser, or iPhone)

I'd like to get real-time video from the iPhone to another device (either desktop browser or another iPhone, e.g. point-to-point). NOTE: It's not one-to-many, just one-to-one at the moment. Audio can be part of stream or via telephone call on…
Jordan
  • 21,746
  • 10
  • 51
  • 63
16
votes
1 answer

How to play streaming audio using pyglet?

The goal of this question is trying to figure out how to play streaming audio using pyglet. The first is just making sure you're able to play mp3 files using pyglet, that's the purpose of this first snippet: import sys import inspect import…
BPL
  • 9,632
  • 9
  • 59
  • 117
16
votes
2 answers

How can I tell Actions on Google to stream audio?

I am writing an app to work with Google Actions. The only bummer is that I can't find any information about how to form my response so that Google will stream audio from a given URL. Does Google even support this yet? I have written the same app…
Jay
  • 238
  • 2
  • 11
16
votes
1 answer

MP3 streaming in C# .NET 4.5.1 MVC 5.2.2 on Samsung 6S

I have to use a TTS (Text to Speak) SaaS from ReadSpeaker in order to add audio to the application that I am developing. Now the basic SCAPI account that we are currently using has a basic setup were you simply set a URL and get a MP3 stream back…
Idra
  • 5,777
  • 4
  • 22
  • 33
16
votes
1 answer

Streaming audio file and caching it

I want to stream an audio mp3 file and then play it through android media player plus I also want to cache this file, so that mediaplayer don't have to stream for recently played tracks. I have tried using prepareAsync method but it doesn't give me…
prateek
  • 858
  • 2
  • 10
  • 28
15
votes
2 answers

Live Audio Recording and Playing in Android and Thread & callback handling

I want to record the live audio and play it.As far as UI is concerned the app just has three buttons:one for start recording and streaming it, one for playing a pre recorded file and the last one for stopping the current task(recording / playing). …
Amit
  • 13,134
  • 17
  • 77
  • 148