annotate audio/bash_arg.m @ 61:eff6bddf82e3 tip

Finally implemented perceptual brightness thing.
author samer
date Sun, 11 Oct 2015 10:20:42 +0100
parents fb17caaf9153
children
rev   line source
samer@44 1 function arg=bash_arg(locator)
samer@44 2 arg=bash_esc(locator);
samer@50 3 if strncmp(arg,'http://',7)
samer@44 4 arg = ['<(curl -L ',arg,')']
samer@44 5 end
samer@44 6 end
samer@44 7