bpa wrote: 
> If you are using a 64 bit kernel - have you installed the ia32-libs
> package ?
When I'm playing m4b files on my ubuntu 12.04  x86_64 box, I see the
following processes transcoding the audio:

Code:
--------------------
    
  27837 ?        S      0:11 /usr/share/squeezeboxserver/Bin/i386-linux/faad -q 
-w -f 1 /mnt/Media/AudioBooks/Le Carré, John/Our Game/Our Game.m4b
  27838 ?        S      0:10 /usr/share/squeezeboxserver/Bin/i386-linux/flac 
-cs --totally-silent --compression-level-0 --ignore-chunk-sizes -
  
--------------------

..despite having installed the 64bit versions of both faad and flac.  If
you are running a 64bit kernel, then, unless you follow bpa's advice and
install ia32-libs, you could install faad & flac via apt-get and then
copy the 64bit executables over the 32bit versions in i386-linux or
create links to them there:


Code:
--------------------
    
  sudo su
  SLIMBIN='/usr/share/squeezeboxserver/Bin/i386-linux'
  
  for FILE32 in ${SLIMBIN}/*; do
  FILE64=$(which $(basename "$FILE32") )
  if [ -x "$FILE64" ]; then
  mv "$FILE32" "${FILE32}.32"
  ln -s "$FILE64" "$FILE32"
  fi
  done
  
  ls -l $SLIMBIN
  
  
--------------------


------------------------------------------------------------------------
gharris999's Profile: http://forums.slimdevices.com/member.php?userid=115
View this thread: http://forums.slimdevices.com/showthread.php?t=95973

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

Reply via email to