Tagged Questions
Streaming questions usually refer to Multimedia Streaming. Multimedia Streaming is the process of delivering digital multimedia content from a content provider to a consumer that will present it to a user.
38
votes
4answers
18k views
Streaming video from Android camera to server
I've seen plenty of info about how to stream video from the server to an android device, but not much about the other way, ala Qik. Could someone point me in the right direction here, or give me some ...
24
votes
2answers
5k views
Streaming large file uploads to ASP.NET MVC
For an application I'm working on, I need to allow the user to upload very large files--i.e., potentially many gigabytes--via our website. Unfortunately, ASP.NET MVC appears to load the entire ...
23
votes
6answers
40k views
How can I stream webcam video with C#?
I want to make a simple server application where people can connect using a browser-based client (which I will make later) to watch streaming video. And I want to use C#.
What do I need to capture ...
20
votes
3answers
10k views
Play YouTube videos with MPMoviePlayerController instead of UIWebView
Hello I'm trying to stream some youTube videos using the MPMoviePlayerController but I'm having some problems. The code i'm using is pretty simple and I can play .m4v videos by passing a URL to ...
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 ...
18
votes
4answers
46k views
Streaming via RTSP or RTP in HTML5
I'm building a web app that should play back an RTSP/RTP stream from a server (http://lscube.org/projects/feng).
Does the HTML5 video/audio tag support the rtsp or rtp? If not, what would the easiest ...
16
votes
1answer
4k views
How to stream an HttpResponse with Django
I'm trying to get the 'hello world' of streaming responses working for Django (1.2). I figured out how to use a generator and the yield function. But the response still not streaming. I suspect ...
15
votes
10answers
8k views
Can you recommend an effective and cheap CDN for video streaming?
I am looking for a streaming CDN recommendation. Cost and performance are my chief concerns. Video viewers may be all over the globe, with the, US, Europe, Russia and South America topping the list ...
14
votes
3answers
889 views
WPF - Transparency - Stream Desktop Content
Greetings
I'm in the process of making a Scoreboard for a game (Starcraft II). This scoreboard is being made as a WPF Application with a C# code-behind. I already have a version which works for 90% ...
14
votes
2answers
476 views
Http and file uploading - How does it really work (under the hood)
Ok this may seem like a bit of a noob question but one many Web developers I know dont have a full understanding of.
Basically how does a file uploading from a web page file input box to a webserver ...
13
votes
0answers
838 views
HttpURLConnection buffering rather than streaming, despite setting chunked streaming mode? [closed]
I am using HttpURLConnection to write files, some of which are quite large, to a server.
final HttpURLConnection conn = (HttpURLConnection) url.openConnection();
A while back I had issues writing ...
13
votes
6answers
48k views
HTTP Live Streaming, FFMPEG & FFSERVER, and iPhone OS 3
In iPhone OS 3, Apple has introduced HTTP Live Streaming which should allow live streaming of video from the internet. I am currently operating a webcam, which feeds into my server, and is then ...
13
votes
4answers
20k views
Best way to stream files in ASP.NET
What's the best way to stream files using ASP.NET?
There appear to be various methods for this, and I'm currently using the Response.TransmitFile() method inside an http handler, which sends the file ...
13
votes
8answers
9k views
12
votes
3answers
799 views
How to use direct streaming for SOAP with Spring-WS?
We want to enable direct streaming of our payload in webservice endpoints. We have to process a large amount of data and want to stream the data while processing.
We use spring-ws-core, in version ...
12
votes
3answers
1k views
On-the-fly zipping & streaming of large files, in PHP or otherwise
Imagine a web serving scenario where several large files must be zipped and provided to the client for download. The most obvious way to do this on LAMP is to create a temporary zip file using PHP’s ...
12
votes
2answers
2k views
iPhone - App Rejected again, HTTP Live Streaming 64kbps baseline feed
Thank you for submitting APPNAME_HERE.
We have reviewed your application and
have determined that it cannot be
posted to the App Store at this time
because it is not using a baseline
...
12
votes
5answers
3k views
Seeking through a streamed MP3 file with HTML5 <audio> tag
Hopefully someone can help me out with this.
I'm playing around with a node.js server that streams audio to a client, and I want to create an HTML5 player. Right now, I'm streaming the code from node ...
11
votes
5answers
3k views
Ruby on Rails 3: Streaming data through Rails to client
I am working on a Ruby on Rails app that communicates with RackSpace cloudfiles (similar to Amazon S3 but lacking some features).
Due to the lack of the availability of per-object access permissions ...
11
votes
5answers
657 views
synchronizing audio over a network
I'm in startup of designing a client/server audio system which can stream audio arbitrarily over a network. One central server pumps out an audio stream and x number of clients receives the audio data ...
11
votes
6answers
11k views
Streaming Youtube Videos
I am writing an application to play youtube videos using streaming.
First method:
I am getting the RTSP URL to the video using GData APIs.
Here is the code to play the RTSP url.
VideoView ...
11
votes
4answers
6k views
WCF Chunking / Streaming
I'm using WCF and want to upload a large file from the client to the server. I have investigated and decided to follow the chunking approach outlined at ...
10
votes
3answers
346 views
Audio/Video live streaming between two browsers, which technologies?
I'm searching for the best open source technologies to use to implement a bidirectional audio/video communication between two browsers.
For now I have unearthed these tracks:
WebRTC W3C spec and an ...
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 ...
10
votes
2answers
5k views
AVPlayer vs. AVAudioPlayer
The documentation for AVPlayer states the following:
[The] player works equally well with local and remote media files
However, the documentation for AVAudioPlayer states the following:
...
10
votes
3answers
716 views
Read from a growing file in C#?
In C#/.NET (on Windows) is there a way to read a "growing" file using a file stream? The length of the file will be very small when the filestream is opened, but the file will be being written to by ...
10
votes
9answers
16k views
how to write super fast file streaming code in C#?
I have to split huge file into many smaller files. each of the destination file is defined by offset and length as number of bytes. I'm using the following code:
private void copy(string srcFile, ...
9
votes
2answers
266 views
Incremental JSON parsing in php
In a php program, I want to parse JSON incrementally. For example, given the partial JSON
[1, 2, {"id": 3},
I want to get 1, 2 and the dictionary even before the rest of the JSON input is streamed. ...
9
votes
2answers
745 views
How to stream authenticated content with MediaPlayer on Android
I've seen quite a few posts asking this question on SO but there doesn't seem to be a definitive answer (or at least an answer I like!)
I've got content protected behind basic auth ...
9
votes
1answer
3k views
How to create a streaming API with NodeJS
How would you go to create a streaming API with Node? just like the Twitter streaming API.
What I want to do ultimately is get the first update from the FriendFeed api, and stream when a new one ...
9
votes
2answers
7k views
Cross-browser implementation of “HTTP Streaming” (push) AJAX pattern
Client request web page from server. Clent then requests for extra calculations to be done; server performs series of calculations and sends partial results as soon as they are available (text format, ...
9
votes
6answers
5k views
Lustre, Gluster or MogileFS?? for video storage, encoding and streaming
So many options and so little time to test them all... I wonder if someone has experiences with distributed file systems for video streaming and storage/encoding.
I have a lot of huge video files ...
9
votes
3answers
7k views
“The remote host closed the connection” in Response.OutputStream.Write
This code streams large files to our users:
// Open the file.
iStream = new System.IO.FileStream(filepath, System.IO.FileMode.Open,
...
9
votes
4answers
4k views
Streaming MP3s from Amazon S3
Is there a way to stream MP3s stored on Amazon S3 via a Flash widget embedded in a website, or some other method?
9
votes
4answers
16k views
Developing a Video Chat Application with high quality video streaming
I am working for a company where we are developing video chat support on an existing application. I have looked at various solutions for this like
Using Managed Direct show for video capture and ...
9
votes
6answers
11k views
Parsing very large XML documents (and a bit more) in java
(All of the following is to be written in Java)
I have to build an application that will take as input XML documents that are, potentially, very large. The document is encrypted -- not with XMLsec, ...
9
votes
8answers
9k views
Protect flash video from download/right protect
Is it possible to protect flv files from download? I'd like to protect my files from download but I don't have the money for a streaming server which I think provides some sort of protection. The ...
9
votes
2answers
2k views
H.264 Streaming Requirements
I am looking for more information about the minimum requirements needed for a visitor to successfully stream a 1 Mbps 640x360 H.264-encoded video. I know that the user needs the latest Flash 9 ...
9
votes
6answers
20k views
How to display a live streaming video using VideoDisplay in Flex
I'm wondering how to use a VideoDisplay object (defined in MXML) to display video streamed from FMS via a NetStream.
The Flex3 docs suggest this is possible:
The Video Display ... supports ...
8
votes
1answer
428 views
Weird behavior when streaming using Android MediaPlayer on HTC Desire with Android 2.2
In a project of mine I'm implementing a live radio using an endless stream. I can without any problems use the nativ Android MediaPlayer, also on devices running an old version of Android, since the ...
8
votes
3answers
431 views
Serving dynamic zip files through Apache
One of the responsibilities of my Rails application is to create and serve signed xmls. Any signed xml, once created, never changes. So I store every xml in the public folder and redirect the client ...
8
votes
3answers
324 views
Streaming an undetermined number of objects through WCF
I have a WCF service that needs to read large (10 to 20 million) numbers of objects from the database.
What I'd like to do, is have the client open up a stream and have the server push data from ...
8
votes
3answers
669 views
Use a “x-dom-event-stream” stream in javascript?
HTML5 draft contains an API called EventSource to stream data (notifications) trough javascript using only one server call.
Looking it up, I found an exemple on Opera Labs of the javascript part :
...
8
votes
3answers
2k views
Is “long polling” the most efficient way to create a Web Real Time App?
I want to create an application like this:
http://typewith.me/2wicOjuefI
What is the most efficient way to create this real time application ?
Flash ? Long polling ? Http Streaming ? or anything ...
8
votes
2answers
1k views
Apply a Regex on Stream?
I searching for fast and safe way to apply Regular Expressions on Streams.
I found some examples over the internet that talking about converting each buffer to String and then apply the Regex on the ...
8
votes
3answers
1k views
Heroku: Serving Large Dynamically-Generated Assets Without a Local Filesystem
I have a question about hosting large dynamically-generated assets and Heroku.
My app will offer bulk download of a subset of its underlying data, which will consist of a large file (>100 MB) ...
8
votes
2answers
2k views
How do I capture an mp3 stream with python
What's the best way of capturing an mp3 stream coming off of http and saving it to disk with python?
Thus far I've tried
target = open(target_path, "w")
conn = urllib.urlopen(stream_url)
while True:
...
7
votes
1answer
158 views
Video streaming MPEG-2 data for iPhone
I am working on video streaming for iPhone.
The case is i get data as integer multiple of 188 bytes in MPEG-2 format.
Can anyone please suggest me on on how to start on this case.
I searched a lot ...
7
votes
1answer
195 views
Streaming or custom Jar in Hadoop
I'm running a streaming job in Hadoop (on Amazon's EMR) with the mapper and reducer written in Python. I want to know about the speed gains I would experience if I implement the same mapper and ...
7
votes
2answers
501 views
Writing a Python Music Streamer
I would like to implement a server in Python that streams music in MP3 format over HTTP. I would like it to broadcast the music such that a client can connect to the stream and start listening to ...