added missing file
authorJean-Philippe Orsini <jeanfi@gmail.com>
Wed, 15 Jun 2016 08:51:05 +0000 (10:51 +0200)
committerJean-Philippe Orsini <jeanfi@gmail.com>
Wed, 15 Jun 2016 08:51:05 +0000 (10:51 +0200)
www/mp3tool/mp3tool.html [new file with mode: 0644]

diff --git a/www/mp3tool/mp3tool.html b/www/mp3tool/mp3tool.html
new file mode 100644 (file)
index 0000000..6cbf7c6
--- /dev/null
@@ -0,0 +1,179 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+<meta charset="UTF-8">
+<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]-->
+<meta name="viewport" content="width=device-width, initial-scale=1.0">
+<meta name="generator" content="Asciidoctor 1.5.4">
+<title>MP3Tool</title>
+<link rel="stylesheet" href="./../style.css">
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
+<script src="../nav.js"></script>
+</head>
+<body class="article">
+<div id="header">
+<h1>MP3Tool</h1>
+</div>
+<div id="content">
+<div id="preamble">
+<div class="sectionbody">
+<div class="paragraph">
+<p>The MP3 files contain information about the name of the artist, the
+name of the album, the sound title, etc.</p>
+</div>
+<div class="paragraph">
+<p>MP3Tool is a command line tool for moving a MP3 file according to these
+information. It can also output the information.</p>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_usage">Usage</h2>
+<div class="sectionbody">
+<div class="sect2">
+<h3 id="_display_mp3_information">Display MP3 information</h3>
+<div class="paragraph">
+<p>Displays the MP3 information of the file ‘file.mp3’:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre>mp3tool -i PATTERN file.mp3</pre>
+</div>
+</div>
+<div class="paragraph">
+<p>The format string <code>PATTERN</code> controls the contents of the mp3tool
+output.  It can contains MP3 tag information variables.  Move a MP3
+file</p>
+</div>
+<div class="paragraph">
+<p>Moves <code>files.mp3</code> to <code>dest</code>:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre>mp3tool -m PATTERN file.mp3</pre>
+</div>
+</div>
+<div class="paragraph">
+<p>The <code>PATTERN</code> string can contain MP3 tag information variables.</p>
+</div>
+<div class="paragraph">
+<p>MP3 tag information variables:</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p>%c comment</p>
+</li>
+<li>
+<p>%a name of the artist</p>
+</li>
+<li>
+<p>%l name of the album</p>
+</li>
+<li>
+<p>%t title</p>
+</li>
+<li>
+<p>%y year</p>
+</li>
+<li>
+<p>%% percent</p>
+</li>
+<li>
+<p>%n newline</p>
+</li>
+</ul>
+</div>
+<div class="paragraph">
+<p>Examples:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre>mp3tool -m "%a/%l/%f" file.mp3</pre>
+</div>
+</div>
+<div class="paragraph">
+<p>will move <code>file.mp3</code> into the directory <code>artist/album</code>.</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre>mp3tool -m "%a - %l - %t.mp3" file.mp3</pre>
+</div>
+</div>
+<div class="paragraph">
+<p>will rename <code>file.mp3</code> to <code>artist – album – title.mp3</code>.</p>
+</div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_installation_for_ubuntu">Installation for Ubuntu</h2>
+<div class="sectionbody">
+<div class="paragraph">
+<p>The easy way to install mp3tool on Ubuntu is to use the PPA:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre>sudo apt-add-repository ppa:jfi/mp3tool
+sudo apt-get update
+sudo apt-get install mp3tool</pre>
+</div>
+</div>
+<div class="paragraph">
+<p>Alternatively, it can be installed manually by downloading Ubuntu
+binary packages, see the ‘Download Links’ section of this page.</p>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_installation_from_source_archive">Installation from source archive</h2>
+<div class="sectionbody">
+<div class="paragraph">
+<p>MP3Tool should compile on any Linux plateform:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre>make clean all</pre>
+</div>
+</div>
+<div class="paragraph">
+<p>Then perform the installation:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre>make install</pre>
+</div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_download_links">Download Links</h2>
+<div class="sectionbody">
+<div class="ulist">
+<ul>
+<li>
+<p><a href="files">Source archives</a>.</p>
+</li>
+</ul>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_contact_information">Contact Information</h2>
+<div class="sectionbody">
+<div class="paragraph">
+<p>Bugs and comments can be sent to <a href="mailto:wpitchoune@gmail.com">wpitchoune@gmail.com</a>.</p>
+</div>
+<div class="paragraph">
+<p>Released under GPLv2 license terms.</p>
+</div>
+</div>
+</div>
+</div>
+<div id="footer">
+<div id="footer-text">
+Last updated 2016-06-15 10:30:40 CEST
+</div>
+</div>
+</body>
+</html>
\ No newline at end of file