Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.