rickwookie wrote: 
> Since I had to run the SqueezePlug 'remove X' script in the first place
> to even get LMS to fit.
> 
> Is wmadec Windows only, and is there no lightweight alternative for my
> Pi?
> 
> For the mpc album, I can't play it at all. Any suggestions.

I have a 'self built mplayer binary for squeezeplug'
(https://squeezeslave.googlecode.com/files/mplayer-1.0rc3-squeezeplug.tar.gz)
which supports wma and mpc files and is only 9 MB.  It's softfloat, but
I should work on armhf as well.

It only has a few package dependancies which you'd need to install
manually, actually they may already be installed.

sudo apt-get install libmad0 libncurses5 libasound2

Untar the file into /usr/share/logitechmediaserver/Bin/arm-linux
directory and install bpa's WMAPlay plugin for wma playback.

For mpc support add these lines to custom-convert.conf in the same
directory as the system convert.conf.
I think it's /etc/logitechmediaserver, but I use lms from git so I can't
confirm the default full path to these folders.
The file might need to be created and for mp3 decoding you also need to
'install shineenc and the lame script'
(http://forums.slimdevices.com/showthread.php?85285-SqueezePlug-(official-thread)&p=622232&viewfull=1#post622232).

Extract the shine tar file into the same place as mplayer above, not
what's listed in that post as it's for 7.6


Code:
--------------------
    mpc mp3 * *
  # F:{PATH=%f}R:{PATH=%F}B:{BITRATE=-B %B}T:{START=-ss %s}U:{DURATION=-endpos 
%w}
  [mplayer] -really-quiet -vc null -vo null $START$ $DURATION$ -nocache -ao 
pcm:file=/dev/fd/4 $PATH$ 4>&1 1>/dev/null | [lame] --silent -q $QUALITY$ 
$RESAMPLE$ -v $BITRATE$ - -
  
  mpc flc * *
  # F:{PATH=%f}R:{PATH=%F}T:{START=-ss %s}U:{DURATION=-endpos %w}
  [mplayer] -really-quiet -vc null -vo null $START$ $DURATION$ -nocache -ao 
pcm:file=/dev/fd/4 $PATH$ 4>&1 1>/dev/null | [flac] -cs --totally-silent 
--compression-level-4 -
  
  mpc pcm * *
  # F:{PATH=%f}R:{PATH=%F}T:{START=-ss %s}U:{DURATION=-endpos %w}
  [mplayer] -really-quiet -vc null -vo null $START$ $DURATION$ -nocache -ao 
pcm:file=/dev/fd/4 $PATH$ 4>&1 1>/dev/null
--------------------


------------------------------------------------------------------------
ralphy's Profile: http://forums.slimdevices.com/member.php?userid=3484
View this thread: http://forums.slimdevices.com/showthread.php?t=98296

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

Reply via email to