comparison doc/interpreter/audio.txi @ 19524:9a9b0985e508

audio documentation content and building changes * Makefile.am: removed audiodevinfo.texi, audioplayer.texi, audiorecorder.texi and audiofile.texi from the target list * audio.txi: removed the menu to access the audio documentation files and removed includes for the audio documentation files * audioplayer.m: fixed a docstring that was using an un-escaped @ symbol * module.mk: added @audioplayer and @audioplayer method functions to the file list
author Vytautas Jančauskas <unaudio@gmail.com>
date Thu, 19 Sep 2013 15:13:48 +0300
parents d24bf3fb4c09
children e36c9a2b2919
comparison
equal deleted inserted replaced
19523:776787758621 19524:9a9b0985e508
18 18
19 @c Written by Kurt Hornik <Kurt.Hornik@wu-wien.ac.at> on 1996/05/14 19 @c Written by Kurt Hornik <Kurt.Hornik@wu-wien.ac.at> on 1996/05/14
20 20
21 @node Audio Processing 21 @node Audio Processing
22 @chapter Audio Processing 22 @chapter Audio Processing
23
24 @menu
25 * Audio Device Information::
26 * Audio Player::
27 * Audio Recorder::
28 * Audio File Utilities::
29 @end menu
30 23
31 Octave provides a few functions for dealing with audio data. An audio 24 Octave provides a few functions for dealing with audio data. An audio
32 `sample' is a single output value from an A/D converter, i.e., a small 25 `sample' is a single output value from an A/D converter, i.e., a small
33 integer number (usually 8 or 16 bits), and audio data is just a series 26 integer number (usually 8 or 16 bits), and audio data is just a series
34 of such samples. It can be characterized by three parameters: the 27 of such samples. It can be characterized by three parameters: the
73 @DOCSTRING(setaudio) 66 @DOCSTRING(setaudio)
74 67
75 @DOCSTRING(wavread) 68 @DOCSTRING(wavread)
76 69
77 @DOCSTRING(wavwrite) 70 @DOCSTRING(wavwrite)
78
79 @include audiodevinfo.texi
80 @include audioplayer.texi
81 @include audiorecorder.texi
82 @include audiofile.texi