I'm not an expert of this, but I tried a few things and it seems to explain the problems...
Setting the quality worked. However, quality cannot be -1 or 1.4: you'll get an error clearly explaining that it should be in [-0.2..1]. # %vorbis(samplerate=44100,channels=1,quality=0.5) ;; - : format(audio=1,video=0,midi=0) = %ogg(%vorbis(quality=0.50,channels=1,samplerate=44100)) Now, if you want to set the bitrate, you need to use %vorbis.cbr (constant bitrate; note that there are also vbr and abr variants, iirc): # %vorbis.cbr(samplerate=44100,channels=1,bitrate=64) ;; - : format(audio=1,video=0,midi=0) = %ogg(%vorbis.cbr(bitrate=64,channels=1,samplerate=44100)) # %vorbis(samplerate=44100,channels=1,bitrate=64) ;; Error in encoding format at line 1, char 45-46: unknown parameter name or invalid parameter value. HTH -- David ------------------------------------------------------------------------------ For Developers, A Lot Can Happen In A Second. Boundary is the first to Know...and Tell You. Monitor Your Applications in Ultra-Fine Resolution. Try it FREE! http://p.sf.net/sfu/Boundary-d2dvs2 _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
