This is a message.

Forum user: electroteque

Basic information

Registered Nov 12, 2008
Last login on friday
Forum posts 280
Direct URL http://www.flowplayer.org/forum/users/6185

Latest forum posts

Posts:

Registered:

» » » » » » » » » » setBitrate method of bwcheck buggy and can"t use bitrateseelct with bwcheck

Posted: hour ago

http://dl.dropbox.com/u/3394987/flowplayer.bitrateselect-3.2.10.zip
http://dl.dropbox.com/u/3394987/flowplayer.bwcheck-3.2.10.zip
http://dl.dropbox.com/u/3394987/flowplayer.menu-3.2.9.zip

Please try these combinations. but now set the urlsResolvers config to urlResolvers: ["bwcheck", "bitrateselect"]

Posts:

Registered:

» » » » » Nokia Symbian^3 Flash Lite 4 and Flowplayer

Posted: 2 hours ago

Same with android. You have to try and find a download in some market place app, are you able to search for it ?

Posts:

Registered:

» » » » » » » setBitrate method of bwcheck buggy and can"t use bitrateseelct with bwcheck

Posted: yesterday 09:59

urlResolvers: ['bitrateselect','bwcheck'] yes in this order, perhaps another documentation error :)

Posts:

Registered:

» » » » » setBitrate method of bwcheck buggy and can"t use bitrateseelct with bwcheck

Posted: yesterday 09:09

I see what you are doing, if you want to run a bandwidth check on start chain it with bitrateselect which works with the menu plugin, do not try to use javascript callbacks to also try and set the stream.

http://flowplayer.org/plugins/streaming/brselect.html

Follow the docs here

http://flowplayer.org/demos/plugins/streaming/brmenu.html

and in your clip resolver

urlResolvers: ['bitrateselect','bwcheck']

Posts:

Registered:

» » » » » » » » Stop buffering once buffer is full

Posted: on sunday

unfortunately no it uses the internal stream functions, ill see if there is an answer to this. the byte stream implementation of pseudo stream only works on flv but it would give greater control of how the file is downloaded.

Posts:

Registered:

» flowplayer, Internet explorer and android tablets issue

Posted: on sunday

Hi, i've tested your player on an android tablet running gingerbread 2.3.3 and works fine.

Posts:

Registered:

» » » » » » Stop buffering once buffer is full

Posted: on sunday

Possibly a flash bug, when paused it should stop at 60 seconds which is evident on rtmp connections. There isn't any way to control it. if the stream is closed it will have to start the buffer again.

Posts:

Registered:

» » » » Stop buffering once buffer is full

Posted: on sunday

the flash player when paused will buffer up to 60 seconds, there is nothing that can change that feature out of the box unless you use the byte appending feature instead which you can control the downloading of the file.

Posts:

Registered:

» » » » setBitrate method of bwcheck buggy and can"t use bitrateseelct with bwcheck

Posted: on sunday

Also try using the bitrateselect plugin instead

http://flowplayer.org/plugins/javascript/brselect.html

Posts:

Registered:

» » » setBitrate method of bwcheck buggy and can"t use bitrateseelct with bwcheck

Posted: on sunday

Site doesn't load. As explained there is no bugs if you are using progressive download video, it will reset the stream back to the start you need either rtmp, adobe http streaming or pseudostreaming for it to switch the stream correctly. For pseudostreaming it will reset the file first then seek to the current position, it works but still slower than rtmp and adobe http streaming,

Posts:

Registered:

» » Documentation error: Plugin- Adobe HTTP Streaming

Posted: on sunday

closing this for now as the docs are updated.

Posts:

Registered:

» Script for free Version

Posted: on sunday

There is no problems using the free license on your page it just displays the flowplayer logo that is all.

Posts:

Registered:

» » » Nokia Symbian^3 Flash Lite 4 and Flowplayer

Posted: on sunday

I don't have a symbian device to test, are you able to provide a screenshot, from the looks of it there is a full flash 10.1 player for symbian now. It suggests flash lite 4 supports as3 which is what the player is built on but perhaps it's only compatible up to 10.0 which may be a problem with the newer version as it requires 10.1 :)

http://www.developer.nokia.com/Community/Wiki/How_to_package_Flash_content_in_a_Widget
http://forums.adobe.com/message/2307327

What happens when you go here

http://get.adobe.com/flashplayer/

Posts:

Registered:

» » Stop buffering once buffer is full

Posted: on saturday

Correction it looks like the max buffer length is set on the client, from the flash docs

"For a single pause, the NetStream.bufferLength property has a limit of either 60 seconds or twice the value of NetStream.bufferTime, whichever value is higher. For example, if bufferTime is 20 seconds, Flash Player buffers until NetStream.bufferLength is the higher value of either 20*2 (40), or 60, so in this case it buffers until bufferLength is 60. If bufferTime is 40 seconds, Flash Player buffers until bufferLength is the higher value of 40*2 (80), or 60, so in this case it buffers until bufferLength is 80 seconds."

this is whats happening, it's 60 seconds buffer if the buffertime x 2 is less than 60 seconds.

Posts:

Registered:

» Stop buffering once buffer is full

Posted: on saturday

This is also a concern other people have been having. the player is in paused mode which it will buffer to 60 seconds on flash media server and cannot be controlled on the client side. On http the default system has a smart paused mode where it will resume the buffer when resuming instead of clearing it, there is no feature to control this. The only other way is to use the new byte appending feature which can perhaps be used to stop downloading the video once the buffer has been reached but it only works with flv files for now.