announce project is moving outside of garage.maemo.org
[lms] / www / index.html
1 <?xml version="1.0" encoding="utf-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
4   <head profile="http://www.w3.org/2000/08/w3c-synd/#">
5     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6     <title>Light Media Scanner</title>
7     <style type="text/css">
8 body {
9    background-color: #ffffff;
10    color: #000000;
11    font-family: Tahoma, Verdana, sans-serif;
12 }
13     </style>
14   </head>
15   <body>
16     <h1>Light Media Scanner</h1>
17     <p>
18       Lightweight media scanner meant to be used in not-so-powerful
19       devices, like embedded systems or old machines.
20     </p>
21     <div>
22       <p style="color: red; font-weight: bold; font-size: x-large;">
23         This project moved to
24         <a href="http://git.profusion.mobi/cgit.cgi/lightmediascanner.git/">ProFUSION servers</a>
25         and also mirrored at
26         <a href="https://github.com/profusion/lightmediascanner">github</a>.
27       </p>
28     </div>
29     <p>
30       Provides an optimized way to recursively scan directories,
31       handling the parser in a child process, avoiding breaks of the
32       main process when parsers break (quite common with such bad libs
33       and tags). One can opt to use the single process version, but be
34       aware that if something bad happens during parsing, your
35       application will suffer.
36     </p>
37     <p>
38       Parsers are plugins in the form of shared objects, so it's easy
39       to add new without having to recompiling the scanner.
40     </p>
41     <p>
42       The scanner will use SQLite3 to store file-mtime association,
43       avoiding parsing files that are already up-to-date. This SQLite
44       connection and the file id within the master table 'files' are
45       handled to plugins for relationship with other tables.
46     </p>
47     <p>
48       Applications should then access the SQLite3 database to get all
49       the informations about scanned media. See tables and fields
50       description at <a
51       href="http://packages.profusion.mobi/lightmediascanner/docs/api/">http://packages.profusion.mobi/lightmediascanner/docs/api/</a>
52       (end of the page). You can use any SQLite3 access library, for
53       instance you have SQLObject, SQLAlchemy and Storm for python,
54       Sequel for Ruby and possible others.
55     </p>
56     <h2>Documentation</h2>
57     <ul>
58       <li><a href="http://packages.profusion.mobi/lightmediascanner/docs/api/">C API</a>, with library
59       introduction and DB tables descriptions.</li>
60       <li><a href="python-api/index.html">Python API</a></li>
61       <li><a href="ruby-api/index.html">Ruby API</a></li>
62     </ul>
63     <h2>Project</h2>
64     <ul>
65       <li>
66         <a href="http://git.profusion.mobi/cgit.cgi/lightmediascanner.git/">Source
67         Repository</a>
68       </li>
69       <li>
70         <a href="https://github.com/profusion/lightmediascanner">Github (mirror)</a>
71       </li>
72     </ul>
73     <h2>Download</h2>
74     <ul>
75       <li>
76         Library:
77         <ul>
78           <li><a
79                   href="http://packages.profusion.mobi/lightmediascanner/lightmediascanner-0.4.5.0.tar.bz2">Last tarball (0.4.5)</a></li>
80           <li><code>git clone git://git.profusion.mobi/lightmediascanner.git</code></li>
81         </ul>
82       </li>
83       <li>
84         Python bindings:
85         <ul>
86           <li><a href="https://garage.maemo.org/frs/download.php/5871/python-lightmediascanner-0.3.0.tar.gz">Last tarball (0.3)</a></li>
87           <li><code>git clone git://git.profusion.mobi/python-lightmediascanner.git</code></li>
88           </ul>
89         </li>
90       <li>
91         Ruby bindings:
92         <ul>
93           <li><a href="https://garage.maemo.org/frs/download.php/3012/ruby-lightmediascanner_0.1.0-maemo.1.tar.gz">Last tarball (0.1)</a></li>
94           <li><code>svn co <a
95           href="https://garage.maemo.org/svn/lms/ruby-lightmediascanner">https://garage.maemo.org/svn/lms/ruby-lightmediascanner</a></code></li>
96           </ul>
97         </li>
98     </ul>
99     <h2>License</h2>
100     <p>
101       Light Media Scanner is licensed under <em>GNU Lesser General
102       Public License 2.1</em>.
103     </p>
104     <hr />
105     <p style="text-align: center">
106       <a
107           href="http://profusion.mobi"><img src="images/profusion_logo.png"
108           alt="ProFUSION" style="border: 0" /></a>
109       <a
110           href="http://www.indt.org.br"><img src="images/indt_logo.jpg"
111           alt="INdT" style="border: 0" /></a>
112       <a
113           href="http://www.maemo.org"><img src="images/maemo_logo.jpg"
114           alt="Maemo"  style="border: 0" /></a>
115     </p>
116   </body>
117 </html>