audio.loader docs

release
Joe Groff 2010-01-25 20:12:22 -08:00
parent 1da5fe002e
commit 9e1f2f422f
5 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1 @@
Joe Groff

View File

@ -0,0 +1 @@
Audio playback engine

View File

@ -0,0 +1 @@
Joe Groff

View File

@ -0,0 +1,36 @@
! (c)2010 Joe Groff bsd license
USING: audio help.markup help.syntax kernel quotations strings ;
IN: audio.loader
HELP: read-audio
{ $values
{ "path" "a pathname string" }
{ "audio" audio }
}
{ $description "Reads the audio data from the file on disk named " { $snippet "path" } ", saving the data in an " { $link audio } " object. If the file's extension is not recognized, an " { $link unknown-audio-extension } " error is thrown." } ;
HELP: register-audio-extension
{ $values
{ "extension" string } { "quot" quotation }
}
{ $description "Registers a quotation for " { $link read-audio } " to use when reading audio files with filenames ending in " { $snippet ".extension" } ". The quotation should have the effect " { $snippet "( path -- audio )" } ", where " { $snippet "path" } " is the file's pathname and " { $snippet "audio" } " is the resulting " { $link audio } " object." } ;
HELP: unknown-audio-extension
{ $values
{ "extension" string }
}
{ $description "Errors of this class are thrown by " { $link read-audio } " when it cannot recognize the extension of the file it is given to open." } ;
ARTICLE: "audio.loader" "Audio file loader"
"The " { $vocab-link "audio.loader" } " vocabulary provides words for reading uncompressed PCM data from files on disk."
{ $subsections
read-audio
}
"Other vocabularies can extend " { $link read-audio } " by adding support for other audio file formats."
{ $subsections
register-audio-extension
unknown-audio-extension
}
"By default, " { $snippet "audio.loader" } " supports WAV (with the file extension " { $snippet ".wav" } ") and AIFF (with extension " { $snippet ".aif" } " or " { $snippet ".aiff" } ")." ;
ABOUT: "audio.loader"

View File

@ -0,0 +1 @@
Read PCM audio data from uncompressed audio files