I have tried the following script:
m4a2mp3 %s %b
- Code: Select all
#!/bin/bash
song=$1
bitrate=$2
/var/subsonic/transcode/ffmpeg -i "$song" -f mp3 -ab $bitrate - 2>/dev/null
And I've also tried transcoding directly with ffmpeg using:
ffmpeg -i %s -f mp3
Not only does transcoding fail, "m4a > mp3" is not even an option in the player settings, but I do have it selected as default in the transcode settings. Any ideas?
Edit: It appears to still be invoking LAME even though I am specifying FFMPEG:
[2010-09-02 15:50:11,334] INFO PlaylistInputStream - admin listening to "The Odd Couple/01 Charity Case.m4a"
[2010-09-02 15:50:11,356] DEBUG TranscodeInputStream - Starting transcoder: [/var/subsonic/transcode/lame] [-S] [-h] [-b] [64] [/var/music/Gnarls Barkley/The
Odd Couple/01 Charity Case.m4a] [-]
