]> git.pld-linux.org Git - packages/cdcollect.git/blob - cdcollect-faq.txt
- hu
[packages/cdcollect.git] / cdcollect-faq.txt
1 Frecuently Asked Questions for CDCollect
2
3 What are information plugins?
4
5 Information plugins are external programs that CDCollect calls for specific
6 mime types. The text output of the external program is associated as metadata
7 information for the imported file of the CD/DVD.
8
9 How can I create new information plugins?
10
11 Go to Edit/Plugins menu item and then click on the Information tab. Click on
12 the Add button and introduce all needed information for the plugin:
13
14   • Mime: mime-type of the information plugin. Files with this mime type will
15     be associated with the plugin. (To see a file mime-type type this on a
16     terminal "file -i name_on_disk")
17   • Program: Path of the information plugin program. The output of this program
18     will be associated to the imported file.
19   • Arguments: Arguments to the information plugin. At least you should use:
20       □ The string "{0}" to be replaced for the input filename
21
22 What are compression plugins?
23
24 Compression plugins are external programs that CDCollect calls for specific
25 mime types. The external program will be run to uncompressed the contents of
26 the file and they will be added to the CDCollect database when importing a CD/
27 DVD.
28
29 How can I create new compression plugins?
30
31 Go to Edit/Plugins menu item and then click on the Compression tab. Click on
32 the Add button and introduce all needed information for the plugin:
33
34   • Mime: mime-type of the compression plugin. Files with this mime type will
35     be uncompressed and contents will be added to the CD/DVD. (To see a file
36     mime-type type this on a terminal "file -i name_on_disk")
37   • Program: Path of the compression plugin program.
38   • Arguments: Arguments to the information plugin. At least you should use:
39       □ The string "{0}" to be replaced for the input filename
40       □ The string "{1}" to be replaced by the temporal directory to
41         uncompressed files
42
43 How can I convert my database from SQLITE version 2.8 to 3?
44
45 CDCollect 0.6.0 uses sqlite3 as the internal database format. To convert your
46 existing database to the new format follow this simple steps:
47
48   • Install both sqlite command-line tools for version 2.8 and 3
49       □ In debian/ubuntu install packages 'sqlite' and 'sqlite3'
50       □ In fedora install packages (any fedora users using cdcollect???)
51       □ In suse install packages (any suse users using cdcollect??)
52   • Open a console terminal and type the following commands:
53       □ cd $HOME/.gnome2/cdcollect
54       □ cp cds.db cds.db_backup
55       □ sqlite cds.db .dump | sqlite3 cds3.db
56       □ rm cds.db
57   • That's it, open CDCollect and enjoy! For more information please visit
58     sqlite homepage in section 'New File Formar'.
59
60
61 Last Modified: Fri, 24th Nov, 2006. Send any comments to jrhbcn@gmail.com.
This page took 0.068301 seconds and 3 git commands to generate.