#created by hand by Sylvia Pfeiffer (W3C Invited Experts) for WebM example file : version 1.0
@prefix :        <http://www.w3.org/ns/ma-ont#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ma:      <http://www.w3.org/ns/ma-ont#> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

[]
      a       owl:Ontology ;
      owl:imports <http://www.w3.org/ns/ma-ont> .

<http://example.org/DougExample.webm#track=audio-1>
      a       :AudioTrack ;
      :averageBitRate 75.443 ;
      :hasCompression
              [ rdfs:label "audio/vorbis"
              ] ;
      :numberOfTracks 2 ;
      :samplingRate "48000"^^<http://www.w3.org/2001/XMLSchema#decimal> ;
      rdfs:label "track 2" .

<http://example.org/DougExample.webm>
      a       :MediaResource ;
      :copyright "CC-BY-SA" ;
      :createdIn
              [ a       :Location ;
                :locationName "Sydney, Australia"
              ] ;
      :creationDate "2009-10-08T00:00:00.00"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;
      :duration 55.488 ;
      :hasCreator
              [ rdfs:label "Web Directions South"
              ] ;
      :hasCreator
              [ rdfs:label "silviapfeiffer1@gmail.com"
              ] ;
      :hasNamedFragment <http://example.org/DougExample.webm#track=audio-1> , <http://example.org/DougExample.webm#track=video-1> , <http://example.org/DougExample.webm#chapter=introduction> , <http://example.org/DougExample.webm#chapter=twitter>;
 			:hasFragment <http://example.org/DougExample.webm#t=3.0-55.488> ,  <http://example.org/DougExample.webm#t=0-3.0> ;
      :numberOfTracks 2 ;
      :title  "W3C and Twitter" .

<http://example.org/DougExample.webm#chapter=twitter>
      a       :MediaResource ;
      =       <http://example.org/DougExample.webm#t=3.0-55.488> .
      

<http://example.org/DougExample.webm#track=video-1>
      a       :VideoTrack ;
      :averageBitRate 285.210 ;
      :frameHeight 576 ;
      :frameRate 25.0 ;
      :frameSizeUnit "pixel" ;
      :frameWidth 352 ;
      :hasCompression
              [ rdfs:label "video/theora"
              ] ;
      rdfs:label "track 1" .

<http://example.org/DougExample.webm#chapter=introduction>
      a       :MediaResource ;
      =       <http://example.org/DougExample.webm#t=0-3.0> .
 
