
Audio Data (eqData, peakData, waveformData)
Is it possible with the JS-API to get the eqData, peakData and the waveformData from an audio incoming signal over the flash player?
Is it possible to see this feature in a further version of jwplayer?
I ask, while the audio only option is better with a graphical output, except a poster image or an animation thats not sync to the audio. In flash 9+ it is possible and easy to implement this feature and bring it to the JV-Bridge.
If it possible and/or planed in a further version, i prefer to see it as:
jwplayer.setup({
whilePlaying : function(){
var leftPeak = this.peakData.left; // volume peak level
var rightPeak = this.peakData.right; // volume peak level
for(var i=0;i<256;i++){
var leftEQ = this.eqData.left[i]; // as array(256)
var rightEQ = this.eqData.right[i]; // as array(256)
}
for(var i=0;i<256;i++){
var leftPeak = this.waveformData.left[i]; // as array(256)
var rightPeak = this.waveformData.right[i]; // as array(256)
}
}
});
I hope this will come :-)