audio-info-brainstorming: Difference between revisions
ManuSporny (talk | contribs) m (→release date) |
ManuSporny (talk | contribs) (Updating discovered elements) |
||
Line 25: | Line 25: | ||
=== artist === | === artist === | ||
Frequency: 95%+ in 91 sites | |||
The artist information was found on all pages related to audio recordings. This usually consisted of an artist name, band name, or orchestra name. This field could more loosely be described as the primary content creator. | The artist information was found on all pages related to audio recordings. This usually consisted of an artist name, band name, or orchestra name. This field could more loosely be described as the primary content creator. | ||
Line 46: | Line 48: | ||
=== title === | === title === | ||
Frequency: 94% in 91 sites | |||
The title of the album, song, speech or podcast was almost as prevalent as the artist name. This was usually a simple text value. | The title of the album, song, speech or podcast was almost as prevalent as the artist name. This was usually a simple text value. | ||
Line 58: | Line 62: | ||
=== tracks (track/song listing) === | === tracks (track/song listing) === | ||
Frequency: 85% in 91 sites | |||
Usually on a page listing an album or a podcast, a listing of tracks/songs available in the collection was detailed on the same page. | Usually on a page listing an album or a podcast, a listing of tracks/songs available in the collection was detailed on the same page. | ||
Line 101: | Line 107: | ||
=== release date === | === release date === | ||
Frequency: 75% on 91 sites | |||
A release date is usually specified for the date that the album, song, track or podcast hit the streets. This is almost always in a standard date format. | A release date is usually specified for the date that the album, song, track or podcast hit the streets. This is almost always in a standard date format. | ||
Line 106: | Line 114: | ||
==== Recommendations ==== | ==== Recommendations ==== | ||
== | The release date should probably use the already well established [[datetime-design-pattern]]. A date/time could look like the following: | ||
<pre> | |||
<abbr class="release-date" title="20051010T10:10:10-0100">October 10th, 2005</abbr> | |||
</pre> | |||
=== sample === | === sample === | ||
Frequency: 73% of 91 sites | |||
Pages often provide a URL to a sample of the audio being described on the page. The URL usually specifies a sampling stream or download URL for the sample. | |||
==== Recommendations ==== | |||
The sample/download should probably use the already well established [[rel-design-pattern]]. A sample link could look like the following: | |||
<pre> | |||
<a href="http://www.mysite.com/sample/4858372839" rel="sample">Sample URL</a> | |||
</pre> | |||
=== label/publisher === | |||
Frequency: 67% of 85 sites | |||
The label/publisher information was found on many of the pages related to audio recordings. This usually consisted of an small independent label name, large music publisher name, the same name as the artist, or other publishing/distributing entity. This field could more loosely be described as the primary content distributor. | |||
==== Recommendations ==== | |||
It is recommended that artist name be wrapped in a vcard inside a 'publisher' tag. For example: | |||
<pre> | |||
<span class="publisher fn">Green Day</span> | |||
</pre> | |||
or: | |||
<pre> | |||
<span class="publisher"> | |||
<div class="vcard"> | |||
<span class="fn">Green Day</span> (<span class="role">artist</span>) | |||
</div> | |||
</span> | |||
</pre> | |||
=== acquire === | |||
Frequency: 62% | |||
=== genre === | === genre === | ||
=== | Frequency: 59% of 91 sites | ||
The genre describes the type of music, be it blues, rock, motivational, spoken word, sound effect or any other musical, speech or audio style. | |||
==== Recommendations ==== | |||
It is recommended that the [[class-design-pattern]] be used for identifying genres. | |||
<pre> | |||
<span class="genre">Blues</span> | |||
</pre> | |||
=== length === | === length === |
Revision as of 03:46, 13 April 2007
Discussion Participants
Editors
- Manu Sporny, Bitmunk - Digital Bazaar, Inc.
Authors
- Add your name here
Purpose
The audio info microformat creates a standard method of marking up metadata and information about one or more audio recordings discussed on a web page.
Terminology
This section explores the terminology that should used to discuss an audio info microformat.
Common Terminology on Audio Websites
Recommendation
Discovered Elements
There were several elements that were identified during the discovery process as being good first-implementation candidates. They are listed below in order of popularity.
artist
Frequency: 95%+ in 91 sites
The artist information was found on all pages related to audio recordings. This usually consisted of an artist name, band name, or orchestra name. This field could more loosely be described as the primary content creator.
Recommendations
It is recommended that artist name be wrapped in a vcard inside a 'collaborator' tag. For example:
<span class="collaborator fn">Green Day</span>
or:
<span class="collaborator"> <div class="vcard"> <span class="fn">Green Day</span> (<span class="role">artist</span>) </div> </span>
title
Frequency: 94% in 91 sites
The title of the album, song, speech or podcast was almost as prevalent as the artist name. This was usually a simple text value.
Recommendations
It is recommended that the title be implemented as a simple span tag:
<span class="title">I Have A Dream</span>
tracks (track/song listing)
Frequency: 85% in 91 sites
Usually on a page listing an album or a podcast, a listing of tracks/songs available in the collection was detailed on the same page.
Recommendations
It is recommended that we not create a new collection Microformat and instead depend on nesting the same Microformat to denote collections of items.
Album example:
<div class="haudio"> <span class="title">Audio Album Name</span> by <span class="collaborator fn">Artist Name</span> <div class="haudio"> <span class="title">Track 1</span> </div> <div class="haudio"> <span class="title">Track 2</span> </div> <div class="haudio"> <span class="title">Track 3</span> </div> </div>
Podcast example:
<div class="haudio"> <span class="title">January 2007 Podcast</span> by <span class="collaborator fn">Podcaster Name</span> <div class="haudio"> <span class="collaborator fn">Artist Name 1</span> <span class="title">Track 1</span> </div> <div class="haudio"> <span class="collaborator fn">Artist Name 2</span> <span class="title">Track 2</span> </div> </div>
release date
Frequency: 75% on 91 sites
A release date is usually specified for the date that the album, song, track or podcast hit the streets. This is almost always in a standard date format.
Recommendations
The release date should probably use the already well established datetime-design-pattern. A date/time could look like the following:
<abbr class="release-date" title="20051010T10:10:10-0100">October 10th, 2005</abbr>
sample
Frequency: 73% of 91 sites
Pages often provide a URL to a sample of the audio being described on the page. The URL usually specifies a sampling stream or download URL for the sample.
Recommendations
The sample/download should probably use the already well established rel-design-pattern. A sample link could look like the following:
<a href="http://www.mysite.com/sample/4858372839" rel="sample">Sample URL</a>
label/publisher
Frequency: 67% of 85 sites
The label/publisher information was found on many of the pages related to audio recordings. This usually consisted of an small independent label name, large music publisher name, the same name as the artist, or other publishing/distributing entity. This field could more loosely be described as the primary content distributor.
Recommendations
It is recommended that artist name be wrapped in a vcard inside a 'publisher' tag. For example:
<span class="publisher fn">Green Day</span>
or:
<span class="publisher"> <div class="vcard"> <span class="fn">Green Day</span> (<span class="role">artist</span>) </div> </span>
acquire
Frequency: 62%
genre
Frequency: 59% of 91 sites
The genre describes the type of music, be it blues, rock, motivational, spoken word, sound effect or any other musical, speech or audio style.
Recommendations
It is recommended that the class-design-pattern be used for identifying genres.
<span class="genre">Blues</span>
length
price
Additional Possibilities
Possible Uses
This section describes potential applications for an audio info microformat.
Transformational Uses
It may be desirable to process an audio blog using a transformational tool, such as XSLT, to produce a different representation that can be used elsewhere - such as in a REST invocation.
Archival Uses
Being able to scrape information from a web page and store it long term may be desirable for search companies.