You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
4.5KB

  1. <HTML>
  2. <HEAD>
  3. <TITLE>The RtAudio Home Page</TITLE>
  4. <LINK HREF="doxygen.css" REL="stylesheet" TYPE="text/css">
  5. <LINK REL="SHORTCUT ICON" HREF="http://www.music.mcgill.ca/~gary/favicon.ico">
  6. </HEAD>
  7. <BODY BGCOLOR="#FFFFFF">
  8. <CENTER>
  9. <a class="qindex" href="index.html">Home</a> &nbsp; <a class="qindex" href="annotated.html">Class/Enum List</a> &nbsp; <a class="qindex" href="files.html">File List</a> &nbsp; <a class="qindex" href="functions.html">Compound Members</a> &nbsp; </CENTER>
  10. <HR>
  11. <!-- Generated by Doxygen 1.4.4 -->
  12. <h1><a class="anchor" name="recording">Recording</a></h1>Using <a class="el" href="classRtAudio.html">RtAudio</a> for audio input is almost identical to the way it is used for playback. Here's the blocking playback example rewritten for recording:<p>
  13. <div class="fragment"><pre class="fragment"><span class="preprocessor">#include "<a class="code" href="RtAudio_8h.html">RtAudio.h</a>"</span>
  14. <span class="preprocessor">#include &lt;iostream&gt;</span>
  15. <span class="keywordtype">int</span> record( <span class="keywordtype">void</span> *outputBuffer, <span class="keywordtype">void</span> *inputBuffer, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> nBufferFrames,
  16. <span class="keywordtype">double</span> streamTime, <a class="code" href="RtAudio_8h.html#a12">RtAudioStreamStatus</a> status, <span class="keywordtype">void</span> *userData )
  17. {
  18. <span class="keywordflow">if</span> ( status )
  19. std::cout &lt;&lt; <span class="stringliteral">"Stream overflow detected!"</span> &lt;&lt; std::endl;
  20. <span class="comment">// Do something with the data in the "inputBuffer" buffer.</span>
  21. <span class="keywordflow">return</span> 0;
  22. }
  23. <span class="keywordtype">int</span> main()
  24. {
  25. <a class="code" href="classRtAudio.html">RtAudio</a> adc;
  26. <span class="keywordflow">if</span> ( adc.<a class="code" href="classRtAudio.html#a3">getDeviceCount</a>() &lt; 1 ) {
  27. std::cout &lt;&lt; <span class="stringliteral">"\nNo audio devices found!\n"</span>;
  28. exit( 0 );
  29. }
  30. <a class="code" href="structRtAudio_1_1StreamParameters.html">RtAudio::StreamParameters</a> parameters;
  31. parameters.<a class="code" href="structRtAudio_1_1StreamParameters.html#o0">deviceId</a> = adc.<a class="code" href="classRtAudio.html#a6">getDefaultInputDevice</a>();
  32. parameters.<a class="code" href="structRtAudio_1_1StreamParameters.html#o1">nChannels</a> = 2;
  33. parameters.<a class="code" href="structRtAudio_1_1StreamParameters.html#o2">firstChannel</a> = 0;
  34. <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> sampleRate = 44100;
  35. <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> bufferFrames = 256; <span class="comment">// 256 sample frames</span>
  36. <span class="keywordflow">try</span> {
  37. adc.<a class="code" href="classRtAudio.html#a7">openStream</a>( NULL, &amp;parameters, RTAUDIO_SINT16,
  38. sampleRate, &amp;bufferFrames, &amp;record );
  39. adc.<a class="code" href="classRtAudio.html#a9">startStream</a>();
  40. }
  41. <span class="keywordflow">catch</span> ( <a class="code" href="classRtError.html">RtError</a>&amp; e ) {
  42. e.<a class="code" href="classRtError.html#a2">printMessage</a>();
  43. exit( 0 );
  44. }
  45. <span class="keywordtype">char</span> input;
  46. std::cout &lt;&lt; <span class="stringliteral">"\nRecording ... press &lt;enter&gt; to quit.\n"</span>;
  47. std::cin.get( input );
  48. <span class="keywordflow">try</span> {
  49. <span class="comment">// Stop the stream</span>
  50. adc.<a class="code" href="classRtAudio.html#a10">stopStream</a>();
  51. }
  52. <span class="keywordflow">catch</span> (<a class="code" href="classRtError.html">RtError</a>&amp; e) {
  53. e.<a class="code" href="classRtError.html#a2">printMessage</a>();
  54. }
  55. <span class="keywordflow">if</span> ( adc.<a class="code" href="classRtAudio.html#a12">isStreamOpen</a>() ) adc.<a class="code" href="classRtAudio.html#a8">closeStream</a>();
  56. <span class="keywordflow">return</span> 0;
  57. }
  58. </pre></div><p>
  59. In this example, we pass the address of the stream parameter structure as the second argument of the <a class="el" href="classRtAudio.html#a7">RtAudio::openStream()</a> function and pass a NULL value for the output stream parameters. In this example, the <em>record()</em> callback function performs no specific operations. <HR>
  60. <table><tr><td><img src="../images/mcgill.gif" width=165></td>
  61. <td>&copy;2001-2007 Gary P. Scavone, McGill University. All Rights Reserved.<br>Maintained by <a href="http://www.music.mcgill.ca/~gary/">Gary P. Scavone</a>.</td></tr>
  62. </table>
  63. </BODY>
  64. </HTML>