Amarok/Development/Nepomuk

From KDE Community Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Collection of informations/ideas and so on for Nepomuk-Integration (SoC project of DanielW)


1. Nepomuk collection

1.1 Data coming from Strigi

Strigi is using XESAM ontologies

artist
<http://freedesktop.org/standards/xesam/1.0/core#artist>
genre id
<http://freedesktop.org/standards/xesam/1.0/core#genre>
title
<http://freedesktop.org/standards/xesam/1.0/core#title>
album title
<http://freedesktop.org/standards/xesam/1.0/core#album>
track nr
<http://freedesktop.org/standards/xesam/1.0/core#trackNumber>

That is only enough for very basic collection view.

Some SPARQL querys on it:

All albums with there artist
select distinct ?artist ?album where { ?r <http://freedesktop.org/standards/xesam/1.0/core#artist> ?artist. ?r <http://freedesktop.org/standards/xesam/1.0/core#album> ?album. }