Copy link to clipboard
Copied
Along with new 2020 Adobe Animate update video export is TOTALLY BROKEN NOW 😞
Unfortunatelly I have to downgrade your software to previous version where export to video with nested movieclips works as expected.
IMO this is critical issue and makes your latest version totally USELESS.
Where I can submit this as official error/issue to your engineers?
Hi Arek, Animate product team is aware of this issue and are working on getting the “After time elapsed” feature back to Animate.
In the interim, “exportVideo” JSAPI can be used to stop exporting video after a particular time is elapsed. The following steps can be followed to achieve a scenario of exporting video for 15 seconds.
1. Open a new 'JSFL Script File' document in Animate 2020 and paste the following script to it :
fl.getDocumentDOM().exportVideo("file:///users/shenoyk/Documents/JO
...
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Hi Arek, Animate product team is aware of this issue and are working on getting the “After time elapsed” feature back to Animate.
In the interim, “exportVideo” JSAPI can be used to stop exporting video after a particular time is elapsed. The following steps can be followed to achieve a scenario of exporting video for 15 seconds.
1. Open a new 'JSFL Script File' document in Animate 2020 and paste the following script to it :
fl.getDocumentDOM().exportVideo("file:///users/shenoyk/Documents/JOSEPH_1080x1920_Coat_Edit.mov",true,false,false,15000)
2. Modify the file path to the desired file path where MOV should be generated. You can also change other parameters as per your requirement.
3. Open the FLA document in the new Animate tab next to JSFL document.
4. Switch back to JSFL document and click on Run Script (Play button on top right corner).
To know more about JSAPI, please go through the description shared below. Do let me know if any further information is required.
Usage
exportVideo( fileURI , convertInAdobeMediaEncoder , transparent , stopAtFrame , stopAtFrameOrTime )
Parameters
Thanks,
Sukhesh - Adobe Animate
Copy link to clipboard
Copied
I hope this feature gets back soon. Animate is so great because you can use ActionScript to move things around. But exporting those script based animations work ONLY with the "After time elapsed" feature from Animate. Its almost a deal breaker rendering this product inusable for 2D animating with scripting.
Copy link to clipboard
Copied
Dear Sukhesh,
I'm working on an Animate automation workflow. Exporting video with
produces 5 seconds of video showing only the first frame. Whereas
does the job outputting 8 seconds of animation. Is this a bug? Would be nice to not have to know the length of the animation in seconds.
Cheers!
Funtom