Thank you Rob. I was guessing the same, that it would export the animation in frames and in png format.
I tried the native/newVideo() and received the following error. This is while in the Corona SDK guide, it says that this method works on both iOS and Android. Am I doing something wrong?
error says: WARNING: Native video objects are not supported in the simulator. Please build for device.
I have used the same code found at https://docs.coronalabs.com/api/library/native/newVideo.html
local video = native.newVideo( display.contentCenterX, display.contentCenterY, 320, 480 ) local function videoListener( event ) print( "Event phase: " .. event.phase ) if event.errorCode then native.showAlert( "Error!", event.errorMessage, { "OK" } ) end end -- Load a video and jump to 0:30 video:load( "myVideo.m4v", system.DocumentsDirectory ) video:seek( 30 ) -- Add video event listener video:addEventListener( "video", videoListener ) -- Play video video:play() -- Stop the video and remove video:pause() video:removeSelf() video = nil