added mp3tool
authorJean-Philippe Orsini <jeanfi@gmail.com>
Wed, 15 Jun 2016 08:44:52 +0000 (10:44 +0200)
committerJean-Philippe Orsini <jeanfi@gmail.com>
Wed, 15 Jun 2016 08:44:52 +0000 (10:44 +0200)
25 files changed:
src/mp3tool/docinfo.html [new file with mode: 0644]
src/mp3tool/mp3tool.adoc [new file with mode: 0644]
www-update.sh
www/mp3tool/files/mp3tool-0.1.0-src.tar.gz [new file with mode: 0644]
www/mp3tool/files/mp3tool-0.3.1.tar.gz [new file with mode: 0644]
www/mp3tool/files/mp3tool_0.2.0.tar.gz [new file with mode: 0644]
www/mp3tool/files/ubuntu/karmic/mp3tool_0.2.0-1_amd64.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/karmic/mp3tool_0.2.0-1_i386.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/karmic/mp3tool_0.2.0-1_lpia.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/karmic/mp3tool_0.3.1-1_amd64.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/karmic/mp3tool_0.3.1-1_i386.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/karmic/mp3tool_0.3.1-1_lpia.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/lucid/mp3tool_0.2.0-2_amd64.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/lucid/mp3tool_0.2.0-2_i386.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/lucid/mp3tool_0.3.1-2_amd64.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/lucid/mp3tool_0.3.1-2_i386.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/maverick/mp3tool_0.2.0-3_amd64.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/maverick/mp3tool_0.2.0-3_i386.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/maverick/mp3tool_0.3.1-3_amd64.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/maverick/mp3tool_0.3.1-3_i386.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/natty/mp3tool_0.2.0-4_amd64.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/natty/mp3tool_0.2.0-4_i386.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/natty/mp3tool_0.3.1-4_amd64.deb [new file with mode: 0644]
www/mp3tool/files/ubuntu/natty/mp3tool_0.3.1-4_i386.deb [new file with mode: 0644]
www/nav.js

diff --git a/src/mp3tool/docinfo.html b/src/mp3tool/docinfo.html
new file mode 100644 (file)
index 0000000..de6e343
--- /dev/null
@@ -0,0 +1,2 @@
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
+<script src="../nav.js"></script>
diff --git a/src/mp3tool/mp3tool.adoc b/src/mp3tool/mp3tool.adoc
new file mode 100644 (file)
index 0000000..b6f9858
--- /dev/null
@@ -0,0 +1,98 @@
+= MP3Tool
+:docinfo2:
+:icon: font
+
+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
+----
+
+== Download Links
+
+* link:files[Source archives].
+
+== Contact Information
+
+Bugs and comments can be sent to wpitchoune@gmail.com.
+
+Released under GPLv2 license terms.
index bacb403..e289059 100755 (executable)
@@ -35,3 +35,5 @@ asciidoctor $OPTS src/index.adoc -D www/
 OPTS="-a linkcss -a stylesheet=../style.css"
 
 asciidoctor $OPTS src/ppastats/ppastats.adoc -D www/ppastats/
+
+asciidoctor $OPTS src/mp3tool/mp3tool.adoc -D www/mp3tool/
diff --git a/www/mp3tool/files/mp3tool-0.1.0-src.tar.gz b/www/mp3tool/files/mp3tool-0.1.0-src.tar.gz
new file mode 100644 (file)
index 0000000..77f9044
Binary files /dev/null and b/www/mp3tool/files/mp3tool-0.1.0-src.tar.gz differ
diff --git a/www/mp3tool/files/mp3tool-0.3.1.tar.gz b/www/mp3tool/files/mp3tool-0.3.1.tar.gz
new file mode 100644 (file)
index 0000000..33407fb
Binary files /dev/null and b/www/mp3tool/files/mp3tool-0.3.1.tar.gz differ
diff --git a/www/mp3tool/files/mp3tool_0.2.0.tar.gz b/www/mp3tool/files/mp3tool_0.2.0.tar.gz
new file mode 100644 (file)
index 0000000..b4ec36f
Binary files /dev/null and b/www/mp3tool/files/mp3tool_0.2.0.tar.gz differ
diff --git a/www/mp3tool/files/ubuntu/karmic/mp3tool_0.2.0-1_amd64.deb b/www/mp3tool/files/ubuntu/karmic/mp3tool_0.2.0-1_amd64.deb
new file mode 100644 (file)
index 0000000..cf22285
Binary files /dev/null and b/www/mp3tool/files/ubuntu/karmic/mp3tool_0.2.0-1_amd64.deb differ
diff --git a/www/mp3tool/files/ubuntu/karmic/mp3tool_0.2.0-1_i386.deb b/www/mp3tool/files/ubuntu/karmic/mp3tool_0.2.0-1_i386.deb
new file mode 100644 (file)
index 0000000..b64f268
Binary files /dev/null and b/www/mp3tool/files/ubuntu/karmic/mp3tool_0.2.0-1_i386.deb differ
diff --git a/www/mp3tool/files/ubuntu/karmic/mp3tool_0.2.0-1_lpia.deb b/www/mp3tool/files/ubuntu/karmic/mp3tool_0.2.0-1_lpia.deb
new file mode 100644 (file)
index 0000000..45e0f24
Binary files /dev/null and b/www/mp3tool/files/ubuntu/karmic/mp3tool_0.2.0-1_lpia.deb differ
diff --git a/www/mp3tool/files/ubuntu/karmic/mp3tool_0.3.1-1_amd64.deb b/www/mp3tool/files/ubuntu/karmic/mp3tool_0.3.1-1_amd64.deb
new file mode 100644 (file)
index 0000000..57addf9
Binary files /dev/null and b/www/mp3tool/files/ubuntu/karmic/mp3tool_0.3.1-1_amd64.deb differ
diff --git a/www/mp3tool/files/ubuntu/karmic/mp3tool_0.3.1-1_i386.deb b/www/mp3tool/files/ubuntu/karmic/mp3tool_0.3.1-1_i386.deb
new file mode 100644 (file)
index 0000000..e0e6143
Binary files /dev/null and b/www/mp3tool/files/ubuntu/karmic/mp3tool_0.3.1-1_i386.deb differ
diff --git a/www/mp3tool/files/ubuntu/karmic/mp3tool_0.3.1-1_lpia.deb b/www/mp3tool/files/ubuntu/karmic/mp3tool_0.3.1-1_lpia.deb
new file mode 100644 (file)
index 0000000..943a8e5
Binary files /dev/null and b/www/mp3tool/files/ubuntu/karmic/mp3tool_0.3.1-1_lpia.deb differ
diff --git a/www/mp3tool/files/ubuntu/lucid/mp3tool_0.2.0-2_amd64.deb b/www/mp3tool/files/ubuntu/lucid/mp3tool_0.2.0-2_amd64.deb
new file mode 100644 (file)
index 0000000..b9f913f
Binary files /dev/null and b/www/mp3tool/files/ubuntu/lucid/mp3tool_0.2.0-2_amd64.deb differ
diff --git a/www/mp3tool/files/ubuntu/lucid/mp3tool_0.2.0-2_i386.deb b/www/mp3tool/files/ubuntu/lucid/mp3tool_0.2.0-2_i386.deb
new file mode 100644 (file)
index 0000000..26e3f2f
Binary files /dev/null and b/www/mp3tool/files/ubuntu/lucid/mp3tool_0.2.0-2_i386.deb differ
diff --git a/www/mp3tool/files/ubuntu/lucid/mp3tool_0.3.1-2_amd64.deb b/www/mp3tool/files/ubuntu/lucid/mp3tool_0.3.1-2_amd64.deb
new file mode 100644 (file)
index 0000000..140ba0b
Binary files /dev/null and b/www/mp3tool/files/ubuntu/lucid/mp3tool_0.3.1-2_amd64.deb differ
diff --git a/www/mp3tool/files/ubuntu/lucid/mp3tool_0.3.1-2_i386.deb b/www/mp3tool/files/ubuntu/lucid/mp3tool_0.3.1-2_i386.deb
new file mode 100644 (file)
index 0000000..54100d1
Binary files /dev/null and b/www/mp3tool/files/ubuntu/lucid/mp3tool_0.3.1-2_i386.deb differ
diff --git a/www/mp3tool/files/ubuntu/maverick/mp3tool_0.2.0-3_amd64.deb b/www/mp3tool/files/ubuntu/maverick/mp3tool_0.2.0-3_amd64.deb
new file mode 100644 (file)
index 0000000..45d5991
Binary files /dev/null and b/www/mp3tool/files/ubuntu/maverick/mp3tool_0.2.0-3_amd64.deb differ
diff --git a/www/mp3tool/files/ubuntu/maverick/mp3tool_0.2.0-3_i386.deb b/www/mp3tool/files/ubuntu/maverick/mp3tool_0.2.0-3_i386.deb
new file mode 100644 (file)
index 0000000..5db8ed5
Binary files /dev/null and b/www/mp3tool/files/ubuntu/maverick/mp3tool_0.2.0-3_i386.deb differ
diff --git a/www/mp3tool/files/ubuntu/maverick/mp3tool_0.3.1-3_amd64.deb b/www/mp3tool/files/ubuntu/maverick/mp3tool_0.3.1-3_amd64.deb
new file mode 100644 (file)
index 0000000..cb06e32
Binary files /dev/null and b/www/mp3tool/files/ubuntu/maverick/mp3tool_0.3.1-3_amd64.deb differ
diff --git a/www/mp3tool/files/ubuntu/maverick/mp3tool_0.3.1-3_i386.deb b/www/mp3tool/files/ubuntu/maverick/mp3tool_0.3.1-3_i386.deb
new file mode 100644 (file)
index 0000000..8426a61
Binary files /dev/null and b/www/mp3tool/files/ubuntu/maverick/mp3tool_0.3.1-3_i386.deb differ
diff --git a/www/mp3tool/files/ubuntu/natty/mp3tool_0.2.0-4_amd64.deb b/www/mp3tool/files/ubuntu/natty/mp3tool_0.2.0-4_amd64.deb
new file mode 100644 (file)
index 0000000..9c2b5c4
Binary files /dev/null and b/www/mp3tool/files/ubuntu/natty/mp3tool_0.2.0-4_amd64.deb differ
diff --git a/www/mp3tool/files/ubuntu/natty/mp3tool_0.2.0-4_i386.deb b/www/mp3tool/files/ubuntu/natty/mp3tool_0.2.0-4_i386.deb
new file mode 100644 (file)
index 0000000..7c730da
Binary files /dev/null and b/www/mp3tool/files/ubuntu/natty/mp3tool_0.2.0-4_i386.deb differ
diff --git a/www/mp3tool/files/ubuntu/natty/mp3tool_0.3.1-4_amd64.deb b/www/mp3tool/files/ubuntu/natty/mp3tool_0.3.1-4_amd64.deb
new file mode 100644 (file)
index 0000000..e7021ba
Binary files /dev/null and b/www/mp3tool/files/ubuntu/natty/mp3tool_0.3.1-4_amd64.deb differ
diff --git a/www/mp3tool/files/ubuntu/natty/mp3tool_0.3.1-4_i386.deb b/www/mp3tool/files/ubuntu/natty/mp3tool_0.3.1-4_i386.deb
new file mode 100644 (file)
index 0000000..aaa86ae
Binary files /dev/null and b/www/mp3tool/files/ubuntu/natty/mp3tool_0.3.1-4_i386.deb differ
index ecc25ae..716936f 100644 (file)
@@ -1,4 +1,10 @@
 $( document ).ready(function() {
-        $("#header").prepend("<nav><ul><li><a href='/'>News</a></li><li><a href='/ppastats'>PPAstats</a></li><li><a href='/psensor'>psensor</a></li></ul></nav>");
-        console.log("END");
+    var str = "<nav><ul>"
+       + "<li><a href='/'>News</a></li>"
+       + "<li><a href='/mp3tool'>mp3tool</a></li>"
+       + "<li><a href='/ppastats'>PPAstats</a></li>"
+       + "<li><a href='/psensor'>psensor</a></li>"
+        + "</ul></nav>";
+    
+    $("#header").prepend(str);
 });