video: add missing fields (container, sampling_rate)
[platform/upstream/lightmediascanner.git] / README
1                          LIGHT MEDIA SCANNER
2                          ===================
3
4 Lightweight media scanner meant to be used in not-so-powerful devices,
5 like embedded systems or old machines.
6
7 Provides an optimized way to recursively scan directories, handling
8 the parser in a child process, avoiding breaks of the main process
9 when parsers break (quite common with such bad libs and tags). One can
10 opt to use the single process version, but be aware that if something
11 bad happens during parsing, your application will suffer.
12
13 Parsers are plugins in the form of shared objects, so it's easy to add
14 new without having to recompile the scanner.
15
16 The scanner will use SQLite3 to store file-mtime association, avoiding
17 parsing files that are already up-to-date. This SQLite connection and
18 the file id within the master table 'files' are handled to plugins for
19 relationship with other tables.