From 00c4afcc5d22c8155fc73880de22b7b4b8c94e8b Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Wed, 15 Jun 2016 10:51:05 +0200 Subject: [PATCH] added missing file --- www/mp3tool/mp3tool.html | 179 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 179 insertions(+) create mode 100644 www/mp3tool/mp3tool.html diff --git a/www/mp3tool/mp3tool.html b/www/mp3tool/mp3tool.html new file mode 100644 index 0000000..6cbf7c6 --- /dev/null +++ b/www/mp3tool/mp3tool.html @@ -0,0 +1,179 @@ + + + + + + + +MP3Tool + + + + + + +
+
+
+
+

The MP3 files contain information about the name of the artist, the +name of the album, the sound title, etc.

+
+
+

MP3Tool is a command line tool for moving a MP3 file according to these +information. It can also output the information.

+
+
+
+
+

Usage

+
+
+

Display MP3 information

+
+

Displays the MP3 information of the file ‘file.mp3’:

+
+
+
+
mp3tool -i PATTERN file.mp3
+
+
+
+

The format string PATTERN controls the contents of the mp3tool +output. It can contains MP3 tag information variables. Move a MP3 +file

+
+
+

Moves files.mp3 to dest:

+
+
+
+
mp3tool -m PATTERN file.mp3
+
+
+
+

The PATTERN string can contain MP3 tag information variables.

+
+
+

MP3 tag information variables:

+
+
+
    +
  • +

    %c comment

    +
  • +
  • +

    %a name of the artist

    +
  • +
  • +

    %l name of the album

    +
  • +
  • +

    %t title

    +
  • +
  • +

    %y year

    +
  • +
  • +

    %% percent

    +
  • +
  • +

    %n newline

    +
  • +
+
+
+

Examples:

+
+
+
+
mp3tool -m "%a/%l/%f" file.mp3
+
+
+
+

will move file.mp3 into the directory artist/album.

+
+
+
+
mp3tool -m "%a - %l - %t.mp3" file.mp3
+
+
+
+

will rename file.mp3 to artist – album – title.mp3.

+
+
+
+
+
+

Installation for Ubuntu

+
+
+

The easy way to install mp3tool on Ubuntu is to use the PPA:

+
+
+
+
sudo apt-add-repository ppa:jfi/mp3tool
+sudo apt-get update
+sudo apt-get install mp3tool
+
+
+
+

Alternatively, it can be installed manually by downloading Ubuntu +binary packages, see the ‘Download Links’ section of this page.

+
+
+
+
+

Installation from source archive

+
+
+

MP3Tool should compile on any Linux plateform:

+
+
+
+
make clean all
+
+
+
+

Then perform the installation:

+
+
+
+
make install
+
+
+
+
+
+ +
+
+ +
+
+
+
+

Contact Information

+
+
+

Bugs and comments can be sent to wpitchoune@gmail.com.

+
+
+

Released under GPLv2 license terms.

+
+
+
+
+ + + \ No newline at end of file -- 2.7.4