streaming

Adding a Java Web Service Client in Netbeans that supports streaming with a WCF Streaming Service?

I have a C# WCF basicHttpBinding Streaming WebService. The signature of the method that I want to access is: [OperationContract] void SendStream(Stream stream); However, when I try to add it as a standard Java Web Service Client into my Netbeans project. The auto-generated proxy method signature gets changed to: void SendStream...

Local server on iPad

We have an application which would involve HTTP live streaming. As per the documentation, I can encode my streams and provide the encryption key url (if the key is stored on remote server) in the index file (m3u8). I want to know if it is possible to store the key locally on the ipad and refer to it locally somehow in the index file. Is ...

Detecting video bitrates from a PCAP dump of a (progressive download) stream

Hi, I'm trying to write a program that takes in a PCap dump, detects whether there is an flv stream in it, extracts the bitrate, and infers from the packet times the streaming performance (how long it took to download vs how long the video was). Ideally this should be in C on Linux, but I'd be happy if I can get a prototype working in ...

possible to stream wma sound files on iPhone/iPod touch?

Hi there, i searched with keyword "wma" but couldn't find similar posts, so i start this post. My goal is to download wma files from a known website and playback those files. These wma files are recorded radio programs, a sample link looks like: "mms://media.chinabroadcast.cn/eng/music/morning/2010/0825a.wma". Online streaming is accept...

is it possible to record video in Flex without streaming to a server

I want to give my users the ability to record a video from WebCam (maximum 60 seconds) so the file should be big with proper quality settings. Do you know of a way to record it in memory (as Flash running in browser can't access file System) and then send it to server to save the file? I have build a functionality to capture a photo ...

Streaming an undetermined number of objects through WCF

I have a WCF service that needs to read large (10 to 20 million) numbers of objects from the database. What I'd like to do, is have the client open up a stream and have the server push data from the database as it's reading. So the client could just sit in a loop deserializing messages until it gets the EOF message from the server, ...

Dynamic Transcoding and streaming

hello, im trying to work out the best way to have my site dynamicly transcode and stream video files to users who are mostly on mobile devices, site is php/mysql based and running on a windows 2003 server which i have full access to, any ideas how best to do this - id rather not need to transcode videos on upload if possible ...

Radio Streaming on iPhone

I have implemented Radio Streaming functionality for iphone. I am successful to play audio likes mp3, mp4. But I need to play live streaming like AAC, WMA format which iPhone doesn't support directly. Is there any way to play this file formats. There is already one application available called Wunder radio on the app store. They also pr...

Stream makes function run forever

Hi, What kind of stream can cause to function run forever ? Is such stream exist ? ...

iPhone Radio Streaming for WMA audio files

I need to implement iphone streaming functionality for WMA audio files from the server. iPhone can support only mp3, wav, aac audio files. But I need to play wma audio streaming for the iphone radio application. Can anyone tell me how to do this things. I really thankful for your help. Thanks in advance. ...

silverlight adaptive steaming, server side encoding?

has anyone used microsoft expression encoder SDK to do server side encoding of videos to preapare it for silverlight adaptive streaming? What is your experience with it? ...

Which design pattern to choose

Hi, i need a pointer i the right direction. I have been looking around and cant seem to find any design pattern (GoF) that will point me in the right direction. I am developing a small digital signage application prototype, where there is a simple server and an amount of player applications (displaying an image/video) connected to this ...

Download image from the site .net[c#]

Hi All, I am trying to download images from the site. The code which i am using is working fine till the image is available. If the image it not available it is creating problem. How to validate availability of the image. code: Method 1: WebRequest requestPic = WebRequest.Create(imageUrl); WebResponse responsePic = requestPic.GetRes...

Download streaming RTSP protocol

Hi, Are there any class or snippet in PHP or C# (better in php if could be), to download video from an streaming source that uses RTSP protocol? Thanks a lot in advance. Best Regards. Jose. ...

Stream File to a Windows Service.

Hi, I have a windows service that needs to send an attachment through email. This service does not have access to the file location. So, I need to write something that the windows service will call and get the file stream from. What is the best approach to accomplish this. I have tried creating a webservice that will write the strea...

Stream mp3/asx/pls/m3u webradio android

Hi there. I'm building an android app that is basicaly a directory of up to 10 local radio. The app should allow the user to listen to any of thosne radios. All i got for those radio i a stream URL (pls/asx,/m3u/mp3). How should i implement the MediaPlayer to stream all those format? thansk in advance. ...

Problem in Silverlight smooth streaming in Chrome

Sometimes i'm getting a problem in google chrome when i try to play a smooth streaming video. Can someone please test this link: http://bizup.cloudapp.net/post/136 Thanks, João ...

Stream Video with ASP.NET

Is there a good way to stream video through asp.net to a normal webpage and mobile? I've tried the following but it doesn't work in my Sony Ericsson K810i. When I try it in my browser, I can see the clip (don't know if it's streaming though). html: <object type="video/3gpp" data="handlers/FileHandler.ashx" id="player...

Is it possible to stream XLS?

I'm generating .xls (not .xlsx) files, using a third-party XLS library. For the most part, it works great. One problem is that it operates, roughly, by building the entire file (e.g., in memory, though on disk wouldn't be much better), and then sending it off. For large files, simply having this many bits can hurt! OTOH, when we want...

Broadcast live iPhone video feed iPhone SDK

Is there any way to take the video feed from the camera of an iPhone and broadcast it to a local server (or remote if necessary)? It does not need to save it to the server, just to be able to access it. Sort of like a web cam app. Thanks in advance ...