There isn't a specific plugin for this -- you have to use your own JavaScript with Popcorn to control the video, for example, pausing when a button is clicked:
var pop = Popcorn("#video").play();
function pauseButtonClick(){
pop.pause();
}
Putting together multiple video clips requires more of your own JavaScript. You could create two Popcorn objects, and have the second video appear when you detect the first clip is over. For example:
// create first clip and start playing
var pop = Popcorn("#clip1").play();
// create second clip and hide it
var pop2 = Popcorn("#clip2");
document.getElementById("clip2").style.display="none";
// start checking every 0.25 seconds for the right time to switch
clip_1_to_2_after_10_seconds();
// how that function works, below:
function clip_1_to_2_after_10_seconds(){
if(pop.currentTime() >= 10){
// first clip is over, hide it and start up the second clip
pop.pause();
document.getElementById("clip1").style.display="none";
document.getElementById("clip2").style.display="block";
pop2.play();
}
else{
// try this method again in 0.25 seconds
setTimeout(clip_1_to_2_after_10_seconds,250);
}
}