-
-
Notifications
You must be signed in to change notification settings - Fork 297
Can't toggle mute/sound #56
Comments
Last week I started some work to do exactly that, but it's not finished yet and I don't remember how well it worked: https://github.com/bfred-it/iphone-inline-video/tree/mute-toggle-test For now you'll just have to have to separate |
At first thanks for your immediate reply! this was really helpfull! For your workaround you mention with two Also, actually do you have an estimation on that branch completion? |
Something like this: //audioVideo.load() // not necessary, but may make the jump faster
mutedVideo.onclick = function () {
audioVideo.currentTime = mutedVideo.currentTime;
mutedVideo.pause();
audioVideo.play();
} This is probably going to take a bit to actually start playing, but maybe you can jumpstart that with the first line. Not sure about when I can look into that, it's unlikely to be done before the end of next week. |
Any progress on this? I noticed you have an active branch for the mute-toggle feature. |
+1 would love to see this feature added |
i think playing two videos simultaneously is not possible depending on the iOS version. I have also tried it and it worked on iOS9 but not on iOS10 Playing multiple videos side by side iOS #92 |
I think i have found a possible work around on this problem. you can use this code
|
Hello, i use your solution to autoplay inline a video with the muted option set, but i can't figure out how i can play video sound afterwards.
i try to set video.muted = true/false on a button click but nothing actually happens. How can i trigger video button from an external click?
The text was updated successfully, but these errors were encountered: