The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
20 views

Android Vitamio weired buffering on progressive download stream

I try to stream (progressive e.g: http://server.com/video.mp4) when i use the standard google mediaplayer (VideoView from android package) and register an onBufferingUpdateListener then i get the ...
1
vote
0answers
35 views

Flowplayer is not autobuffering but loading whole video

I am using flowplayer to play flash video. I've set autobuffering to true but it is still loading the whole video before playing. I've also tried setting bufferlength: 2, but no better. When using ...
1
vote
0answers
29 views

Java Double Buffering is Only Producing a Gray Screen

I'm working on a simple game for a class project, and can't get my image to paint onscreen. Here's my JFrame that serves as the user's interface. import java.awt.image.BufferStrategy; import ...
0
votes
1answer
57 views

Video streaming stops buffering playing in iPad

I am playing a video from URL in my MPMovie player but after some time buffering stops and do not start again. Code to play movie is given below NSURL *fileURL = [NSURL URLWithString:strURL]; ...
1
vote
0answers
24 views

Cocos2d 2.x: enabling z-buffering and using vertexz

Assumption: I am using Cocos2D 2.0 that uses OpenGL 2.0 ES. My game has one spritesheet for all level assets (e.g. background, enemies, clouds) and one for the player character sprites and HUD ...
0
votes
0answers
20 views

AVPlayer not buffer in background mode

I'm playing mp3 audio stream using AVPlayer I'm getting all urls from an array and play songs 1 after the other. my songs play in background also if particular song completed his buffering.My problem ...
0
votes
0answers
61 views

Is there a good way to buffer large video files with media elements js player in Chrome?

I'm being forced to use rather large videos within an html 5 video player and I can't seen ti get the buffering to work while playing in Chrome on both a Mac and PC. The player buffers great in ...
0
votes
2answers
49 views

libpcap not receiving in real time, seems to be buffering packets

So I'm working with a device where I need to send and receive raw ethernet frames. It's a wireless radio and it uses ethernet to send status messages to its host. The protocol it uses is actually IPX, ...
1
vote
1answer
206 views

jQuery AJAX load and Youtube API iframe

i'm working on a webpage. I'm using jQuery load (AJAX) function to dynamically load new content into the content div. In each of these content divs there is an image. When you click on that image a ...
-1
votes
1answer
62 views

Suspected Perl buffering issue

I think I'm having a Perl buffering issue since I need to read and parse big text files (created by myself in previous lines of the code) to finally print things in another file. At some point, ...
0
votes
0answers
46 views

Is it possible to play a video from a file still being written using MPMoviePlayerViewController?

I am trying to start playing a video file while still being downloaded(i.e. I am trying to emulate buffering.) My approach: I maintain a file handle to the video file created. In – ...
0
votes
1answer
76 views

Buffering Youtube video in Firefox (api)

I noticed that in Firefox with html5 embeddedd videos if I embed a youtube video the video buffers like crazy even if the video is paused. In Chrome the buffering is managed though. Is this a known ...
1
vote
0answers
192 views

Android SDK VideoView - How to buffer second video after first video finished buffering while first video is still played

I have got this code, which works great for playing one video from http: public class MainActivity extends Activity { private VideoView mVideoView; @Override public void ...
0
votes
1answer
67 views

How to avoid buffering in the Python fileinput library

I've seen this question asked here, but the answers given did not work in my case and was marked duplicate. python -u does not work for stdin in Python 3. sys.stdin = sys.stdin.detach() throws a ...
1
vote
1answer
322 views

Android - Canvas.drawBitmap doesn't work correctly on certain devices

I have a problem with my android app which draws graphs of functions on a plane. To do this I use a custom View. The user can pan the coordinate system with touch. In the onDraw method, the coordinate ...
0
votes
1answer
143 views

Long buffering in mp4 videos

We've built our video site to stream videos that cater to all browsers - OGV for Firefox/Chrome, Flash for IE and MP4 for Safari. Specifically, our video tag is: <video id="movie" width="100%" ...
-1
votes
3answers
41 views

Php output buffering and sleeping

Im tring to get php to load a webpage, wait for a minute, and load another page.. Problem is, php does not output the first page before sleeping and outputting the second page to the screen... Here ...
0
votes
1answer
171 views

How to create a music player for iPhone/iPad which can buffer and play songs from server?

I want to develop a music player for iPhone/iPad with the functionality: -Buffer and Play MP3 songs from server(no downloading). -Play. -Pause. -Stop. -Adjust Volume(Slider). -Song Status/ Playing ...
0
votes
1answer
101 views

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]; ...
0
votes
0answers
33 views

A simple code to printf the buffering type of stdout, but I can not explain the result

Here is the simple code, I print the buffering type of stdout twice, but got different result. #include <stdio.h> #define dprintf(msg...) do{printf("%s[%d] : ", __func__, ...
6
votes
2answers
186 views

Buffering of standard I/O library

In the book Advanced Programming in the UNIX Environments (2nd edition), the author wrote in Section 5.5 (stream operations of the standard I/O library) that: When a file is opened for reading and ...
6
votes
2answers
118 views

file.tell() inconsistency

Does anybody happen to know why when you iterate over a file this way: Input: f = open('test.txt', 'r') for line in f: print "f.tell(): ",f.tell() Output: f.tell(): 8192 f.tell(): 8192 ...
0
votes
0answers
77 views

HTML5 Audio Quits Buffering

I am having lots of trouble with an audio element I have on a website. A few prefacing statements first: I am using an HTML5 audio element Each audio file is roughly an hour long About 70% of the ...
0
votes
0answers
166 views

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 ...
1
vote
1answer
62 views

printing menu in terminal and choosing an option, how to? [duplicate]

Possible Duplicate: Wrong IO actions order using putStr and getLine I'm a haskell beginner. I'm trying to make a program that shows a menu through terminal and ask user to introduce an ...
0
votes
0answers
122 views

live stream play of player on MPMoviePlayerController

I am trying to play the live stream of the built-in player on MPMoviePlayerController by HLS (HTTP Live Streaming). I implement HLS server & stream segmenter and one segment stream is 3 seconds. ...
0
votes
1answer
351 views

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 ...
1
vote
0answers
279 views

AS3 FLVPlayback occasionally stuck in buffering on launch

I've got a Flash CS6 FLA with an instance of the FLVPlayback component (2.5.0.26) and an instance of the Progress Bar component on the stage, loading an external FLV. I'm trying to preload a specific ...
2
votes
1answer
608 views

HTTP Live Streaming. “Skipping autoplay, not enough buffered to keep up.”

With new iOS 6 i start getting strange behavior of MPAVController. My app receives video via HTTP Live Streaming from the server. Now i often see messages like this: [MPAVController] Autoplay: ...
0
votes
1answer
84 views

stdbuf with setuid/capabilities

I am reading output from another process which generates output (slow and infinite). Because I want to read this data in real-time I use "stdbuf -oL" (line-buffered, data is text). I do not have ...
1
vote
2answers
53 views

How can i get a time data for video stream?

I study android. How can i calculate and predict a time that is video buffering when use video streaming. It will calculate time when showing video streaming.(ex youtube) How catch a point of ...
3
votes
2answers
448 views

PHP: <<< vs ob_start

In PHP sometimes I see this: $html = <<<HTML <p>Hello world</p> HTML; Normally I would have used ob_start() : ob_start(); ?> <p>Hello world</p> <?php $html = ...
0
votes
3answers
56 views

What is IO Stream Buffering?

I am unable to find the underlying concept of IO Stream Buffering and what does it mean. Any tutorials and links will be helpful.
0
votes
1answer
211 views

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 ...
2
votes
1answer
296 views

Stop audio buffering in the <audio> tag

I am currently working in using the html5 audio player to provide a audio stream (24/7 radio stream) via the (mobile) browser. Loading in the stream and playing it works fine. The major problem is ...
3
votes
1answer
234 views

WCF Streaming and maxReceivedMessageSize

Why is the maxReceivedMessageSize property relevant when implementing WCF Streaming? Since buffering and persistence is handled by the consumer of the stream, why does WCF concern itself with how big ...
4
votes
2answers
202 views

ubuntu apache2 cgi output buffering

I'm having problems with apache2 on unbuntu ( 11.04 and 12.04 ) buffering all cgi output until the script terminates. If I run the same script on Centos/rhel 6.2 apache2, it runs normally. ...
0
votes
0answers
112 views

some questions of youtube api on video stalling, buffering,streaming

I want to do some tests to get some youtube streaming quality results. the following procedures will be run through scripts the script will open a firefox browser to view a video for 200 seconds, the ...
0
votes
1answer
112 views

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 ...
0
votes
0answers
194 views

Enable buffered I/O to stdout with Intel ifort compiler

I've read the Intel docs about enabling buffered I/O with ifort (using -assume buffered_io or FORT_BUFFERED=true), and this works for output directly to files. However, we have large applications that ...
0
votes
0answers
142 views

Video Buffering Code Required - Android 3.1 / PhoneGap [closed]

I'm using the video plugin to play a video in my Android app. Everything was fine when I used a small test video. But when I try to integrate one of our actual videos (a 100MB mp4 file) into the app, ...
5
votes
2answers
296 views

Perl, disable buffering input

There is a file: :~$ cat fff qwerty asdf qwerty zxcvb There is a script: :~$ cat 1.pl #!/usr/bin/perl print <STDIN> The command works as expected: :~$ cat fff | perl -e 'system("./1.pl")' ...
1
vote
0answers
266 views

Streaming chunks of audio (mp3) using Java&JSP for real-time playback through servletOutputStream

I am trying to playback audio and keep it continuous and free from skips or blank spots. I have to first receive as bytes in chunks and convert this to mp3 to be streamed by the servletOutputStream. I ...
2
votes
2answers
671 views

How can I buffer my Java input/output/file streams properly?

I'm writing an application that needs to send a file over the network. I've only been taught how to use standard java.net and java.io classes so far (in my first year of college) so I have no ...
0
votes
1answer
133 views

Python in raw mode stdin print adds spaces

I needed to switch the standard input to non-buffered mode in Python, so that I can read single characters off it. I managed to get it working, but now the standard output is broken: somehow it seems ...
0
votes
0answers
87 views

Clear buffer in MediaElement

MediaElement in silverlight has BufferingTime property. And I need to clear framse in buffer of MediaElement. So how I can do it?
1
vote
0answers
235 views

Chrome starts buffering from seeking point in OGG file, but not in MP3 file

I've set up an HTML5 audio-tag with two sources, an OGG-file and an MP3-file, as follows: <audio controls="controls" id="audioplayer1"> <source src="podcast.mp3" type="audio/mpeg" /> ...
1
vote
1answer
118 views

Buffering characteristics of Unix Sockets

Does anyone know the buffering characteristics of Unix sockets when sending small chunks of data(a few bytes)?, when using TCP sockets I can disable the Nagle algorithm to prevent latency in data ...
0
votes
0answers
206 views

C#, huge performance issues drawing objects in picturebox

I wondered if someone could helped me out. I am having huge performance issues with my program that eats up 20%-40$ of my core2duo CPU. The program is very simple and does this: private void ...
1
vote
0answers
372 views

How to get status of buffering video and fix custom logo in video player in c# using VLC Plugin

I am developing a video player for Window based computer, which can play online streaming videos from any address e.g. rtsp://live.example.com/live/mystream For this purpose I am using Plugin from ...

1 2 3 4 5 6