25-08-26 - Today I Learned...
VVVV
The Splicer
slices out spreads into individual slices.
The Flatten
node allows to convert the structure of Spread<Spread<DataType>>
into a Spread<DataType>
. This allows us then to use the collection in a simple ForEach
loop.
To debug VVVV patches via Visual Studio we can open the program with right click on the VVVV logo - settings and add -debug at target.
Then open new visual studio project - Debug -> attach to process - select VVVV.
We then can use Throw
node to throw an error and Break
to create breakpoints inside Visual Studio.
Detach All in Visual Studio gives you control of the patch.
FFmpeg
To convert .m4a into .wav
ffmpeg -i input.m4a output.wav