factor/extra/id3/id3-docs.factor

18 lines
705 B
Factor
Raw Normal View History

2009-02-09 23:38:27 -05:00
! Copyright (C) 2008 Tim Wawrzynczak
! See http://factorcode.org/license.txt for BSD license.
2009-02-09 22:50:04 -05:00
USING: help.markup help.syntax sequences kernel ;
2009-02-09 23:38:27 -05:00
IN: id3
2009-02-09 22:50:04 -05:00
HELP: file-id3-tags
2009-02-09 23:38:27 -05:00
{ $values
{ "path" "a path string" }
{ "object/f" "a tuple storing ID3 metadata or f" } }
{ $description "Return a tuple containing the ID3 information parsed out of the MP3 file, or " { $link f } " if no metadata is present." } ;
2009-02-09 22:50:04 -05:00
ARTICLE: "id3" "ID3 tags"
"The " { $vocab-link "id3" } " vocabulary contains words for parsing " { $emphasis "ID3" } " tags, which are textual fields storing an MP3's title, artist, and other metadata." $nl
"Parsing ID3 tags from an MP3 file:"
{ $subsection file-id3-tags } ;
2009-02-09 22:50:04 -05:00
ABOUT: "id3"