Sound Plays Every Other Time The Video Plays In Chrome
In chrome (7.0.517.44) I am using the
Solution 1:
I had a very similar problem with the <audio>
tag recently. Although I wasn't able to determine the actual cause, I was able to work around the issue by removing the old <audio>
element from the DOM and replacing it with an identical element immediately before each call to play().
Solution 2:
I continue to find inconsistencies with the behavior of these elements.
Have you tried waiting to run the .play() method until after you receive a canplay or canplaythrough event?
Might be worth a shot.
Post a Comment for "Sound Plays Every Other Time The Video Plays In Chrome"