buffering

Silverlight mediaelement buffering

Hello I wish to play received voice data from network in real-time mode over mediaElement control panel. For this purpose it is needed that the control should not buffer. The MSDN only writes that the default value is 5mp but I try to set it to „0” or under „1” second but it is still buffering data according to 1 second . Has anybody...

How to stream a media file using PHP ?

I am trying to build an application in which i have to stream the media files (audio and video) to the browser. I am reading the file through php and send the data to browser. I am using the following code. header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1 header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the pa...

Pagination and Data buffering in Windows Application using C# 2005

Requirement .NET Windows application using C# interacts with Oracle DB for retrieving and saving data Issue With huge volume of data, the performance is slow and the memory usage is high, the application displays the entire data in the screen. Response time is high due to database call and client side data processing Proposed Soluti...

buffering in iostream

hello everyon, can somebody please explain, what exactly does it mean? I'm trying to understand what is the difference between clog and cerr, difference is only in buffering thanks in advance ...

How to disable output buffering in Process.StandardOutput

This question has been asked more than once before, but I have not found a satisfactory answer in any of those discussions. I am launching a command-line process that produces a real-time measurement to STDOUT, producing a new result approximately every second. Using System.Diagnostics.Process.StandardOutput results in completely unacc...

unbuffered urllib2.urlopen

I have client for web interface to long running process. I'd like to have output from that process to be displayed as it comes. Works great with urllib.urlopen(), but it doesn't have timeout parameter. On the other hand with urllib2.urlopen() the output is buffered. Is there a easy way to disable that buffer? ...

Equivalent of BufferedReader.readNext() for ObjectInputStream in Java

I have a Server communicating with multiple clients through a socket connection. In my original program, messages were sent and recieved using a PrintWriter and a BufferedReader. When I checked to see if any new messages had been received, the BufferedReader would have them all stored and I could read them one by one. I am now trying to...

Reduce video buffering

Hi All I'm playing video on Android using media player via RTSP. The player takes about 12s to buffer before it starts playing. Anyone know how I can convince the player to buffer less? I have full control over the RTSP server and the SDP it returns. Regards Phil ...

Does Streaming a WCF Soap Help the Client Send Using Less Memory?

I have a windows mobile application that sends data via WCF to a server. The data it sends sometimes exceeds the limit on the windows mobile device. I am wondering if streaming would help not need to hold all the data I must send in memory at once. Here is a simple example: [DataContract] public class MainContract { [DataMember] ...