New reference.zip for 2b7

This commit is contained in:
Casey Reas
2012-12-07 16:56:26 +00:00
parent 3090c19859
commit 6d29346cb9
4 changed files with 7 additions and 11 deletions
@@ -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
@@ -1,7 +1,6 @@
/**
* Loop.
*
* Move the cursor across the screen to draw.
* Shows how to load and play a QuickTime movie file.
*
*/
@@ -46,6 +46,6 @@ void draw() {
rect(i*blockSize, j*blockSize, blockSize, blockSize);
}
}
//image(mov, 0, 0);
}
@@ -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.
*
*/