Questions tagged [buffering]

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

Buffering is a process of temporarily storing data while it is being moved from one place to another. A buffer often adjusts timing by implementing a queue (or FIFO) algorithm in memory, simultaneously writing data into the queue at one rate and reading it at another rate.

Use this tag for programming questions related to data buffer and the process of buffering.

Source: Wikipedia

493 questions
0
votes
1 answer

How to add buffering percentage to an audio in ios

Hi I'm creating a radio application in ios by accessing a web service. ` NSURL *mediaURL = [NSURL URLWithString:urlString]; mp = [[MPMoviePlayerController alloc] initWithContentURL:mediaURL]; [mp prepareToPlay]; ` This is the way that I…
iDia
  • 1,397
  • 8
  • 25
  • 44
0
votes
0 answers

Is buffered transfer inherently slower than streaming with WCF?

So in the past when I was working on a file transferring application I used streaming, and I seemed to be able to transfer files at fast speeds at least to and from my local machine. I ran into problems though with very large files, over 4GB(I want…
Cowman
  • 678
  • 7
  • 25
0
votes
2 answers

YouTube style throttling in Flash

I may be completely insane on this one, but it seems like the download/buffer rate of YouTube videos is faster at the beginning and the further the buffer point gets from the currently playing mark, the slower buffering goes. Am I crazy, or does it…
Jay Paroline
  • 2,487
  • 1
  • 22
  • 27
0
votes
3 answers

Help me implement a rewindable buffer

This is where I'm so far: I have the following the following use case (as impartial jUnit test) to show what I want to achieve: buffer.add(o1); assertEquals(1, buffer.size()); buffer.mark(); buffer.add(o2); assertEquals(2,…
Esko
  • 29,022
  • 11
  • 55
  • 82
0
votes
1 answer

Python pexpect sendline contents being buffered?

I have the following code in Python using the pexpect module to run a perl script which asks a series of questions. I have used this for quite some time and works well until now. pexpect python index = child.expect(['Question 1:']) os.system('sleep…
gqdabien
  • 25
  • 1
  • 4
0
votes
2 answers

Buffering label in a stream using MPMoviePlayer

Im making a radio streaming application, my app is working perfectly. I have two buttons in my screen one for playing and the other for pausing, also I have a label that indicates the state of my player. I have no problem making this label show the…
Lord Pepito
  • 291
  • 3
  • 15
0
votes
1 answer

Php outputs contents while buffering

I have an application that works fine on my local server(wamp, apache v2.22.2, php 5.4.3) and test unix server (apache, php 5.3). But it won't work on production server which is running on Windows because of some other requirements. Code goes like…
praxus
  • 488
  • 1
  • 7
  • 18
0
votes
1 answer

File Streamed well without buffering but gets streamed partially while buffering

I have written a code which streams bytes from another server to my server and then I write those contents into my local file. It works fine when I use the read() method which doesn't buffer data. But when I use buffering (intention is that I…
abhihello123
  • 1,668
  • 1
  • 22
  • 38
0
votes
0 answers

Do I have Output Buffering disabled on my server

I have tried various methods from posts on this site to check if output buffering is turned on and working. Here is my source code
Matthew Underwood
  • 1,459
  • 3
  • 19
  • 33
0
votes
1 answer

Socket server displaying received data on the page

I need a script that listening for connections and outputs received data. I've tried following code: header('Content-Type: text/plain; charset=utf-8'); $socket = stream_socket_server("tcp://0.0.0.0:8000", $errno, $errstr); if (!$socket) { echo…
Ilya I
  • 1,282
  • 1
  • 12
  • 19
0
votes
1 answer

bufferTime on OSMF

I am having an issue with OSMF. I have an MP4 that is 40MB. It is being progressively loaded. My issue is the video wont begin playing until the video has fully loaded. I am testing this on a web server. Any idea what's going on or what I am not…
Ronnie
  • 11,138
  • 21
  • 78
  • 140
0
votes
2 answers

How to buffer output from a .net BackgroundWorker?

I have a stream of data coming in from an external source which I currently collect in a BackgroundWorker. Each time it gets another chunk of data, it presents that data to a GUI using a ReportProgress() call. I get the impression that the…
Jon Cage
  • 36,366
  • 38
  • 137
  • 215
0
votes
1 answer

Recording Radio Streaming in IOS

I am working on radio app in which i want to record live radio streaming on an record button click.It should record just the radio streaming sound. Currently i am recording from Mike but its not the way i want as it also captures the…
Shashank
  • 877
  • 7
  • 15
-1
votes
3 answers

Is it possible to get unbuffered web browser output?

I have a small cgi script that fetches and validates a configuration file for Nagios. The typical run time is several minutes, and I would like to get some feedback in the browser during the run. To illustrate what I would like to happen, consider…
Anders Lindahl
  • 41,582
  • 9
  • 89
  • 93
-1
votes
1 answer

Html5 Flickering Javascript

I am working on a basic game in javascript. I don't use jQuery. The thing is that I have trouble in getting rid of the flickering. I noticed it happens because of the canvas clearing command. I read a lot of suggestions that recommended a sort of…
Vlad Otrocol
  • 2,952
  • 7
  • 33
  • 55
1 2 3
32
33