hi whimpyjones,
can you tell us how do you transcode from subsonic to iSub app ?
I have the same configuration, Subsonic 4.6 and iSub 3.0.4 (IOS 5.0.1).
My music library contains only AAC files and I try to transcode with theses 3 possibilities with the same issue I explained yesterday (Song stops befeore the end (~5-20 seconds) an go to the next song) :
I use a single SHELL script to transcode for all possible players, it's my 3 shell commands to transcode to iSub :
m4a > mp3 : faad -q -f 2 -w "${INPUT}" | lame -S -h -r --vbr-new -V ${QUALITY} --resample 44.1 --ta "${ARTIST}" --tl "${ALBUM}" --tt "${TITLE}" - -
m4a > m4a : faad -q -f 2 -w "${INPUT}" | faac -P -X --mpeg-vers 4 -q ${AAC_QUALITY} -o - -
and my last possibility consist in using CAT command to transcode without compression : cat "${INPUT}"