Amarok/Development/Nepomuk

From KDE Community Wiki

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. }