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에 저장된 위치는 어디입니까? 앱 또는 각 재 컴파일 등을 업데이트 할 때마다 남아있을 것입니까?

답변

0

react-native-audio-toolkit documentation에 따르면 fsPath 속성으로 parth 파일을 가져올 수 있습니다.

fsPath - 문자열 (읽기 전용)

파일의 파일 시스템 경로에 기록되는하기. 이후에 사용 가능 prepare() 호출이 해당 콜백을 성공적으로 호출했습니다.