A strange mish mash of audio standard are being used.

The Podcast references an ASX playlist which contains an mpeg4 file
marked "video/mp4"

LMS negotiates allfo the above and gets to the actual file:
http://sverigesradio.se/topsy/ljudfil/4005520.m4a

This file will not play on an Sb3 when transcoded by faad and also not
natively decoded on a Touch.  The file  IIRC there is a mpeg4 file
format which Touch and faad cannot play when it is streamed as a podcats
- I think the "header" is at the end of the file.

If you change the mp4 transcoder to ffmpeg and the file can be played if
mpeg4-/aac "native" is disabled.

The custom-convert.conf file using ffmpeg for a Linux system will look
like below but you will lose ffw/rew

Code:
--------------------
    mp4 mp3 * *
  # FRB:{BITRATE=-B %B}T:{START=-ss %s}
  [ffmpeg] -loglevel quiet  -f mp4 -i $FILE$ -f wav - | [lame] --silent -q 
$QUALITY$ $BITRATE$ - -
  
  mp4 pcm * *
  # FRB:{BITRATE=-B %B}T:{START=-ss %s}
  [ffmpeg] -loglevel quiet  -f mp4 -i $FILE$ -f u16le -
  
  mp4 flc * *
  # FRB:{BITRATE=-B %B}T:{START=-ss %s}
  [ffmpeg] -loglevel quiet -f mp4 $START$ -i $FILE$ -f flac -
  
--------------------


------------------------------------------------------------------------
bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=95610

_______________________________________________
discuss mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/discuss

Reply via email to