Amarok/Development/Nepomuk

From KDE Community Wiki
Revision as of 10:36, 10 December 2012 by Mayankmadan (talk | contribs) (Created page with "Category:Amarok Category:Development Collection of informations/ideas and so on for Nepomuk-Integration (SoC project of DanielW) == 1. Nepomuk collection == === 1.1...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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