Hi all,
So I have several transcoding commands working fine to manually convert a FLAC file to an Apple Lossless file. For example:
ffmpeg -i test.flac -acodec alac test.m4a
So I assume all I have to do to get the above working as a transcoder in Subsonic is to swap out a few things (escape file input name and output to stdout):
ffmpeg -i %s -acodec alac -
However, when I do this, the subsonic log reports the error:
"Unable to find a suitable output format for 'pipe:'"
I've tried to beef up the command by reducing the logging and specifying the output format (command: ffmpeg -i %s -f mp4 -acodec alac - ) and then the error switched to:
"Could not write header for output file #0 (incorrect codec parameters ?)"
Does anyone happen to know what I'm doing wrong here? Based on the transcoding commands to convert stuff to mp3, it seems like this should be pretty simple?