react-native-mov-to-mp4 icon indicating copy to clipboard operation
react-native-mov-to-mp4 copied to clipboard

conversion is not working

Open airam666 opened this issue 4 years ago • 1 comments

photo_2020-11-07_19-25-53 following the code of the example

airam666 avatar Nov 07 '20 23:11 airam666

data.path => data.uri

const data = await this.camera.recordAsync(this.state.recordOptions)
const name = data.uri.split('/').pop().replace('.mov', '')
const body = new FormData()
const uri = await MovToMp4.convertMovToMp4(data.uri, name)
body.append('video', {
     uri: 'file://' + uri,
     name: name + '.mp4',
     type: 'video/mp4',
})

pasquelin avatar Dec 12 '20 00:12 pasquelin