1
I've got a speex audio file (snd.spx
), and I've found foobar2000 is the only software I can easily convert it to the more-widely-usable format FLAC (snd.flac
) so I can edit it before encoding again to a lossy format. The other software I have just seems to complain about it (mencoder, ffmpeg, both of which complain they're not compiled to handle speex :( )
Using the GUI is great but clicking manually many times as the files are generated is combersome, so I want to set up a small script to do it for me
Here is where I run into problems, I can't find documentation about how to do this through the command line, calling foobar2000 /?
brings up the foobar2000 GUI and gives me some non-helpful information
Available switches:
/add <list-of-files> - appends the specified files to the current playlist instead of replacing the playlist content and playing them immediately
/immediate - bypasses the "please wait" dialog when adding files
/play, /pause, /playpause, /prev, /next, /rand, /stop - playback controls
/exit - exits foobar2000
/show, /hide - shows or hides the main foobar2000 window
/config - opens the Preferences dialog
/command:<menu command> - invokes the specified main menu command
/playlist_command:<context menu command> - invokes the specified context menu command on current playlist selection
/playing_command:<context menu command> - invokes the specified context menu command on currently played track
/context_command:<context menu command> <files> - invokes the specified context menu command on the specified files
None of these options seem to give me access to the file conversion abilies.
Another speex-to-FLAC solution using the command line would also be acceptable if it is portable
(and doesn't require me to compile binaries, I don't have the right environment available to me)