streaming

Windows application in C#?

I am designing a Windows application in C# which when run for the first time creates a local database (SQLite) and the data (around 200 MB or even more) to this is feed as a data stream from a remote server based on the criteria specified by the user. Currently I have planned to access the database server directly from the application. ...

Large data! stream tcp/ip or a web service?

Hi, What's the best way to retrieve huge data (only once when you create a local database) like 200 MB (may be in chunks) streaming tcp/ip or web service or directly from the DB server or something else? Factors: Speed and may be security. Languages: C# client anything on the server preferred open source. If we take direct DB access h...

Flex streaming timing out

I have a Flex GUI which is using AMF Streaming to BlazeDS on WebLogic 9.2. As the AMF Streaming uses long polling, it keeps the connection open for extended periods of time. WebLogic has a max thread timeout of 600 seconds. WebLogic throws an error and times out the thread if it has been alive for longer than the timeout. This causes my...

Java: How to split XML stream into small XML documents? XPath on streaming XML parser?

I need to read a large XML document from the network and split it up into smaller XML documents. In particular the stream I read from the network looks something like this: <a> <b> ... </b> <b> ... </b> <b> ... </b> <b> ... </b> .... </a> I need to break this up into chunks of <a> <b> ... </b> <a> (I only actually need the <b> ......

Should I encode flash videos using cbr or vbr for streaming?

We are going to be hosting some videos that will be streamed (not progressive download). Which is recommended? CBR (constant bit rate) or VBR (variable bit rate) encoding? ...

full-duplex TCP/IP stream socket connection vs PollingDuplexHttpBinding vs WSDualHttpBinding

full-duplex TCP/IP stream socket connection vs PollingDuplexHttpBinding vs WSDualHttpBinding I want to know - What is same What is different Some comparing tables Some articles Where what can\cannot be used etc. ...

What is a better way to stream audio with Perl CGI?

Stackoverflow: For a cs assigment I am using the following code to stream audio. However, now I would like to add the ability to stream files successively, as in a playlist, how can I modify my code to accommodate this? I would like to have a text file of filenames that my script passes through sequentially streaming each. Is this ...

Best way for live RTMP streaming from dv camcorder

I herd about RED5, but unfortunately I can't find any examples for feeding it with external source. I know RTSP is in development, but I'm thinking about (named) pipes or something like this. There is is also project named xuggle that is as far as I understand ffmpeg wrapper for Java, but I herd they have also problems with live streamin...

Does Flash/Flex fully load a flv before starting to play it?

If you have an flv of 20mb, does Flash fully load it before starting to play it? And if not, what's the difference then with streaming video? ...

How do i stream an audio file from the server to iphone?

Hi all, I need to stream an audio file which is saved on my server. Is it possible for me to stream that file in order to play it on my iPhone? Or is there any other way to play an audio file from the server to iPhone? help me please. Thanks, Shibin ...

Why is WCF reading input stream to EOF on Close()?

We're using WCF to build a simple web service which our product uses to upload large files over a WAN link. It's supposed to be a simple HTTP PUT, and it's working fine for the most part. Here's a simplified version of the service contract: [ServiceContract, XmlSerializerFormat] public interface IReplicationWebService { [Operation...

get underlying response stream from WebOperationContext

How do I get access to the underlying response stream from a WebOperationContext? ...

Streaming input to System.Speech.Recognition.SpeechRecognitionEngine

Hello, I am trying to do "streaming" speech recognition in C# from a TCP socket. The problem I am having is that SpeechRecognitionEngine.SetInputToAudioStream() seems to require a Stream of a defined length which can seek. Right now the only way I can think to make this work is to repeatedly run the recognizer on a MemoryStream as more...

Pay Per View Video Streaming

A few of my clients have been asking about adding Pay Per View video content too their websites. Most of these people are coaches wanting to teach other people coaching by demonstration. Do you know of any services that offer pay per view video streaming that I can use with ASP.NET, which work on both PC and Mac? I did a quick search o...

Record the timestamps of slide changes during a live Powerpoint presentation?

I am planning to implement a lecture capture solution. One of the requirements is to record both the presenter and the slideshow. The presenter is recorded with a videocamera obviously, and the slideshow will probably be captured using a tool like Camtasia. Now during playback three components are visible: the presenter, the slides and ...

Linux application that bundles multiple incoming audio and video streams into one container file?

I've been assigned to implement a video on-demand service for a local university. Different aspects of the lectures (video, audio, screen cast, white board) will be recorded. During a lecture all these data streams arrive at one Linux server. This server should transcode and bundle all these streams into one container (Matroska) file. M...

Streaming Audio Clips from iPhone to server

I'm wondering if there are any examples atomic examples out there for streaming audio FROM the iPhone to a server. I'm not interested in telephony or SIP style solutions, just a simple socket stream to send an audio clip, in .wav format, as it is being recorded. I haven't had much luck with the google or other obvious avenues, althoug...

how do you stream a sound clip on a web page so it is not easily downloadable?

This isn't my area of expertise at all, so I was wondering if anyone could point me in the right direction for streaming a sound clip from a web page. The main restriction is that it can't be easily saveable. (So direct .wav's or whatever playing is out.). One suggestion i've had is using some sort of flash streaming. What other option...

Seekbar problem in wpf media element when playing a streaming video

Hi, I'm having a problem with the mediaelement in WPF. I need to make a audio/video player that plays media from a streaming server (my streaming server) the problem is that I can't get the seek bar to work. The same video played from "c:\video.ogv" works perfect and from "http:\127.0.0.1\video.ogv" has no seek bar, the video plays fine...

Streaming via RTSP or RTP in HTML5

I'm building a web app that should play back an RTSP/RTP stream from a server (http://lscube.org/projects/feng). Does the HTML5 video/audio tag support the rtsp or rtp? If not, what would the easiest solution be? Perhaps drop down to a VLC plugin or something like that. ...