also INFO for qmmp and xmms
Ape plays in qmmp through the ffmpeg plugin and in xmms with the libmacinput.so which needs to Be in your home/.xmms/plugin folder
-====>go into your home folder control H to find hidden .xmms folder
Last edited by shantiq; May 12th, 2010 at 08:33 PM.
one step install
the .deb you need in attachment
here below for 32-bit and 64-bit
works all the way up to Lucid
Last edited by shantiq; May 23rd, 2011 at 01:35 PM.
Linux is Latin for off-the-beaten-track
what I like MOST about our Ubuntu ... The Community
Playing with Slackware too now ...
ShanArt
might be of interest to some of you
from here and here
Introduction
apeinfo is CLI (command line interface) program designed to display tag data and audio format information for APE (Monkey's Audio) files.
Monkey's Audio is a lossless audio compression format, similar to FLAC. It's become fairly popular, but suffers from two primary limitations; very limited cross-platform support (only Windows is officially supported), and a non-free license (note: this may have recently changed). As a result, I wanted an easy way to convert APE files to the FLAC format, which is my preferred lossless compression format. There are no available CLI APE tag readers available for Linux at the time of this writing, so I modified a sample program included in the MAC distribution to output this information. I then use this information in my Convert to FLAC script to migrate the APE tags to the new FLAC file.
apeinfo is written in C++, and utilizes the MAC (Monkey's Audio Codec non-win32 ports) libraries written by Matthew T. Ashland. Also, special thanks to Bill Anderson for his much appreciated assistance with developing and troubleshooting apeinfo.
Return to top
Download Current Version: 1.1, Released: 05/13/2009
apeinfo 1.1 (64-bit) binary (140.3 KB) - This is a 64-bit compiled version of apeinfo. It was compiled on a Kubuntu Linux system with GCC 4.3.3 and glibc 2.9.
apeinfo 1.0 (32-bit) binary (127.54 KB) - This is a 32-bit compiled version of apeinfo. It was compiled on a Gentoo Linux system with GCC 3.4.4 and glibc 2.3.5.
apeinfo 1.1 source (6.75 KB) - This is the apeinfo source code. If you receive any error messages when trying to run the binary version, try using this instead. To compile it, also download the MAC source code and follow the instructions below.
ChangeLog - apeinfo development details
Return to top
Installation
Downloading apeinfo binary
Installation of the apeinfo binary is simple:
- Download the binary
- Copy to a directory in your $PATH (eg, /usr/local/bin/)
- Ensure that the binary has the execute bit set (eg, chmod a+x /usr/local/bin/apeinfo)
Try executing apeinfo after installation. If it returns usage information, then you're good to go. If you get any error messages, then you'll likely need to follow the compilation instructions below.
Compiling apeinfo from source
To compile apeinfo, follow these steps
- Download the apeinfo source tarball above
- Download the MAC source tarball
- Note: This was originally written and compiled against MAC version 3.99-u4-b5. Other versions should work as well, but are not guaranteed.
- Extract the MAC tarball
- Extract the apeinfo tarball to the following directory: mac-<version>/src/Examples/Analyze/Sample1/
- Note: This will overwrite the two makefiles in that directory
- From the root of the MAC source code, run ./configure --disable-shared --enable-static && make
- This will configure the MAC environment and compile a static apeinfo binary
- Copy mac-<version>/src/Examples/Analyze/Sample1/apeinfo to a directory in your $PATH (eg,/usr/local/bin/)
- Optional: If you'd like to install the mac binary as well, which can be used to encode or decode APE files, repeat the above step for mac-<version>/src/Console/mac
Execute apeinfo to verify that compilation and installation was successful. Once apeinfo is installed, you can delete the MAC source code if you'd like.
Return to top
Usage
Execute apeinfo -h to display the apeinfo help information. This will describe the syntax for running the program and list all available options. Depending on which option is used, apeinfo will display detailed information about the given APE file, or will display a list of all tags in VORBISCOMMENT format. The VORBISCOMMENT tags can be be applied to another file using a separate program, such as Convert to FLAC.
Linux is Latin for off-the-beaten-track
what I like MOST about our Ubuntu ... The Community
Playing with Slackware too now ...
ShanArt
Many thanks for this.
Thanks a lot!
It works!
Once installed enterin a terminalCode:mac
and this will come up
fairly straightforwardCode:--- Monkey's Audio Console Front End (v 3.99) (c) Matthew T. Ashland --- Proper Usage: [EXE] [Input File] [Output File] [Mode] Modes: Compress (fast): '-c1000' Compress (normal): '-c2000' Compress (high): '-c3000' Compress (extra high): '-c4000' Compress (insane): '-c5000' Decompress: '-d' Verify: '-v' Convert: '-nXXXX' Examples: Compress: mac.exe "Metallica - One.wav" "Metallica - One.ape" -c2000 Decompress: mac.exe "Metallica - One.ape" "Metallica - One.wav" -d Verify: mac.exe "Metallica - One.ape" -v (note: int filenames must be put inside of quotations)
================================================== =====Code:mac "inputfile.wav" "outputfile.ape" -c5000
If you want to bulkconvert to and from ape change directory
cd to your files then enter
Compress (remove red section if you want to keep the original file)
Code:for f in *.wav; do mac "$f" "${f%.wav}.ape" -c5000 && rm "$f"; done
Decompress
Code:for f in *.ape; do mac "$f" "${f%.ape}.wav" -d && rm "$f"; done
Last edited by shantiq; December 29th, 2010 at 02:07 PM.
Linux is Latin for off-the-beaten-track
what I like MOST about our Ubuntu ... The Community
Playing with Slackware too now ...
ShanArt
and for 64-bit...
Linux is Latin for off-the-beaten-track
what I like MOST about our Ubuntu ... The Community
Playing with Slackware too now ...
ShanArt
Thank you for the 64bit deb version of mac ;o) Works like a charm on 10.10 for me ...
A big thank you from me for the 64-bit version, as well.
I remember installing mac the last time was a big pain in the ***, so this is appreciated.
Bookmarks