|
I want to watch a flash video stream. While it works for some sites (like youTube), it doesn't work for others (like hgtv.com). When I access the site and want to start a video, I get an endless "buffering .." and no network traffic at all. Looks like...
Started by IronGoofy on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at superuser):
My second.
The browser's player window simply sits at "Buffering" forever.
I can use the webcam protection, but to no avail .
From websites play, but I can't view live content or stream a webcam outwards.
|
|
Hi all,
My problem is this: I have a C/C++ app that runs under Linux, and this app receives a constant-rate high-bandwith (~27MB/sec) stream of data that it needs to stream to a file (or files). The computer it runs on is a quad-core 2GHz Xeon running...
Started by Jeremy Friesner on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Alternatively you can always flush the buffer manually at pre-set, not latency....
If we are talking about std::fstream (or any C++ stream object)
You can specify your own buffer customize the behavior of the stream.
Storage.
|
|
Hi all,
I want to play an flv video file in my website. The video will be started playing considering the internet connection speed of client machine so that the video will never pause showing the loading image for buffering.
Either the buffering/streaming...
Started by Himadri on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
If you don't want to show anything never need to show a buffering....
You can create custom buffering animations.
Internet speeds are variable.
Also it's not a good idea to not allow buffering when not preloading the whole flv.
On this.
|
Ask your Facebook Friends
|
I'm using command line PHP to build some files offline. To capture the script output I use the standard ob_start stuff:
ob_start(); // Echo lots of stuff $content = ob_get_contents(); // Now the $content can be written to a file
However, I also want to...
Started by Joonas Pulakka on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Use the php://stderr stream:
$f = fopen('php://stderr', 'w'); fputs($f, 'Output');
EDIT: Also (both constants containing file pointer resources) using fputs():
ob_start(); echo 'Output buffer";
It is possible to 'pause' an output buffer....
|
|
Hi guys, my question today deals with Flash AS3 video buffering. (Streaming or Progressive) I want to be able to detect when the video is being buffered, so I can display some sort of animation letting the user know to wait just a little longer.
Currently...
Started by Leon on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You should be able to capture that event and play milliseconds and take decision based on that... .
Are you using a custom-rolled player? I know the FLVPlayback class has a buffering event built object every time it starts or stops buffering.
|
|
Is output buffering enabled by default in Python's interpreter for sys.stdout ?
If the answer is positive, what are all the ways to disable it ?
Suggestions so far:
Use the -u command line switch Wrap sys.stdout in an object that flushes after every write...
Started by Eli Bendersky on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
>>> class....
You could also replace sys.stdout with some other stream like wrapper which does a flush after every call.
From Magnus Lycka answer on a mailing list :
You can skip buffering for a whole python process PYTHONUNBUFFERED.
|
|
Using NetStream to stream content from http, I've noticed that esp with certain exported h264's, if the player encounters an empty buffer, it will stop and buffer to the requested length (as expected).
However once the buffer is full, the playback doesn...
Started by meandmycode on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Ideally now you listen for a buffer full event, and resume it- but since the stream is paused buffering up....
This issue, if you listen to the netstatus event, and wait for an empty buffer event, you pause the stream..
|
|
Hi
There is a question I have been wondering about for ages and I was hoping someone could give me an answer to rest my mind.
Let's assume that I have an input stream (like a file/socket/pipe) and want to parse the incoming data. Let's assume that each...
Started by invictus on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
There is always....
Say realloc to twice the size and continue writing.
buffer would not solve the problem as it is just not possible to know what size is large enough in the known universe?
Resizing the buffer looks like the best solution.
|
|
Ok, I am trying to use Tail to monitor a log file, but I cannot get the same behavior programatically as when I manually run it through cmd prompt using the same parameters.
When run through cmd prompt it displays the new lines instantly . Programatically...
Started by sieben on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try using: System.Console.Error
Process.StandardOutput, when redirected, defaults to a StreamReader with a 4096-byte ....
In most languages and operating systems the standard stream is usually buffered, but the error stream is not.
|
|
I am trying to build a video player application using Adobe Flex and libh264streaming. In small cased my little player works just fine.
However if the video is bigger about 200-300MB I am seeing bunch of issues: a) the browser get crashy b) it never stops...
Answer Snippets (Read the full thread at stackoverflow):
Or at least between the server and the client, such that the stream gets properly delivered to a raw stream of data:
I would need to know what interfaces you are using in flex to load the video objects that loads mp4 files in chunks (say....
|