0
에 액세스하는 방법을 반응 - 네이티브 오디오 툴킷을 사용하여 기본 반작용그래서 나는 다음과 같은 코드 뭔가를 기록 할 수있는 파일
let rec = new Recorder("filename.mp4").record();
// Stop recording after approximately 3 seconds
setTimeout(() => {
rec.stop((err) => {
// NOTE: In a real situation, handle possible errors here
// Play the file after recording has stopped
new Player("filename.mp4")
.play()
.on('ended',() => {
// Enable button again after playback finishes
this.setState({disabled: false});
});
});
}, 3000);
내가 할 수있는 완벽한 오디오 레코드하지만 난에 액세스하거나 삭제하거나 목록 같은 파일을 기록 할 수있는 방법 filename.mp4. 이 항목이 Android 또는 iOS에 저장된 위치는 어디입니까? 앱 또는 각 재 컴파일 등을 업데이트 할 때마다 남아있을 것입니까?