diff --git a/core/todo.txt b/core/todo.txt index 1a09aff75..6e179423b 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -421,7 +421,7 @@ _ add better support for attributes buried in styles (support ai9/10/11) _ test what happens when transparency is used with gradient fill _ look into transformation issues... guessing this is probably wrong _ this may be what's throwing off the radial radius transform -_ implement A and a (arcs) +_ implement A and a (elliptical arcs) _ http://dev.processing.org/bugs/show_bug.cgi?id=996 _ check for any other pieces of missing path api _ multiple sets of coordinates after a command not supported diff --git a/todo.txt b/todo.txt index 89358b30d..8b96f2eb4 100644 --- a/todo.txt +++ b/todo.txt @@ -4,6 +4,8 @@ X http://dev.processing.org/bugs/show_bug.cgi?id=987 X when saving a sketch over itself with "Save As", just do "Save" instead X fix loadShape() transformation parsing and empty paths (thanks ricardmp) X http://dev.processing.org/bugs/show_bug.cgi?id=982 +X moviemaker can't make exact 30fps output +X http://dev.processing.org/bugs/show_bug.cgi?id=988 _ move library examples to the examples menu _ do this once the library documentation has been fixed up @@ -14,8 +16,6 @@ _ http://dev.processing.org/bugs/show_bug.cgi?id=886 waiting for input -_ moviemaker can't make exact 30fps output -_ http://dev.processing.org/bugs/show_bug.cgi?id=988 _ launch4j "An error occurred while starting the application" _ http://dev.processing.org/bugs/show_bug.cgi?id=986 _ tabs menu not working on osx ppc (can't confirm) diff --git a/video/src/processing/video/MovieMaker.java b/video/src/processing/video/MovieMaker.java index 93dc90e82..becfdfe6b 100644 --- a/video/src/processing/video/MovieMaker.java +++ b/video/src/processing/video/MovieMaker.java @@ -127,7 +127,9 @@ public class MovieMaker { private boolean readyForFrames; - private int TIME_SCALE = 1000; + // Changed from 1000 to 600 in release 0154 to enable exact 30 fps output. + // http://dev.processing.org/bugs/show_bug.cgi?id=988 + private int TIME_SCALE = 600; // QT Stuff private VideoMedia videoMedia;