mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-19 11:05:35 +01:00
14 lines
233 B
JavaScript
14 lines
233 B
JavaScript
|
|
audio = new AudioJack("freej", 1024, 48000);
|
|
|
|
animation_file = "/home/rgareus/Desktop/TELESCOPERA_MPEG2.mpg";
|
|
|
|
anim = new MovieLayer(animation_file);
|
|
anim.set_fps(25);
|
|
add_layer(anim);
|
|
|
|
audio.set_layer(anim);
|
|
|
|
anim.activate(true);
|
|
|