Skip to content

Instantly share code, notes, and snippets.

<CsoundSynthesizer>
;<CsOptions>
;</CsOptions>
<CsInstruments>
sr = 44100
ksmps = 1
;nchnls = 2
0dbfs = 1
gir ftgen 1, 0, 8192, 10, 1
@topher6345
topher6345 / vj.sh
Last active December 15, 2015 09:38
A bash shell script using ffmpeg to encode all the .mov files in the current directory to Motion-Jpeg, to use in MaxMSP/Jitter.
#!/bin/bash
# Script using ffmpeg to convert all the .mov files in the current
# directory to "Motion Jpeg".mov codec
# Remember to $chmod
for ff in *.mov;
do
filename=$(basename $ff)
extension=${filename##*.}