-
Notifications
You must be signed in to change notification settings - Fork 7.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blackberry (Z10) doesn't support changing playback speed #3689
Comments
ok it's mostly a browser problem
|
Opera 37 doesn't show the speed setting, so I guess it's blocked, because Opera is known to not support it, yet
|
Blackberry could have a similar issue as Andorid where the playbackRate getter/setter is implemented on video elements but doesn't actually have an effect. #3180 |
I have a feeling that it's exactly the same issue as in Chrome. Unfortunately, not much we can do about it. |
of course you can do something: I'm not sure if it really is the same bug, since it somehow destroys decoding until a reboot (that wasn't the case on android was it? there it just didn't have any effect, here it has a very negative one, that's why the speed button definitely shouldn't be shown ;) |
If we can figure out a way to feature detect this to disable the feature, I'd be happy to put it in. I'd prefer not to have anything using usreagent switching. |
yes a feature detect is always the preferred way the official way of detecting would be to look up if the feature is offered by the browser, which it is, even though it's not implemented if you find a better solution in the future or the bug gets fixed you can still change the code |
just to proof that currently the user agent is checked: you only need to add a const IS_BLACKBERRY here and use it in the if above |
I just tested my website including this player on a Blackberry device and I found out, that the default blackberry browser doesn't seem to support changing the playback rate/speed
if you change it, first the audio will stop, then the video entirely and it just keeps the loading circle spinning
reloading the video doesn't work anymore until you reboot the device
(reloading the site or the browser doesn't work)
The player should by default not show the speed setting to the user IMO
According to the about page the default browser is based on webkit, webcore and javascriptcore
The device is a blackberry Z10 on software version 10.3.2.2836, which is the current version
The user agent is:
And yes it's not a typo, that the version listed in the useragent is different from the version the about page of the phone shows
I double checked to make sure
one says 7 the other 3
probably caused by Blackberry somehow
The text was updated successfully, but these errors were encountered: