Video is not playing on the new Chrome update 71

Nitzan Sheanr

New Member
We are not sure if it's an Android new OS update or Chrome 71 update, but our flashphoner player wont play video anymore.
The player loads but we get a grey screen and no video is playing.

Any idea's?

tnx
 

Max

Administrator
Staff member
Hello
The issues is caused by new security rules in Chrome introduced against of AudioContext object.
There are two fixes to prevent AudioContext creation:
Quick fix
1. Edit flashphoner.js
2. Find rows
Code:
if (stream.getAudioTracks().length > 0 && adapter.browserDetails.browser == "chrome") {
microphoneGain = createGainNode(stream);
}
3. Comment out creation of Gain Node
Code:
//microphoneGain = createGainNode(stream);
4. Make sure your updated js file is not cached in Chrome browser and test.
Normal fix
Update to latest Web SDK 0.5.28.2753.55
https://docs.flashphoner.com/display/WCS5EN/Web+SDK+release+notes
 
Top