On Windows the wavin2cmd program defaults to outputs 44.1kHz/16 stream
so you are trying to encode a 44.1kHz/16 PCM stream and telling Flac
that is 96kHz/24 - so you will get noise on playback.

You need to tell wavin2cmd to use the sample rates & size you want which
must be exactly matched by the flac encoding.  Don't know what will
happen if source does not support requested format.

Code:
--------------------
    
  [wavin2cmd] -s 96000 -b 24 -o $FILE$ | [flac] -cs --totally-silent 
--compression-level-0 --endian=little --sign=signed --channels=2 
--sample-rate=96000 --bps=24 - 
  
--------------------


------------------------------------------------------------------------
bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=102551

_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to