Top "Buffering" questions

Buffering is a process of temporarily storing data while it is being moved from one place to another.

Reduce video buffering

I'm playing video on Android using media player via RTSP. The player takes about 12s to buffer before it starts …

android video-streaming media-player rtsp buffering
python: reading subprocess output in threads

I have an executable that I call using subprocess.Popen. Then, I intend to feed it some data via stdin …

python multithreading subprocess buffering
std::ifstream buffer caching

In my application I'm trying to merge sorted files (keeping them sorted of course), so I have to iterate through …

c++ performance file sorting buffering
What is a suitable buffer for Python's struct module

In Python I'm accessing a binary file by reading it into a string and then using struct.unpack(...). Now I …

python binary buffering
Reading multiple Python pickled data at once, buffering and newlines?

to give you context: I have a large file f, several Gigs in size. It contains consecutive pickles of different …

python newline pickle buffering
Java-Sockets: InputStream.read() vs BufferedReader.read()

I'm reading from a Socket's InputStream. Because I'm parsing the incoming data on the fly, I'm required to read character …

java sockets inputstream streamreader buffering