A scripting language for videos

6

1

I'm searching for a way to to create a video sequence with something like a scripting language.

The goal is to automate the process of generating a script which describes something like:

place video x at 0,0
place picture y at 4,4
move y to 0,0 in 4sec
...

In the next step I would like to render the video with such a script. Is the any system for such a task?

TheHelix

Posted 2012-04-06T13:15:26.840

Reputation: 83

Question was closed 2020-01-08T12:48:03.227

Answers

2

I think you're looking for something like SMIL, though the last time I looked at that it was widely unsupported and buggy.

You might find GStreamer in combination with a simple, but general purpose like programming language like e.g. Python suitable for your needs.

phw

Posted 2012-04-06T13:15:26.840

Reputation: 510

0

The following software should be able to place videos and add objects by timings:

  1. Manim ("Animation engine for explanatory math videos"): https://github.com/3b1b/manim

    There is also a Javascript port: https://github.com/JazonJiao/Manim.js

  2. Processing: https://processing.org/tutorials/video/

    There is also a Javascript port: http://processingjs.org/

  3. Cinder https://libcinder.org/docs/ (not tested)

Kai Noack

Posted 2012-04-06T13:15:26.840

Reputation: 1 559