doubleugk wrote: 
> I've created a custom-convert.conf and added the following. I'm now sure
> that this process is definetly used for transcoding purposes.
> 
> flc mp3 * *
>       # F:{PATH=%f}
>       [ffmpeg] -i $PATH$ -ab 192k -map_metadata 2>
> "C:/Users/Admin/Music/lms_ffmpeg_out.txt" output.mp3
> 
That's not going to work, as indicated by this error:

Code:
--------------------
    
  At least one output file must be specified
  
--------------------

since the output spec can't be after the stderr redirection.
Instead, output needs to go to stdout.

Probably something like

Code:
--------------------
    
  [ffmpeg] -i $FILE$ -ab $BITRATE$ -f mp3 -
  
--------------------



[ extGUI4LMS - an alternative web interface: 'forum'
(http://forums.slimdevices.com/showthread.php?98186-Announce-Alternative-Web-Interface-(beta))
/ 'homepage' (http://code.google.com/p/extgui4lms/) ]
------------------------------------------------------------------------
Roland0's Profile: http://forums.slimdevices.com/member.php?userid=56808
View this thread: http://forums.slimdevices.com/showthread.php?t=101458

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

Reply via email to