I really like subsonic, thank you for that!
But there's a thing about the transcoding of m4a (Apple Lossless) to mp3 on a Win 2003 Server. The default setting doesn't work for me, no sound...
The post http://forum.subsonic.org/forum/viewtop ... d431f85d04 led me here. I tried the m4a2mp3.sh-thing,
Ikyo wrote:Try using this in the transcode:
m4a2mp3 %s %b
Create a shell script called m4a2mp3 with:
- Code: Select all
#!/bin/bash
song=$1
bitrate=$2
/var/subsonic/transcode/ffmpeg -i "$song" -f mp3 -ab $bitrate - 2>/dev/null
This will actually transcode pretty much anything into a mp3 that ffmpeg can read. Make sure you have ffmpeg in the transcode folder or change the script to reference the installed location.
but am I right that this is a code for linux? Is there an equivalent for windows? am I supposed to write s.th. like a .cmd file or else?
The log says "Transcoding failed. Using original."
Then a song is loading (I can see the progressbar moving),
but no playback is or can be started.
Server is on Windows Server 2003 EE,
Client Mac OSX 10.5.6.
ffmpeg.exe is in transcoding directory.
I would be very happy if I could listen to my lossless-files using Subsonic as well!
Sorry for the newbie-questions...
Thank you in advance.