annotate audio/oggenc.m @ 61:eff6bddf82e3 tip

Finally implemented perceptual brightness thing.
author samer
date Sun, 11 Oct 2015 10:20:42 +0100
parents 62e31e7980e6
children
rev   line source
samer@43 1 % oggenc - sink which writes audio signal to OGG file using oggenc
samer@0 2 function s=oggenc(ch,rate,file,varargin)
samer@37 3 opts=options('quality',5,varargin{:});
samer@0 4 s=pipesink(ch,rate,sprintf('oggenc -q %d -o "%s" -',opts.quality,file));