Amarok/Manual/Organization/CollectionScanning/cs: Difference between revisions

From KDE UserBase Wiki
(Created page with "Pokaždé když '''Amarok''' zobrazí sbírku, je potřeba, aby informace o skladbách a albech přišly ze zdroje. Zdrojem může být přenosné zařízení, internetová sl...")
No edit summary
Line 7: Line 7:
Pro skladby, jež jsou ve složkách '''místní sbírky''' '''Amarok''' používá databázi, aby měl rychlý přístup k požadovaným informacím o popisných datech.
Pro skladby, jež jsou ve složkách '''místní sbírky''' '''Amarok''' používá databázi, aby měl rychlý přístup k požadovaným informacím o popisných datech.
Nejprve je potřeba tyto informace nahrát do databáze, což je obyčejně provedeno prohledáním adresářů s '''místní sbírkou''' na zvukové soubory.
Nejprve je potřeba tyto informace nahrát do databáze, což je obyčejně provedeno prohledáním adresářů s '''místní sbírkou''' na zvukové soubory.
Tento postup se nazývá prohledání sbírky.
Tento postup se nazývá prohledávání sbírky.


It is useful to understand the scanning process in order to work better with '''Amarok'''.
It is useful to understand the scanning process in order to work better with '''Amarok'''.

Revision as of 10:36, 28 August 2013

Prohledávání sbírky

Pokaždé když Amarok zobrazí sbírku, je potřeba, aby informace o skladbách a albech přišly ze zdroje. Zdrojem může být přenosné zařízení, internetová služba nebo databáze. Pro skladby, jež jsou ve složkách místní sbírky Amarok používá databázi, aby měl rychlý přístup k požadovaným informacím o popisných datech. Nejprve je potřeba tyto informace nahrát do databáze, což je obyčejně provedeno prohledáním adresářů s místní sbírkou na zvukové soubory. Tento postup se nazývá prohledávání sbírky.

It is useful to understand the scanning process in order to work better with Amarok.

Přírůstkové hledání / Aktualizace sbírky

The so-called incremental scan will check the collection directories for updates. This is done every minute if Watch folders for changes is enabled (on by default) but can also be triggered manually by selecting Update Collection from the menu.

The incremental scan will just check the modification date of every folder in the collection against the last known modification time. This has a couple of implications:

  • You can trigger a rescan of one directory by modifying its time (such as using touch /path/to/directory in the console).
  • If files inside a directory are changed the scanner will not notice, because changing a file updates its modification time but not the time of the parent folder. On the other hand most programs that modify the files save them atomically by using a temporary file which is then renamed. Such procedure does update directory modification time and thus triggers directory rescan.
  • If the collection folders are on a very slow partition the process of checking all the modification times can take some time. Usually this information is cached by the operating system but with large collections that might not be possible. In such a case the scanner might appear to scan continuously. With collections above thousands of directories or when collections are stored on a network drive or an NTFS partition it is recommended to switch off the Watch folders for change option.

If you have problems with deleted tracks still appearing in the collection, or you want to update album covers (which are not updated by a mere Update collection) then you can use the Full rescan option in the settings dialog. Full rescan will not care about modification dates. It will not delete statistics of existing files; it will, however, delete statistics of tracks that disappeared from the currently mounted collection folders. Because of that it is adviseable to perform the Full rescan only with all Local Collection folders mounted if you move the tracks between mounts. Full rescan also updates play count if the one stored in file tags is greater, rating if the song is unrated and file tags mention rating and score (under the same circumstances).

Ukazatel postupu / Doba prohledávání

The progress bar will show the progress of the scanning. Up to 50% the scanner will scan the file system and just buffer the result. Times above 50% indicate that the scanner is committing the results to the database. Usually the second step is much faster than the first so don't be surprised if the progress bar seems to jump. Up to 50% aborting the scan is possible. After 50%, the committing of the files cannot be stopped.

The scanning time depends on your disk speed and other factors. Usually the first scan is a lot slower than subsequent scans where the files are cached by the operating system. A scan of 10000 files should take around three minutes on a modern computer. 50000 files should be around 13 minutes. Of course with an SSD (solid state drive) this will be much faster.

Zálohování sbírky

With the default settings Amarok is storing all the collection information in a directory called ~.kde/share/apps/amarok/mysqle/ . It can be a good idea to make a backup of this directory from time to time, especially when you didn't enable the writing back of statistics information.

Jedinečné identifikátory

Amarok is tracking files by an id that is either stored in the audio track or computed using file metadata, tag metadata and first few kilobytes of the file. This id helps Amarok to identify tracks that are moved to other locations so that statistics information (rating, score, playcount, first & last played) are not lost. Currently Amarok will not import tracks with duplicate unique ids. This leads to the surprising behavior that copied tracks still appear only once in Amarok.

In some circumstances even different tracks can end up with the same unique id. Such a problem can be seen by the debug output (start Amarok with the --debug option in a console) while scanning.

Alba

The scanner can only read single tracks but Amarok will display those sorted by album and compilation (an album without one specific artist). Amarok can't rely on the directory in which the files are located, since directory organizational schemes vary so widely.

The scanner is therefore doing the following:

  • Tracks without an album artist or an artist (or a composer in case of a classical track) are placed in a compilation.
  • Tracks that have the compilation flag set or an album artist other than "various artists" will be placed in an album.
  • Tracks that have the compilation flag set to 0 are placed in a compilation.
  • Albums called "Best Of", "Anthology", "Hit collection", "Greatest Hits", "All Time Greatest Hits" and "Live" are always regarded as an album.
  • If we end up having tracks with several different artists left over they are placed inside a compilation, or else we make one album out of them.

This process is quite complicated. However usually the outputs of the scanner can help in figuring out why the tracks are sorted as they are.

In such a case try executing (on a command line)

amarokcollectionscanner -r ~/your/music/directory

Look for "compilation" tags and tracks with different "artist" and "albumartist" tags.

You can remove the compilation tag from mp3 files with the following command:

id3v2 -r TCMP your filename here