]> Creatis software - CreaPhase.git/blob - octave_packages/m/audio/record.m
update packages
[CreaPhase.git] / octave_packages / m / audio / record.m
1 ## Copyright (C) 1995-2012 John W. Eaton
2 ##
3 ## This file is part of Octave.
4 ##
5 ## Octave is free software; you can redistribute it and/or modify it
6 ## under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 3 of the License, or (at
8 ## your option) any later version.
9 ##
10 ## Octave is distributed in the hope that it will be useful, but
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 ## General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with Octave; see the file COPYING.  If not, see
17 ## <http://www.gnu.org/licenses/>.
18
19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {} record (@var{sec}, @var{sampling_rate})
21 ## Record @var{sec} seconds of audio input into the vector @var{x}.  The
22 ## default value for @var{sampling_rate} is 8000 samples per second, or
23 ## 8kHz.  The program waits until the user types @key{RET} and then
24 ## immediately starts to record.
25 ## @seealso{lin2mu, mu2lin, loadaudio, saveaudio, playaudio, setaudio}
26 ## @end deftypefn
27
28 ## Author: AW <Andreas.Weingessel@ci.tuwien.ac.at>
29 ## Created: 19 September 1994
30 ## Adapted-By: jwe
31
32 function X = record (sec, sampling_rate)
33
34   if (nargin == 1)
35     sampling_rate = 8000;
36   elseif (nargin != 2)
37     print_usage ();
38   endif
39
40   unwind_protect
41
42     file = tmpnam ();
43
44     input ("Please hit ENTER and speak afterwards!\n", 1);
45
46     cmd = sprintf ("dd if=/dev/dsp of=\"%s\" bs=%d count=%d",
47                    file, sampling_rate, sec);
48
49     system (cmd);
50
51     num = fopen (file, "rb");
52
53     [Y, c] = fread (num, sampling_rate * sec, "uchar");
54
55     fclose (num);
56
57   unwind_protect_cleanup
58
59     unlink (file);
60
61   end_unwind_protect
62
63   X = Y - 127;
64
65 endfunction