Answering your post in French forum (
http://forums.slimdevices.com/showthread.php?t=50322  )

1. AACplus (aac+) is NOT the same as AAC.  AACplus is usually used for
internet radio. Adding AACplus changes will not enable playing of AAC
files.

2. AAC file format are more commonly called m4a files because they have
the filename extension m4a. You need to add support for m4a according to
the SSODS FAQ http://oinkzwurgl.org/ssods_faq#toc18.  

You need to edit and add the following lines to the custom-convert.conf
file on your DS107.


Code:
--------------------
    
  mov wav * *
  [mplayer-stdout] -really-quiet -vc null -vo null -cache 128 -af 
volume=0,resample=44100:0:1,channels=2 -ao pcm:nowaveheader:file=- $FILE$ 
2>/dev/null
  
  mov mp3 * *
  [mplayer-stdout] -really-quiet -vc null -vo null -cache 128 -af 
volume=0,resample=44100:0:1,channels=2 -ao pcm:nowaveheader:file=- $FILE$ 
2>/dev/null | [lame] --silent -r -x -q $QUALITY$ -b $BITRATE$ - - 2>/dev/null
  
  mov flc * *
  [mplayer-stdout] -really-quiet -vc null -vo null -cache 128 -af 
volume=0,resample=44100:0:1,channels=2 -ao pcm:nowaveheader:file=- $FILE$ 
2>/dev/null | [flac] -cs --endian=little --channels=2 --sign=signed --bps=16 
--sample-rate=44100 --compression-level-0 - - 2>/dev/null
  
--------------------


3. If you AAC files do not have an mov,m4a,mp4 or m4b extension, you
will need to edit the types.conf files

4. You may have performance problems (i.e. stuttering) playing AAC
files on DS-107+ because of memory and processor limitations.


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

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

Reply via email to