streaming

Is there anyway to create LIVE streaming Server using WCF? (see specification below)

Is there any way to create live streaming Server using WCF? I need it to have simple structure: it should listen to some url format like http://example.com/service/stream?write&id=ANY_STRING and if any data comes to such address format it'll start making it avaliable by something like this http://example.com/service/stream?read&i...

.NET 4 Router: Can we filter binary incoming data from HTTP/TCP stream?

So I want to have have some service with url example.com:4773/routerService . I am gouing to have some wary simple client which will take some address and start streaming data to it, binary data like mp3 or pcm stream so no serialisation no special mesages just star streaming pure stream to URL. So my client will go to URL like examp...

How to configure your WCF service to work as normal TCP server?

How can I configure my WCF service to work as a normal TCP server? Is it possible to disable all that binding specific stuff so as to keep your service URL like http://example.com:4444/service and be able to work vith pure HTTP/TCP streams? I need to be able to work with TCP streams in tandem with WCF services... so I have to make TCP s...

Music Api/Web service for streaming

I need to know if there is a Web Service whit API that permits to have a streaming (possibly random) music. Also free music or also a 30 sec demo of the music is sufficient. My service need to ask to a web service a random songs with artist, title, place... and it has to play it. Do you know any site that makes it possible? ...

how to convert to file Byte returned by ComputeHash

the output is always a 1kb file. How can I successfully write convert the byte returned by ComputeHash to a file.? MD5CryptoServiceProvider test = new MD5CryptoServiceProvider(); using (FileStream fs = new FileStream(@"D:\test.pdf", FileMode.Open, FileAccess.Read)) { byte[] buffer = test.Comput...

How to do Simple video streaming with ffserver on windows?

I found a tutorial for configuring server here http://www.organicdesign.co.nz/Simple_video_streaming_with_ffserver but it is for linux... how to do such thing on windows? (with a real web cam) ...

How to do live streaming from WebCamera using ffserver on Windows?

How to do live streaming from WebCamera using ffserver on Windows? I have windows. FFserver installed on it. Web Camera attached to it. How to do streaming of that web camera using FFserver? ...

ShoutCast over SSL

So I've gone ahead and set up my ShoutCast server DNAS and set my DSP in Winamp on my host computer. The server listens on port 8000, so per some instructions I installed an output plugin for winamp (Shoutcast DSP) and used 8000 and the password to connect. Server accepts the connection. Now, what the heck do I do now? My host computer...

Is it possible to stream live using mod_h264 / pseudo streaming ?

I have Icecast and Darwin Streaming Server configured and running. Serving HE-AAC live radio. How can i utilize mod_h264 or other pseudo-streaming technologies to relay that stream to web page (with flowplayer or smth) ? Thanks in advance. ...

How to stream video content in asp.net?

Hi, I have the following code which downloads video content: WebRequest wreq = (HttpWebRequest)WebRequest.Create(url); using (HttpWebResponse wresp = (HttpWebResponse)wreq.GetResponse()) using (Stream mystream = wresp.GetResponseStream()) { using (BinaryReader reader = new BinaryReader(mystream)) { int length = Convert.ToInt32(w...

How can I specify the Owner of component read from a Delphi TStream?

I'm reading a component from a stream, and want to be able to specify the Owner property. var TComponent : comp; stream.Seek(0, soFromBeginning); comp := stream.ReadComponent(nil); Who owns comp, and how can I change it? I'd hoped the parameter to readComponent would be the owner, but it seems to do something totally different!...

W2k8 RC1: Windows Media Servers (WMS) as proxy

I will have one streaming-server (W2k8, unknown streaming protocol [rtsp, mss, http]) and half dozen streaming-servers as proxies to save bandwidth. I have read the documentation and installed the modules, but I am unsure how I have to configure the proxy's according to http://technet.microsoft.com/de-de/library/ee126142(en-us,WS.10).as...

Render asp.net repeater as-and-when chunks of html is ready (streaming)

The problem is to render huge reports. Basically we have lots of data that get rendered in html reports (mostly using repeater or gridview). As it so happens, the data started out small and now we have tons of it. There are lots of such reports already built so total rewrite is not an option. Heck, the business is not even letting us pag...

How do you dynamically load different streaming F4V files into one SWF player?

Hi. I need to figure out how to utilize one SWF player/file to load different streaming F4V files dynamically. As it stands now, I have: <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="500" height="314" id="something" ali...

Streaming audio - where to start?

I need to develop an embedded audio streaming server. Requirements: Voice quality or better Intended for low power wifi transmission Broad support in existing software and devices (ie, windows media player, quicktime, vlc, iPhone, Android, etc). Royalty/patent free, or cheap to license Preferences: Low overhead TCP/IP based stre...

Streaming output with commons-exec?

Can anyone give me an example of how to stream the output of an external program executed with DefaultExecutor? I'm not finding any documentation describing how to do this. My external process will run for several hours, so just grabbing all output data isn't feasible; it must be streamed. ...

Is Streaming Video possible with Sql Filestream?

We have stored all media in Sql Filestream, but now we'll need Video and Audio streaming... Will this be possible with Sql Filestream or will I have to take all of the Video and Audio out of the database? Which technology would you use to enable Video/Audio Streaming? WebORB FluorineFX Wowza (way better I think than the first two) IIS...

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, so iPhone users are stuck watching the video (listening to audio, in my case) and can't navigate in the application. I haven't found a way...

Recording Audio through RTMP/Rails

I am in the process of building a rails/flex application which requires audio to be recorded and then stored in our amazon s3 account. I have found no alternative to using some form of RTMP server for recording audio through flash, but our hosting environment will not allow us to install anything like FMS, Red5, etc. Is there any existi...

WCF Streaming not working at server

hi, i have used WCF service to transfer large files in chunks to the server for that i have reference this article http://kjellsj.blogspot.com/2007/02/wcf-streaming-upload-files-over-http.html i have configured my application on IIS on my machine. its work fine here. it allows upto 64mb file upload but when we have published the site. i...