streaming

how my cocoa application can track streaming-audio activity

I have to develop a application to log online streaming information like opened player(iTunes,Quicktime),running track, total running time of particular track. ...

Video embed flashing

Can anyone help me with this video embed and tell me why it's flashing instead of playing the video? http://www.seilingsfloors.com/dvd/ Update: I have verified that the .flv file is the correct size and am still experiencing the issue. ...

How best to manage Linux's buffering behavior when writing a high-bandwidth data stream?

Hi all, My problem is this: I have a C/C++ app that runs under Linux, and this app receives a constant-rate high-bandwith (~27MB/sec) stream of data that it needs to stream to a file (or files). The computer it runs on is a quad-core 2GHz Xeon running Linux. The filesystem is ext4, and the disk is a solid state E-SATA drive which sh...

multiple http requests when processing streaming response using httpcomponents

I'm a newbie to http and Apache's HttpComponents API. I need to process a streaming response of an http request using Apache's HttpComponents, while there may be additional http requests made on that connection. For example, a POST request is initially made to http://mystreams.net, which later follows with additional requests, while ...

Getting headers when streaming images through PHP from a database

I have some pretty simple php code that returns binary image data from a database. ob_start(); $stmt = $db->prepare($sql); $stmt->execute(array($ImageID)); $stmt->bindColumn(1, $lob, PDO::PARAM_LOB); $stmt->fetch(PDO::FETCH_BOUND); ob_clean(); header("Content-Type: " . $content_type); fpassthru($lob); Let's call this script get_ima...

How to stream large Files using JAXB Marshaller?

Hi. The Problem I'm facing is how to marshall a large list of objects into a single XML File, so large I can not marshall the complete list in one step. I have a method that returns these objects in chunks, but then I marshall these using JAXB, the marshaller returns with an exception that these objects are no root elements. This is ok ...

Play youtube videos with MPMoviePlayerController

Hello I'm trying to stream some youTube videos using the MPMoviePlayerController but I'm having some problems. The code i'm using is pretty simple and I can play .m4v videos by passing a URL to initWithContentURL. When I launch the movie player the player comes up but just goes away after about 20 seconds. When I try it in the simulat...

Multi-bitrate/dynamic rate for progressive FLV playback

Is there a way to get multi-bitrate playback working with progessive playback without having to download all versions of the file? People all coming up with all kinds of cool ways to make progressive feel like streaming. I wouldn't be surprised if there is also a hack for this. Any module names or reading resources that people in the kno...

A problem with play mms streaming

Error log: [Session started at 2009-11-25 11:10:27 +0700.] 2009-11-25 11:10:32.454 MoviePlayer[1085:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Invalid content URL provided to MPMoviePlayerController (mms://202.142.200.130/fm97.5). Use +[NSURL fileURLWithPath:] for local movie files.' 2009-1...

C# File Upload read to memory and use as text file - is there a better way?

I have a intranet hosted web application where the user will upload a text file with space delimited data in 5 columns. I don't wish to save the file so I wanted to just use it in memory. I tried many different examples off the web and none worked. Finally a co-worker showed me how to do this. Here is the code and I'm wondering if there ...

Live Audio Streaming alternatives *without* Flash, Silverlight...

What , if any, alternatives are there to Flash, Silverlight, and Java applets for streaming live media? ...

Stream Audio from Linux Server with Silverlight

I have a large catalog of audio on a Linux (CentOS 5) server that I would like to expose to an existing .NET web site. Is there any way to stream the media from the Linux server through my web site using Silverlight? If so, how would a person go about setting it up? Thanks in advance! ...

Streaming MP3 with open source PHP

What are the best PHP solutions for a blip.fm-like fixed audio player? ...

Video streaming using c++

I'm going to build an application in c++ that creates stream of photos and then sends them as video stream to another application. any ideas about how can i start? what I mean is, what libraries should i use and what the encoding? I'm thinking about MJPEG, and UDP or RTP as protocol.... any help would be greatly appreciated. ...

read chunk by chunk bytes from a file in iphone application

hello I am trying to implement an iphone application which can read some fixed amount of bytes from a file and store in another file. this process will going on up to end of file. I am very new to iphone application so please help me on that . Is there any parent classes are there for this specific type of implementations. ...

calculating filesize of a response?

hello, im tryingto code a script to do dynamic transcoding of video and audio (likely just audio for now) and streaming to mobile devices, currently im using the script posted elsewhere on here (http://stackoverflow.com/questions/1608571/how-do-you-convert-audio-files-on-the-fly-to-the-browser) but this seemsto have problems as i do not ...

What is a good pure Perl on-line or streaming statistics package?

Are there any prerolled streaming statistics libraries for Perl à la: http://en.wikipedia.org/wiki/Algorithms%5Ffor%5Fcalculating%5Fvariance#On-line%5Falgorithm I haven't found anything on CPAN yet and I really don't want to have to code one myself. ...

custom seek bar for a streaming video file in android

How can we display a custom seek bar for a streaming video file in android? ...

Sending movie stream from client to server. The python server should play the stream on the fly.

I would like to simulate some kind of camera on a UAV. The camera should provide a live stream, and send the stream over a network connection to a server. The server should be able to play the stream on the fly for me to see. I was thinking the client(uav) just read a moviefile and sent it to the server. But how can the server show the ...

Streaming in and out of an SQL Server 2005 image field with C# ?

After having checked extensively for an answer to this question, I still cannot find a satisfying solution. So here goes. I need to store possibly large amount of data in a column of an SQL Server 2005 table. I absolutely need to work in a streaming fashion, so that : When writing, the data is sent in chunks to the database. Is there ...