timescale change in MovieMaker to enable 30fps output (bug #988)

This commit is contained in:
benfry
2008-11-04 21:46:18 +00:00
parent 308eeb8ff6
commit aeeca4517c
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -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
+2 -2
View File
@@ -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)
+3 -1
View File
@@ -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;