2e01a30c74536edb091260d2965f9a9177395db9
[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     <p>
22       Provides an optimized way to recursively scan directories,
23       handling the parser in a child process, avoiding breaks of the
24       main process when parsers break (quite common with such bad libs
25       and tags). One can opt to use the single process version, but be
26       aware that if something bad happens during parsing, your
27       application will suffer.
28     </p>
29     <p>
30       Parsers are plugins in the form of shared objects, so it's easy
31       to add new without having to recompiling the scanner.
32     </p>
33     <p>
34       The scanner will use SQLite3 to store file-mtime association,
35       avoiding parsing files that are already up-to-date. This SQLite
36       connection and the file id within the master table 'files' are
37       handled to plugins for relationship with other tables.
38     </p>
39     <p>
40       Applications should then access the SQLite3 database to get all
41       the informations about scanned media. See tables and fields
42       description at <a
43       href="http://lms.garage.maemo.org/api/index.html">http://lms.garage.maemo.org/api/index.html</a>
44       (end of the page). You can use any SQLite3 access library, for
45       instance you have SQLObject, SQLAlchemy and Storm for python,
46       Sequel for Ruby and possible others.
47     </p>
48     <h2>Documentation</h2>
49     <ul>
50       <li><a href="api/index.html">C API</a>, with library
51       introduction and DB tables descriptions.</li>
52       <li><a href="python-api/index.html">Python API</a></li>
53       <li><a href="ruby-api/index.html">Ruby API</a></li>
54     </ul>
55     <h2>Project</h2>
56     <ul>
57       <li>
58         <a href="https://garage.maemo.org/projects/lms">Project Page
59         at Garage-Maemo</a>
60       </li>
61       <li>
62         <a
63             href="https://garage.maemo.org/tracker/?atid=1877&group_id=498&func=browse">Bug
64         Report &amp; Tracker</a>
65       </li>
66       <li>
67         <a href="https://garage.maemo.org/plugins/wiki/index.php?id=498&type=g">Wiki</a>
68       </li>
69       <li>
70         <a href="https://garage.maemo.org/scm/?group_id=498">Source
71         Repository</a>
72       </li>
73     </ul>
74     <h2>Download</h2>
75     <ul>
76       <li>
77         Library:
78         <ul>
79           <li><a
80                   href="https://garage.maemo.org/frs/download.php/8852/lightmediascanner-0.4.1.0.tar.bz2">Last tarball (0.4.1)</a></li>
81           <li><code>git clone git://git.profusion.mobi/lightmediascanner.git</code></li>
82         </ul>
83       </li>
84       <li>
85         Python bindings:
86         <ul>
87           <li><a href="https://garage.maemo.org/frs/download.php/5871/python-lightmediascanner-0.3.0.tar.gz">Last tarball (0.3)</a></li>
88           <li><code>git clone git://git.profusion.mobi/python-lightmediascanner.git</code></li>
89           </ul>
90         </li>
91       <li>
92         Ruby bindings:
93         <ul>
94           <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>
95           <li><code>svn co <a
96           href="https://garage.maemo.org/svn/lms/ruby-lightmediascanner">https://garage.maemo.org/svn/lms/ruby-lightmediascanner</a></code></li>
97           </ul>
98         </li>
99     </ul>
100     <h2>License</h2>
101     <p>
102       Light Media Scanner is licensed under <em>GNU Lesser General
103       Public License 2.1</em>.
104     </p>
105     <hr />
106     <p style="text-align: center">
107       <a
108           href="http://profusion.mobi"><img src="images/profusion_logo.png"
109           alt="ProFUSION" style="border: 0" /></a>
110       <a
111           href="http://www.indt.org.br"><img src="images/indt_logo.jpg"
112           alt="INdT" style="border: 0" /></a>
113       <a
114           href="http://www.maemo.org"><img src="images/maemo_logo.jpg"
115           alt="Maemo"  style="border: 0" /></a>
116     </p>
117   </body>
118 </html>