Skip to content

Commit

Permalink
Improve texts in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
hamoid committed Feb 28, 2018
1 parent 5086c79 commit 7e3fd32
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/basic/basic.pde
Expand Up @@ -9,7 +9,7 @@ VideoExport videoExport;
// movie might be corrupted. If that happens to you, use
// videoExport.endMovie() like you see in this example.

// In some systems pressing ESC produces correct movies
// In other systems pressing ESC produces correct movies
// and .endMovie() is not necessary.

void setup() {
Expand Down
9 changes: 4 additions & 5 deletions examples/options/options.pde
Expand Up @@ -20,7 +20,7 @@ void setup() {
// with the current Processing frame rate. For instance you could have a
// Processing sketch that does heavy computation and renders only one frame
// every 5 seconds, but here you could still set that the resulting video should
// play at 30 frames per second.
// play at 10 frames per second. Default: 30 fps.
videoExport.setFrameRate(10);

// If your sketch already calls loadPixels(), you can tell videoExport to
Expand All @@ -32,12 +32,11 @@ void setup() {
// creating .txt files containing debug information.
videoExport.setDebugging(false);

// Use the next line once if you have change the
// location of the ffmpeg tool. This will make
// the library ask for it's location again.
// Use the next line once if you changed the location of the ffmpeg tool.
// This will make the library ask for it's location again.
//videoExport.forgetFfmpegPath();

// Start exporting after adjusting the settings.
// Now that we are done changing the settings we can start exporting a movie.
videoExport.startMovie();
}
void draw() {
Expand Down

0 comments on commit 7e3fd32

Please sign in to comment.