Module: Start Recording Audio - h4sh5/beef GitHub Wiki

Summary

  • Objective: start recording audio to a file
  • Authors: Mike Haworth
  • Browsers: any with Adobe Phonegap
  • Code

Internal Working

starts recording to a local file


var file_uri = "<%== @file_name %>";

m = new Media(file_uri);
m.startRecord();

Feedback