react-native-audio-api
Version:
react-native-audio-api provides system for controlling audio in React Native environment compatible with Web Audio API specification
18 lines (17 loc) • 549 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isFfmpegEnabled = isFfmpegEnabled;
var _specs = require("../specs");
/**
* Returns whether the native build includes FFmpeg.
*
* When `false`, streaming, remote URL metadata, several decode/playback paths,
* M4A concatenation, and Android non-WAV recording are unavailable. See the
* runtime flags docs for the full feature matrix.
*/
function isFfmpegEnabled() {
return _specs.NativeAudioAPIModule.isFfmpegEnabled();
}
//# sourceMappingURL=flags.js.map