|
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,
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.
|
|
I need a way to stream FLAC and HD Movies to my PS3. The PS3 Media server works, but it skips often, which simply would be solved by buffering. Is there such a thing?
Started by KHAndAnime on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at gamespot):
But afaik,PS3 can't play FLAC files.
Using TVersity to stream HD movies.
|
Ask your Facebook Friends
|
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..
|
|
Hello! For the last few days I seem to have encountered a buffering problem with streaming (iPlayer, Netflix, Apple TV etc).
I've never had an issue with this before and have been generally very happy with the service over the years and will in fact upgrade...
Started by markyd on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at talktalkmembers):
|
|
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....
|
|
Slow video buffering (YouTube) Downloads work fine (full speed) but watching videos at 20 - 30 Kbps.
Started by Eyenstyn on
, 15 posts
by 7 people.
Answer Snippets (Read the full thread at za):
The speed goes down to 11-12kbps...so at all (clicked the link and it played perfectly with no... .
Being unable to stream even a low quality video (ie USE the internet buffing alot Thanks, it still takes a while to buffer.
Things hunky dory.
|
|
When dealing with mobile clients it is very common to have multisecond delays during the transmission of HTTP requests. If you are serving pages or services out of a prefork Apache the child processes will be tied up for seconds serving a single mobile...
Started by Carlos Carrasco on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Still, something might be better than from a backend, Squid does convert it from C-T-E: chunked to a regular stream with Content-Length set, so are looking for are
http....
This method gives you the fine buffering control you want, however.
|
|
What's the optimal buffer size to use with a stream from HttpWebResponse.GetResponseStream()?
Online examples vary from 256b to as much as 5Kb. What gives? I guess buffer sizes might be situational. If so what are the situations to use what type of buffer...
Started by fung on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
A buffer large enough so you are not needlessly reading data from the stream, but not so large you a few extra calls down through the layers to get the bytes (though the stream is likely doing at least some buffering -- I ....
|