Skip to content
tkurz edited this page May 14, 2012 · 6 revisions

Sample annotation based on the video of the Salzkammergutfestival provided by Yoovis at http://connectme.at/yoovis_video1.ogv. The subtitle (SRT) track generated by CaptionTube is at http://connectme.at/yoovis_video1.srt.

Let us assume the following fragments of the video are annotated in the tool:

  1. a temporal fragment at 51s to 53s which mentions the Anti-Baby Pill (in the audio track)
  2. a spatial fragment in the top right corner (10% width and height) which shows something representative of the Salzkammergut Festwochen Gmunden (e.g. the festival logo)
  3. a temporal fragment at 132s to 144s which mentions something representative of the Landesmusikschule Gmunden (e.g. audio refers to the performance "at a local school")
  4. a spatio-temporal fragment at 138s to 141s which shows Carl Djerassi

N3 model of ontology extension of the W3C Media Ontology

@prefix ma: <http://www.w3.org/ns/ma-ont#> .
@prefix cma: <http://connectme.at/ontology#> .
@prefix oac: <http://www.openannotation.org/ns/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .

cma:explicitlyMentions rdfs:subPropertyOf cma:mentions ;
cma:implicitlyMentions rdfs:subPropertyOf cma:mentions ;
cma:explicitlyShows rdfs:subPropertyOf cma:shows ;
cma:implicitlyShows rdfs:subPropertyOf cma:shows ;

cma:mentions rdfs:subPropertyOf ma:hasKeyword .
  owl:inverseOf oac:annotates ;

cma:shows rdfs:subPropertyOf ma:hasKeyword .
  owl:inverseOf oac:annotates ;

start N3 notation of a sample media annotation

@prefix ma: <http://www.w3.org/ns/ma-ont#> .
@prefix cma: <http://connectme.at/ontology#> .
@prefix dct: <http://purl.org/dc/terms/> . 

<http://connectme.at/yoovis_video1.ogv> a ma:MediaResource;
  ma:hasSubtitling  <http://connectme.at/yoovis_video1.srt>;
  ma:hasLanguage  [ rdfs:label "de" ] ;
  ma:hasContributor  <http://www.yoovis.at>;
  ma:date  "2011-09-13"^^xsd:date;
  ma:hasRelatedLocation "27.14, 16.83"^^geo:point;
  ma:isCopyrightedBy  <http://www.yoovis.at> ;
  ma:hasPolicy  <http://creativecommons.org/licenses/...>;

  ma:hasFragment  <http://connectme.at/fragment/1>;
  ma:hasFragment  <http://connectme.at/fragment/2>;
  ma:hasFragment  <http://connectme.at/fragment/3>;
  ma:hasFragment  <http://connectme.at/fragment/4>.

<http://connectme.at/fragment/1> a ma:MediaFragment;
  ma:locator <http://connectme.at/yoovis_video1.ogv#t=51,53>;
  cma:explicitlyMentions <http://dbpedia.org/resource/AntiBaby%20Pill>.

<http://connectme.at/annotation/1> a oac:Annotation;
  oac:target <http://connectme.at/fragment/1>;
  oac:body <http://dbpedia.org/resource/AntiBaby%20Pill>;
  ma:creator <http://www.yoovis.at/imprint#me>

<http://connectme.at/fragment/2> a ma:MediaFragment;
  ma:locator <http://connectme.at/yoovis_video1.ogv#xywh=percent:90,90,75,75>;
  cma:explicitlyMentions <http://www.traunsee.at/sixcms/media.php/2801/Festwochen.jpg>.

<http://connectme.at/annotation/2> a oac:Annotation;
  oac:target <http://connectme.at/fragment/2>;
  oac:body <http://www.traunsee.at/sixcms/media.php/2801/Festwochen.jpg>;
  ma:creator <http://www.yoovis.at/imprint#me>

<http://connectme.at/fragment/3> a ma:MediaFragment;
  ma:locator <http://connectme.at/yoovis_video1.ogv#t=132,144>;
  cma:implicitlyMentions  <http://rdf.geonames.org/1742306>.

<http://connectme.at/annotation/3> a oac:Annotation;
  oac:target <http://connectme.at/fragment/3>;
  oac:body <http://rdf.geonames.org/1742306>;
  ma:creator <http://www.yoovis.at/imprint#me>

<http://connectme.at/fragment/4> a ma:MediaFragment;
  ma:locator <http://connectme.at/yoovis_video1.ogv#xywh=percent:30,20,60,50&t=138,141>;
  cma:explicitlyShows  <http://musicbrainz.org/artist/2be546845_782>.

<http://connectme.at/annotation/4> a oac:Annotation;
  oac:target <http://connectme.at/fragment/4>;
  oac:body <http://musicbrainz.org/artist/2be546845_782>;
  ma:creator <http://www.yoovis.at/imprint#me>