streaming

Network Time Synchronization with Java

Hello everyone. I'm creating a p2p audio-midi streaming application using Java (unfortunately) and I'm searching for a way to provide network time synchronization between certain peers (sources) using a reliable protocol implementation (like NTP) but I can't find any related libraries to use.I also have a limited amount of time to spend ...

Open Source Flash Streaming Server

Does anyone know of an open source flash streaming server besides Red5? Mammoth server looks promising but is in Apha. Specifically I need to encapsulate mpeg4 in the stream, that is why I cannot use Red5. ...

How do I download a webpage into a stream in .NET

I know this should be a basic question but I am hitting a brick wall. I am looking to go to a URL/URI download the resulting string as if I had opened a file and then get it out into a String variable. I have been stuffing about with IO.Stream and Net.httpxxx but haven't managed to get the elements to line up in the right way. I get "t...

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, string dstFile, int offset, int length) { BinaryReader reader = new BinaryReader(File.OpenRead(srcFile)); reader.BaseStream.Seek(offse...

How to stream XML data using XOM?

Say I want to output a huge set of search results, as XML, into a PrintWriter or an OutputStream, using XOM. The resulting XML would look like this: <?xml version="1.0" encoding="UTF-8"?> <resultset> <result> [child elements and data] </result> ... ... [1000s of result elements more] </resultset> Because the...

How could I download an mms audio stream in Ruby?

Hi, I would like to access an mms:// url, and stream the file in ruby. For example, in the same way that Net:HTTP works for http:// type urls. ...

Microsoft media streaming services - Can I use it for Adaptive Streaming?

I have Microsoft Expression Encoder 2, and I encoded a video for Adaptive Streaming. Can I then upload the files to the Microsoft media streaming services (http://silverlight.live.com) and use Adaptive Streaming? ...

MPMoviePlayerController and long movies

Hi, I am using MPMoviePlayerController to play a clip off my website. I am able to play small clips ( i.e less than 2 MB) but not longer clips. Does MPMoviePlayerController download the entire clip before start of play? Is there a way to get it to start "streaming" immediately? Thanks. Srini ...

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 mVideoView = new VideoView(this); setContentView(mVideoView); mVideoView.setVideoURI(Uri.parse("rtsp://rtsp2.youtube.com/CiILENy73wIaGQkDwp...

What is the best way to send large data from WCF service to Client?

I have a particular service which returns large amount of data. What' is the best practice and options available in WCF to handle this? These large data is returned after doing all the filtering, so no more filtering is possible. The data could go into GB's. I do understand there is a limit to how much data a system can handle. But g...

How can you filter a Deeply Nested XML using LINQ (streaming only), while maintaining the Tree Structure?

Hello I would like to know how to stream over a very large, deeply nested, XML Document using LINQ, while streaming it, filter nodes based on some criteria and then write the streamed output to a file, while maintaining the same original structure of the XML. This should happen without loading the entire document into memory. Is this ...

How do I record streams in chunks on Flash Media Server.

I want to record a stream which is published with Flash Live Encoder to FMS 3.5, but split the recording in files with predefined length. For example if a stream 'webcam' is published I want to record it in chunks of 10 minutes: 'webcam1.flv', 'webcam2.flv' ... From what I can tell there's no facility to work with timers. The only solut...

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 (hosting a .net site for example) with a FileUpload control's uploaded event? My understanding was that a post was made to the server requ...

API for streaming audio

Hi Can you recommand a API to prorammatically feed sound data (wav or something) into to get in the end an streaming server someone can connect to with e.g. winamp? In my szenario I have some wave samples and would like to "create" sounds/music with them streaming the result to an audience on the fly. My prefered language is C++ (on Re...

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 request into RAM before beginning to service it--not exactly ideal for such an application. Notably, trying to circumvent the issue via code suc...

Possible to do client-side HTTP push?

Pretty much the opposite of server-side push, also known as Comet. I'm wondering if it is possible to use long lived HTTP connections to push information to the server. Unlike a simple XHR, the connection would be kept alive and data would be streamed to the server at intervals, as the user completes actions etc. Using standard techno...

How to play mp3 file from a different server in .NET 2.0 (c#/vb.net) ?

Hi, I want to create a window application which will play an mp3 file, which will be on a different server. For an example, I have a URL (http://songs.mastemag.com/indian-movie-songs/L/download.php?get=2cdeb5bfb354f297e97ba6b6b3b53203&amp;file=1/love-aaj-kal/01%20~%20Twist%20(MastiMag.com).mp3). I want to play this file from window ap...

How does HTTP Adaptive Bitrate Streaming work on the iPhone?

Apple has included HTTP Adaptive Bitrate Streaming in the iPhone OS 3.0, in particular Safari handles this automatically. I'd like to play with this in a low cost manner, but I expect it'll require a custom HTTP server in the worst case, and interesting PHP/etc scripting in the best case. But first I need to know what the protocol diff...

Data streaming in MATLAB with input data coming in from a C++ executable

I'm completely new to MATLAB and I want to know what my options are for data streaming from a C++ file. I heard of using the MATLAB "engine" for this purpose, and some of the methods like engPutVariable, etc., but can someone give me a thorough example of how to go about doing it? I'm trying to implement streaming a sine wave, but a sim...

Playing MMS streams within Python

I'm writing a XM desktop application (I plan on releasing the source on github when I'm finished if anyone is interested) Anyway, the one part I know very little about is how to play media within Python (I'm using PyQt for the frontend). Basically, I have a mms:// url that I need to play. I was wondering if there is a library that could ...