/usr/share/sitplus/sp/voice_collage.sp is in sitplus-data 1.0.3-5.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | type playingwithvoice
name _"Playing with voice"
# Create pvoice component
import lib/pvoice.sps
create playingwithvoice pvoice
# Send to main thread
create send_main_async to_main
connect pvoice out to_main in
# Collage
import lib/motion_collage.sps
create motion_collage motion_collage
connect to_main out motion_collage motion
begin_gui_layout
layout_begin hbox
layout_begin vbox _"Voice Input"
component pvoice
layout_end
layout_begin vbox _"Graphics"
component motion_collage
layout_end
layout_end
end_gui_layout
|