Я использую react-native-image-picker
, чтобы получить путь к файлу видео на моем телефоне-симуляторе iOS для моего собственного приложения реакции.Как я могу использовать это для загрузки на S3 с помощью Amplify?
import ImagePicker from 'react-native-image-picker';
import RNFetchBlob from 'react-native-fetch-blob';
class App extends Component {
constructor(props) {
super(props)
this.state = {
vidFileName: '',
fileURI: '',
}
this.putFileInS3 = this.putFileInS3.bind(this);
}
pickVideo = async () => {
const options = {
mediaType: 'video'
};
ImagePicker.launchImageLibrary(options, (response) => {
console.log('Response = ', response);
this.setState({
vidFileName: response.fileName,
fileURI: response.uri,
});
this.putFileInS3();
}
}
readFile = (somefilePath) => {
return RNFetchBlob.fs.readFile(somefilePath, 'base64').then(data => new
Buffer(data, 'base64'));
}
putFileInS3 = async () =>
{
RNFetchBlob.fs.readFile(this.fileURI).then(buffer => {
Storage.put(vidFileName, buffer, { contentType: 'video/mp4' })
conole.log('successfully uploaded video to bucket');
}).catch(e => {
console.log(e);
});
}
Я пытаюсь следовать этому: https://aws -amplify.github.io / docs / js / storage ,в разделе Загрузить изображение в разделе приложения React Native.Но может я что-то пропустил?Можете ли вы помочь, пожалуйста?
Error: file:///Users/xxxxxxxxxx/Library/Developer/CoreSimulator/Devices/xxxxxxxxx/data/Containers/Data/Application/5CxxxxxxxxxxxxxC79/tmp/4xxxxxxxxxxxxxx.MOV . <-URI
App.js:130 Error: file not exists
at createErrorFromErrorData (NativeModules.js:146)
at NativeModules.js:95
at MessageQueue.__invokeCallback (MessageQueue.js:397)
at MessageQueue.js:127
at MessageQueue.__guard (MessageQueue.js:297)
at MessageQueue.invokeCallbackAndReturnFlushedQueue (MessageQueue.js:126)
at debuggerWorker.js:72