mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
timescale change in MovieMaker to enable 30fps output (bug #988)
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user