Changes between Initial Version and Version 1 of MP3Importer


Ignore:
Timestamp:
07/09/08 15:19:30 (16 years ago)
Author:
fmittag
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MP3Importer

    v1 v1  
     1The MP3Importer is (supposed to) be a minor tool, that fills the users database with Song and Artist items from his MP3 music collection. Since this is not the core topic of the diploma thesis, it is not possible to spend much time on metadata checking. 
     2 
     3== Working principle == 
     4 
     5It is assumed that all mp3s are annotated correctly before there are imported. 
     6 
     7For each mp3 file do: 
     8 
     9 1. Check if this file has been imported already[[BR]] 
     10    To speed things up, common indexing techniques like in filesharing applications are used. For each file, its complete and canonical path and name is stored along with its date of last modification. At first, I wanted to store these information along with other information about the mp3 file using the skipmedia ontology, but there are some problems: 
     11  * privacy concerns - the path to the file would be shared among all contacts, which might be a problem to some people 
     12  * storage space - the file path and last modification date are to no use of other people than me, so this would increase the transfered data without use 
     13  * computation problems - the path and last modification date are stored as normal RDF properties for simplicity reasons, but when mixed up with the data of other users, extra checking has to be done to ignore files from other users.