streaming

How to stream a remote webcam

I am looking to put a camera on top of a building in the process of being built and stream it to a website. How would I go about doing this? Would I have to hook it up to a full-blown computer on-site? or can I just plug it into a DVR with an internet connection? What is involved with processing the stream?...

Silverlight programatic access to Sony RZ30N Video Feed

I would like to bypass the web-server functionality of a Sony SNC-RZ30N network attached web cam and display the video feed in a Silverlight application. I can't seem to find any examples of interfacing with the camera programatically. Any leads would be much appreciated. Thx. Update 09/09/2008: Found a good site with Javascript exam...

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 progressive download over HTTP, streaming from the Flash Media Server, and streaming from a Camera object. However, later in the docs all I can...

How to do Streaming read of a large XML file in C# 3.5 ...

How can you do a streaming read on a large XML file that contains a xs:sequence just bellow root element, without loading the whole file into a XDocument instance in memory. ...

Play button in browser

I want to put songs on a web page and have a little play button, like you can see on Last.fm or Pandora. There can be multiple songs listed on the site, and if you start playing a different song with one already playing, it will pause the first track and begin playing the one you just clicked on. I think they use Flash for this, and I co...

SharePoint stream file for preview

I am looking to stream a file housed in a SharePoint 2003 document library down to the browser. Basically the idea is to open the file as a stream and then to "write" the file stream to the reponse, specifying the content type and content disposition headers. Content disposition is used to preserve the file name, content type of course...

How to do Flash pseudo-streaming?

I need to build something that starts serving a H.264 encoded video to a flash player halfway through the file (to support skipping to a point in the video that has not been buffered yet). Currently, the videos are in the FLV container format, but transcoding is an option. I managed to re-write the file header and metadata information ...

How to stop a mp3 file from being downloaded by flash when in streaming mode

Hi, I have a flash player that has a set of songs loaded via an xml file. The files dont start getting stream until you pick one. If I quickly cycle through each of the 8 files, then flash starts trying to download each of the 8 files at the same time. I'm wondering if there is a way to clear the file that is being downloaded. So tha...

pseudo-streaming of wmv files

Is it possible to do pseudo-streaming(eg start playback at any point) with wmv files and silverlight? This is possible using Flash in a progressive download setup but can it be done on the Microsoft track? ...

Embedding Live Video from an IP WebCam

We are using a Sony SNC-RZ30N IP-based webcam to monitor osprey nests and would like to stream the video feed via our own webserver. Rather than use the built-in webserver of the camera (which requires either ActiveX or Java on the client side) to display the live feed, I would like to weed out just the live feed and display it on our c...

Streaming audio with Flash / Actionscript 3 - Slow playback problem

I've written a simple Flash player for a Shoutcast stream. At first it seemed to work reliably, however about 5% of the time users experience slow playback where the stream plays at roughly half of normal speed. All files being streamed are MP3, encoded at 128kbps/44.1kHz, the same settings as used in the Shoutcast config files, so the ...

What's the easiest non-memory intensive way to output XML from Python?

Basically, something similar to System.Xml.XmlWriter - A streaming XML Writer that doesn't incur much of a memory overhead. So that rules out xml.dom and xml.dom.minidom. Suggestions? ...

How do you get a flash mp3 player to keep playing if a user changes page?

I really like the mp3 player on 8tracks.com and was wondering how they manage to keep the mp3 playing even when I change pages? For example, listen to the track here http://8tracks.com/mixes?q=Aztec+Camera and click on one of the links to another page. The music cuts out for 1/4 of a second and then comes back in at exactly the right po...

How to stress-test video streaming server?

Does anyone know any good tool that I can use to perform stress tests on a video streaming server? I need to test how well my server handles 5,000+ connections. ...

Multiple H.264 video streams in one RTP session

I would like to dynamically switch the video source in a streaming video application. However, the different video sources have unique image dimensions. I can generate individual SDP files for each video source, but I would like to combine them into a single SDP file so that the viewing client could automatically resize the display windo...

What are the advantages of RTSP?

I am looking for the advantages of using RTSP to support streaming video to multiple devices. I have: Benefits of TCP. Commonly used protocol on web so supported by lots of infrastructure. Commonly used on web so lots of tools and stacks. Can use SSL. Wide device support (not sure on this one) Any other ideas? ...

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: target.write(conn.read(buf_size)) This gives me data but its garbled or wont play in mp3 players. ...

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 version. I am looking for the minimum requirements for their computers. We want to switch to this codec for our videos, but do not want to ruin o...

Java library to read a Microsoft Media Server (MMS) stream

Hi, I would like to know if there is available any Java library to read a Microsoft Media Server (MMS) stream. Thanks, Douglas ...

Live Video Streaming with PHP

I have a PHP/AJAX/MYSQL chat application. I want to add video chatting to my application. How can I create live video streaming to be used for live video conferences/chatting in a PHP application. What are the key-terms I need to know if I wanted to build such a system? Is it a good idea in the first place to use PHP? Is there something ...