streaming

VLC Functionality: How to stream an .iso?

I gave a DVD ISO image and would like to use VLC's http function to create URL a user could access, after which the DVD would start up in full screen. I can make this happen by accepting the defaults vlc.exe -I http navigating to localhost:8080 and then browsing and opening the file. How would I modify this activity so that navigatin...

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 becomes available (if the id is different), and later on expose it as a web service so I can use it with WebSockets on my website :). So far I...

Good .NET library for fast streaming / batching trigonometry (Atan)?

I need to call Atan on millions of values per second. Is there a good library to perform this operation in batch very fast. For example, a library that streams the low level logic using something like SSE? I have profiled the application, and I know that this call to Atan is a bottleneck. I know that there is support for this in Open...

Detect whether an flv file contains video, audio or both

Is there a way to detect whether an FLV file contains video, audio or both? The flv file is streamed to a flash client, that needs to show a certain view depending on the data in wrapped in the flv file. ...

Silverlight MJPEG viewer

I would like to consume a Motion Jpeg stream from an IP camera and ideally view it using the media element. I was hoping to find some ready made samples. ...

Python alternative to Adobe Real Time Messaging Protocol

Is there a way to stream audio and video over the internet using Python Web Programming and not Flash? ...

audio onprogress in chrome not working

Hi I am having a problem getting onprogress event for the audio tag working on chrome. it seems to work on fire fox. http://www.scottandrew.com/pub/html5audioplayer/ works on chrome but there is no progress bar update. When I copy the code and change the src to a .wav file and run it on fire fox it works perfectly. <style type="text/c...

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 there's a middleware that's mucking with it -- maybe ETAG calculator? But I'm not sure how to disable it. Can somebody please help? Here's ...

iPhone app for mms streaming using libmms

Hi Guys, Could you please help me regarding the mms streaming. I have download the libmms unable to run inside the xcode for implementing an iPhone application. Could you guys guide me how to integrate the libmms in an iPhone application? or is there any other library/open source available for mms streaming. Thanks in advance Subha ...

Python access webcam and audio input

Can a python script on my server access the webcam and audio input of a user as easily and as well as a Flash plugin can? ...

How to stream authenticated content with MediaPlayer on Android

I've seen quite a few posts askign 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 (username/password) -- I can download it fine using the various HTTP download clases but for the life of me I can't sort out how to tell media player to stre...

getting started with libmms

Actually, the title explains it all... I want to read a stream, but have no idea from where to start. I've searched the web for some documentation/tutorial/whatever with no luck. Any help using this lib would be very appreciated. [CLARIFICATION] I am talking about MMS stream protocol library that can be found here. LibMMS is a common l...

how to play rtsp streamming in QT

Hello, I am trying to find a way to play in Qt 4.6 rtsp streaming, that i got from youtube api can it be done somehow? ...

StreamCorruptedException, when using ObjectInputStream

Hi, I need to send an Object from client to server by serializing it. This is my code: HttpURLConnection con = null; ObjectOutputStream out = null; ObjectInputStream inputStream = null; URL servlet = new URL("MY_URL"); con = (HttpURLConnection) servlet.openConnection(); con.setDoInput(true); ...

Is there simple way to play an rtp video/audio stream in WPF?

I need to create a WPF control that will play an rtp stream with the requirement that the latency needs to be as low as possible. I've looked at the following two projects: http://vlcdotnet.codeplex.com/ http://wpfmediakit.codeplex.com/ As far as I know, I can't use VLC because we're shipping a commercial application with a more rest...

java virtual machine - how does it allocate resources?

I am testing the performance of a data streaming system that supports continuous queries. This is how it works: - There is a polling service which sends data to my system. - As data passes into the system, each query evaluates based on a window of the stream at the current time. - The window slides as data passes in. My problem is t...

how to stream 3gp video files in c++

i like to be able to stream and display 3gp video files that in my case coming from the YouTube Api im programing in c++. can it be done ? ...

Can I access Flash data before they are rendered by the browser ?

Is it possible to read numbers and names from a Flash page before they are rendered by the browser ? The webpage is changing dynamically and I would like to capture the data every about 60 minutes. I have no access to the Flash website but I might be able to modify an open source browser if this would help. OS is Win 7 and I can speak a...

C# Stream. Movement stream? bluetooth

I don't really know how to put it but my program involves picture boxes and pictures in it. E.g when i press an up button the picturebox above will swap pictures with the one below. How would i store the 'movement' in a stream because i would like to read this data on another device so that both devices can see and have the same movement...

Implementing Apple's HTTP Live Streaming - problem with mediafilesegmenter tool

Hi, I have MAC OS 10.6 (Snow Leopard) and according to Apple's guide on HTTP Live Streaming, the mediafilesegmenter tool should be there in /usr/bin/ directory but it isnt. There is only the mediastreamsegmenter there. I need the mediafilesegmenter tool to segment MPEG2 Transport streams. How can I get/install the mediafilesegmenter to...