Not sure why your old episodes actually played for you (they don't for
,e) but an explanation for default LMS.

The MIME type for the episode detailed in OP is audio/x-m4a which si
determined by LMS to be mp4.  The mp4 rule in convert.conf says it can
play these if they are files and not stream (i.e. http)

If you want to play mp4 stream (e.g. mp4 podcast) then faad cannot do it
but ffmpeg or avconv can.

For Linux ( not sure about Windows or OSX) the following can be used to
create a "custom-convert.conf" file in the same directory convert.conf
and it cna play mp4 hhtp podcasts.


Code:
--------------------
    
  mp4 mp3 * *
  # FRB:{BITRATE=-B %B}T:{START=-ss %s}
  [avconv] -loglevel quiet  -f mp4 -i $FILE$ -f wav - | [lame] --silent -q 
$QUALITY$ $BITRATE$ - -
  
  mp4 pcm * *
  # FRB:{BITRATE=-B %B}T:{START=-ss %s}
  [avconv] -loglevel quiet  -f mp4 -i $FILE$ -f u16le -
  
  mp4 flc * *
  # FRB:{BITRATE=-B %B}T:{START=-ss %s}
  [avconv] -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=104480

_______________________________________________
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss

Reply via email to