- More Effects!
- Blur Effect
- Yes I know, I node editor.
- wipes through distortion effects
- extend feedback effects
- Text-source
- image-source
- SVG-source
Socket source (remote)mixer and controller generator (kind of works)
MultipleVideoSource
The MultiVideoSource allows for playback of video files in the Mixer project.
It is very similar to the regular video source, however, it used multiple references to the video file.
In doing so it allows for very fast jumping through the video even when it is loading from a remote server.
The main features are random jumping and a cue list, allowing for smart referencing in video files.
layout and composition abstraction
Describe compositions as below. Serves as input for trackers/ sequencers
var my_renderer = {
my_source_1 = {
type = VideoSource,
src = "somefile.mp4"
},
my_source_2 = {
type = GifSource,
src = "somefile.gif"
},
my_mixer_1 = {
type = Mixer,
src1 = my_source_1,
src1 = my_source_2,
pod: 0.5,
mixmode: 1,
blendmode: 1
}
}