diff --git a/java/libraries/video/examples/Movie/Frames/Frames.pde b/java/libraries/video/examples/Movie/Frames/Frames.pde index 6615216dc..04fbf81fb 100644 --- a/java/libraries/video/examples/Movie/Frames/Frames.pde +++ b/java/libraries/video/examples/Movie/Frames/Frames.pde @@ -14,7 +14,7 @@ int newFrame = 0; int movFrameRate = 30; void setup() { - size(640, 360, P2D); + size(640, 360); background(0); // Load and set the video to play. Setting the video // in play mode is needed so at least one frame is read diff --git a/java/libraries/video/examples/Movie/Loop/Loop.pde b/java/libraries/video/examples/Movie/Loop/Loop.pde index 468034a30..05383b620 100644 --- a/java/libraries/video/examples/Movie/Loop/Loop.pde +++ b/java/libraries/video/examples/Movie/Loop/Loop.pde @@ -1,7 +1,6 @@ /** * Loop. * - * Move the cursor across the screen to draw. * Shows how to load and play a QuickTime movie file. * */ diff --git a/java/libraries/video/examples/Movie/Pixelate/Pixelate.pde b/java/libraries/video/examples/Movie/Pixelate/Pixelate.pde index 60f534053..1ac791581 100644 --- a/java/libraries/video/examples/Movie/Pixelate/Pixelate.pde +++ b/java/libraries/video/examples/Movie/Pixelate/Pixelate.pde @@ -46,6 +46,6 @@ void draw() { rect(i*blockSize, j*blockSize, blockSize, blockSize); } } - //image(mov, 0, 0); + } diff --git a/java/libraries/video/examples/Movie/Reverse/Reverse.pde b/java/libraries/video/examples/Movie/Reverse/Reverse.pde index a4d5bf3df..817368aa8 100644 --- a/java/libraries/video/examples/Movie/Reverse/Reverse.pde +++ b/java/libraries/video/examples/Movie/Reverse/Reverse.pde @@ -1,14 +1,11 @@ /** * Reverse playback example. * - * The Movie.speed() method allows to - * change the playback speed. Use negative - * values for backwards playback. Note that - * not all video formats support backwards - * playback. This depends on the underlying - * gstreamer plugins used by gsvideo. For - * example, the theora codec does support - * backward playback, but not so the H264 + * The Movie.speed() method allows to change the playback speed. + * Use negative values for backwards playback. Note that not all + * video formats support backwards playback. This depends on the + * underlying gstreamer plugins used by gsvideo. For example, the + * theora codec does support backward playback, but not so the H264 * codec, at least in its current version. * */