Created
July 31, 2012 16:19
-
-
Save jerodfritz/3218214 to your computer and use it in GitHub Desktop.
gifmaker invocation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var timeStamp = new Date().getTime(); | |
var filename = 'MoTracker_' + timeStamp + '.mov'; | |
var movTargetFile = moTrackerImagesFolderExports.nativePath.substring(16) + filename; | |
var framesPerSecond = 4; | |
var movSize = 320; | |
Ti.API.info(JSON.stringify(moTrackImagesArray)); | |
Ti.API.info(movTargetFile); | |
var movOutput = gifmaker.createMOV(moTrackImagesArray, movTargetFile, framesPerSecond, movSize); | |
Ti.API.info(movOutput); //Output if true is successful, false if there was a failure | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment