This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<CsoundSynthesizer> | |
;<CsOptions> | |
;</CsOptions> | |
<CsInstruments> | |
sr = 44100 | |
ksmps = 1 | |
;nchnls = 2 | |
0dbfs = 1 | |
gir ftgen 1, 0, 8192, 10, 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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##*.} |
NewerOlder