react-native-mov-to-mp4
react-native-mov-to-mp4 copied to clipboard
conversion is not working
following the code of the example
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',
})