xxxxxxxxxx
23
var video;
// file from:'http://clips.vorwaerts-gmbh.de/big_buck_bunny.ogv';
// var videofile = 'data/big_buck_bunny.ogv';
var videofile = 'data/big_buck_bunny_2mb.mp4';
function setup() {
createCanvas(400, 400);
video = createVideo(videofile,onLoad);
}
function onLoad() { // This function is called when the video loads
// print("start auto play after load");
// video.play();
print("mouse click to start");
}
//function draw() {
//}
function mousePressed() {
video.loop(); // set the video to loop mode ( and start )
print("set loop mode");
}