streaming

Stream linearized PDF from servlet to browser (fast web view)

Hi! I'm running a web app that provides a servlet. this servlet opens a pdf file from a Network File System and finally streams it to the requesting browser. All the pdf files are linearized by adobe lifecycle pdf generator and ready for fast web view. unfortunately, the fast web view does not work. I guess it's a problem of how to ope...

How to play .asf file yon iPhone?

Hello, Any one know how to play .asf file on iPhone as iphone doesn't support asf file which I need to play for Radio streaming. Can anyone help me to solve this problem. Thanks in advance. Regards, Gurprit ...

Live Video Streaming in Android

Hello everyone, I would like to stream live from the video camera of my mobile phone to my pc. Is there an API available? Applications like qik or livecast are not very useful to me, because I want something open source in order to change it... ...

C#, Sql Server 2008: Stream large result set to end user only works on some databases

I have a long running query that returns a large data set. This query is called from a web service and the results are converted to a CSV file for the end user. Previous versions would take 10+ minutes to run and would only return results to the end user once the query completes. I rewrote the query to where it runs in a minute or so i...

Correct http response to video stream

Hi! I'm currently developing my own little http server for video streaming, and i can't for the life of me figure out how this actually works... This is the request i get from the client: "GET / HTTP/1.1 Host: 127.0.0.1:8080 Accept: / User-Agent: QuickTime.7.6.6 (qtver=7.6.6;cpu=IA32;os=Mac 10.6.4) Connection: close " ...

Streaming the state of a Python script to a website

Hello: I have a simple workflow [Step 0]->[1]->[2]->...->[Step N]. The master program knows the step (state) it is currently at. I want to stream this in real time to a website (in the local area network) so that when my colleagues open, say, http://thecomputer:8000, they can see a real time rendering of the current state of our workfl...

Can Justin.tv's Broadcaster API be used on Android or iPhone?

Justin.tv's Broadcaster API is Flash-based. Can this be used on Android or iPhone instead of a traditional computer? ...

Silverlight Video File Won't Play; Can see .ism/manifest

I am running Windows Server 2008 SP2. I have an IIS 7.0 Webserver installed running IIS Media Services Beta 1. I also have WebDAV 7.5 installed. I encoded a video file, MP4(H.264/AAC), to the smooth streaming protocol using Expression Encoder 4.0 Pro. Under "Default Web Site" I added a virtual directory to the encoded video and created ...

WCF: Serialization? Streaming?

Hi guys, I need to understand how does WCF works when sending a message. Does WCF serialize everything before sending it? My other question is which will be the benefit of using Streaming? Is it better for bigger messages, lets say between 1Mb to 2Mb? Can I send a complex object serialized, and then be able to deserialize it in the oth...

EndOfStream for BinaryReader

Hi, BinaryReader does not have EndOfStream property. Is it safe to use following code to check if end of stream is reached? reader.BaseStream.Length>reader.BaseStream.Position ...

Possible effects of writing large byte arrays to an output stream?

private static void writeData( byte[] file, HttpServletResponse response ) throws IOException { .... // Send the data response.setContentLength(file.length); response.getOutputStream().write(file); } Recently, I've found in IE8 that some connections close while requesting files to download. This is the relevant piec...

What audio codec do the following application makes use of?

Does anybody know what audio codec do the following VoIP applications make use of for live streaming of voice over IP? I need the above information for experimenting with my own VoIP server/client written in C#. TeamSpeak Pfingo Windows Live Messenger Yahoo Messenger ...

How can I make secure a video online?

Hi All, I am working on an online video training website and i want to make secure my videos so that no one can download the videos. Can any one help me how can i restrict video download, i have tried different HTML5 and javascript players but none of these are providing this feature. ...

How do i make my Audio loop in my website?

Here is my code: <div id="div6" style="position: absolute; top: 700px; left: 100px;"> <audio controls="controls; loop:true"> <source src="../media/ChealseSmile.ogg" type="audio/ogg"/> <source src="song.mp3" type="audio/mpeg"/> Your browser does not support the audio element. </audio> </div> What do i have to add to the audio code t...

VLC jpeg streaming.

Hello, I'm writing a application, which retrieve rtsp stream from camera then do multicast streaming, at one point I need jpeg streaming in case camera connection is unsuccesfull. My command line arguments is : CODE: SELECT ALL string[] args = new string[] { "-I", "dummy", "--ignore-config", ...

Hadoop streaming grep does not work

Grep seems not to be working for hadoop streaming For: hadoop jar /usr/local/hadoop-0.20.2/contrib/streaming/hadoop-0.20.2-streaming.jar -input /user/root/tmp2/user.data -output /user/root/selected_data -mapper '/bin/grep 1938678460' -reducer 'wc' -jobconf mapred.output.compress=false I get: java.lang.RuntimeException: PipeMapRed.wait...

Playing an audio file from FTP in JavaFx

I have a scenario. I have an audio file on an FTP location. Its a JSP applicaiton. I want to do streaming on my webpage. What I am thinking to open an inputstream on that file that is on ftp location. And connect that input stream to JavaFx player. (never coded Javafx before) So JavaFx will play that buffer. My approach is right? ...

Stream with Node.js doesn't work

I know that with Node.js you can stream data. But why doesn't this code work: var sys = require('sys'), http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/html'}); res.write("hello"); res.write("world"); }).listen(80); Seems that I have to have res.end() after the las...

Which codec does Flash use to stream video from web cameras to RTMP, RTMFP servers?

Which codec does Flash use to stream video from web cameras to RTMP, RTMFP servers? What I ment to say: we connect to some server like Red 5, we start streaming video onto it from our flash RIA. In what codec video is traveling from RIA to Red 5? ...

streaming audio with html5 `<audio>` tag

I am trying to stream audio on a site hosted by Dreamhost from a lecture series using the <audio> tag in html5, but without much success. The actual code is <audio id="playerTwo" class="player" controls="controls" preload="none"> <source src="audio.ogg" type="audio/ogg; codecs='vorbis'"/> <source src="audio.mp3" type="audio/mpeg"/> </au...