I have used a flvplayback component to load 2 flvs into, and I use activeVideoPlayerIndex and visibleVideoPlayerIndex to switch between the videos. Both videos have closed captioning via their own flvPlaybackCaptioning component and separate XML files.
My issue is that when I switch to the second video (index 1), the proper closed captioning appears but I am getting double captioning text because the closed captioning cue points from the first video still exist.
//Setting up the 2 closed captioning components and loading second video.
flvcc_en.source = "cc_en.xml";
flvcc_en.videoPlayerIndex = 0;
flvcc_fr.source = "cc_fr.xml";
flvcc_fr.videoPlayerIndex = 1;
//Load French video
flvPlayback.activeVideoPlayerIndex = 1;
flvPlayback.source = "french.flv";
flvPlayback.activeVideoPlayerIndex = 0;
Then, to switch the videos I just do the following:
flvPlayback.pause();
//Choose proper video player
if(isFrenchAudio){
flvPlayback.activeVideoPlayerIndex = flvPlayback.visibleVideoPlayerIndex = 1;
flvcc = flvcc_fr;
}else{
flvPlayback.activeVideoPlayerIndex = flvPlayback.visibleVideoPlayerIndex = 0;
flvcc = flvcc_en;
}
flvcc.showCaptions = false;
flvcc.showCaptions = true;
I added a CUE_POINT event listener and just trace every cue point even I see, when the first video is playing I see this:
fl.video.caption.2.0.1
When second video is playing I see this:
fl.video.caption.2.0.1
fl.video.caption.2.0.48
So the closed captioning cue point is still active from the fist video, please help!