Same issues as happened before see
https://forums.slimdevices.com/showthread.php?108370-MPEG-4-AAC-France-Musique-Podcasts&p=901309&viewfull=1#post901309

The issue is that LMS identifies streaming MP4 but faad can only handle
MP4 files and not streams - so you need a custom-convert.conf for "mp4"
to handle remote streams.  This requires ffmpeg or avconv on your
system.  Not sure about Windows setup.

Below is an example custom-convert.conf file for a Linux setup with
ffmpeg. 
Format is *very* specific.
Remember you need a tab before the "# FRB" and the [avconv] or [ffmpeg]

After LMS restart, check your filetypes has under mp4 has ffmpeg/flac
and not faad/flac. make sure all entries under mp4 are not disabled.



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 s16le -
  
  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=111604

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

Reply via email to