2

I have application which simply is an animation (some circles moving around).

I want to know how can I save this animation as video like MP4?

OR is it possible to record(capture) things which happen inside a node and save it as video format?

Eeliya
  • 1,534
  • 5
  • 23
  • 37
  • You can also use this tool http://www.vibot.site/ I think there is also an API support. – tokhi May 23 '18 at 10:32

1 Answers1

1

There is no build-in functionality for that.

  1. If you just want to record how your application run there are several tools for that. E.g Fraps

  2. If you want to create your own video programmatically you need to use some 3rd party software (or write one), which allows to encode set of images to video. E.g. Xuggle. Here you can find how to take screenshots in JavaFX: Taking a screenshot of a scene or a portion of a scene in JavaFx 2.2

Community
  • 1
  • 1
Sergey Grinev
  • 34,078
  • 10
  • 128
  • 141
  • So, imagine I want to create a video editing application, I can not save my result video? – Eeliya Aug 29 '13 at 16:07
  • Of course you can, it's software -- everything is possible, just you have to try harder for some tasks. Updated an answer. – Sergey Grinev Aug 30 '13 at 07:54