"http://ia700305.us.archive.org/18/items/CopyingIsNotTheft/CINT_Nik_H264_720.ogv",
"video/ogg"),
new Video(
"http://ia700305.us.archive.org/18/items/CopyingIsNotTheft/CINT_Nik_H264_720_512kb.mp4",
"video/mp4"));
add(new Html5Player("video", Model.ofList(videos)));
add(new Code(
"video-code",
Model.of("List<Html5Player.IVideo> videos = Lists.<Html5Player.IVideo>newArrayList(\n"
+ "\t\tnew Video(\"video.ogv\", \"video/ogg\"),\n"
+ "\t\tnew Video(\"video.mp4\", \"video/mp4\")\n"
+ ");\n"
+ "add(new Html5Player(\"video\", Model.ofList(videos)));")));
add(new Html5Player("video-custom", Model.ofList(videos),
new Html5VideoConfig().showProgressBar(false)
.autoHideControlBar(false)).setWidth(680)
.setHeight(360));
add(new Code(
"video-custom-code",