socialxray wrote: 
> 
> > 
Code:
--------------------
  >   > 
  > flc flc * <MAC goes here>
  >     # FT:{START=--skip=%t}U:{END=--until=%v}
  >     [flac] -dcs $START$ $END$ -- $FILE$  |  [sox] -q -t wav - -t flac -e 
signed -C 0 -b 24 - rate -v -b 98 -L -a 96000
  > 
  > mp3 flc * <MAC goes here>
  >     [lame] --mp3input --decode -t --silent $FILE$ - |  [sox] -q -t wav - -t 
flac -e signed -C 0 -b 24 - rate -v -b 98 -L -a 96000
  > 
  > aac flc * <MAC goes here>
  >     # IF
  >     [faad] -q -w -f 2 $FILE$  |  [sox] -q -t wav - -t flac -e signed -C 0 
-b 24 - rate -v -b 98 -L -a 96000
  > 
--------------------
> > 
> 
> Main problem is the conversion rules have problems and so are breaking
> the conversion and so it fails.
> 
> If you are going modify convert.conf rules - you really need to study
> the options.
> 
> In the MP3 flc.  Lame by deaul decode to WAV. The "-t" option tells
> lame to output PCM and not WAV.  In the sox part receiving - the first
> "-t wav" tell sox to expect WAV format.  So immediatley there is a
> mismatch.
> 
> After fixing that then sox complained that "-e signed" is not a
> supported encode option.
> 
> So a MP3 FLC command that should work would be 
> > 
Code:
--------------------
  >   > 
  >     [lame] --mp3input --decode --silent $FILE$ - |  [sox] -q -t wav - -t 
flac -C 0 -b 24 - rate -v -b 98 -L -a 96000
  > 
--------------------
> > 
> 
> sox can process MP3 directly so there is no need for lame so in theory
> the following could work but I think you may lose the jump to offset
> capability
> > 
Code:
--------------------
  >   > 
  > [sox] -q -t mp3 - -t flac -C 0 -b 24 - rate -v -b 98 -L -a 96000
  > 
--------------------
> > 
> 
> However - depending on what you play (e.g. files, podcasts, stream,
> spotty, etc.) I think there maybe potential problems with your choice
> of "# FT" and "# IF" and missing "#" options. 
> 
> I think you have the same issues with the faad lines . The "-f 2" (raw
> PCM) should be "-f 1" (WAV) and there should be no "-e signed"


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

_______________________________________________
ripping mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/ripping

Reply via email to