Flash application video is getting blank in chrome browser
Once updated chrome version from 59 to 60.0.3112.101 (Official Build) (64-bit), flash web application is not listing camera and microphone driver list. It's displaying empty list. To solve this issue I have stored Camera.names in an array and named such that Camera 1, Camera 2 etc but while starting the video it's getting blank screen .
Below is the sample code which I have used for
private var arrVideoDriver:ArrayCollection = new ArrayCollection();
videodriver=Camera.names;
for (var i=0; i < videodriver.length; i++){
arrVideoDriver.addItem("Camera " + (i+1));
}
camSelect.dataProvider = arrVideoDriver;
}
var camArray:Array = new Array();
camArray = Camera.names;
var i:int;
if(videoDeviceString == ""){
Alert.show("Please select camera");
return;
}
for (i=0; i < camArray.length; i++){
if (camSelect.selectedIndex == i) {
break;
}
}
video=new Video();
video.width=vidDisplay.width;
video.height=vidDisplay.height;
camTemp=Camera.getCamera(i.toString());
video.attachCamera(camTemp);
video.smoothing=true;
vidDisplay.addChild(video);
}
