You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error is likely related to the video which mush have both an audio and a video track. I would need to have access to the video to diagnose further.
While processing this library i got issue
Error: extractor does not contain video and/or audio tracks.
RNFetchBlob.fs.stat(fileURI) .then((stats) => { console.log('stats', stats); var inputFile = stats.path; const outputFile = RNFetchBlob.fs.dirs.DownloadDir + '/output_' + 'Hopscotch' + '.mp4'; Transcode.start() .asset({name: "A", path: inputFile, type:'AudioVideo'}) .asset({name: "B", path: inputFile, type:'AudioVideo'}) .segment(500) .track({asset: "A"}) .segment(500) .track({asset: "A", filter: "FadeOut"}) .track({asset: "B", filter: "FadeIn", seek: 750}) .segment(500) .track({asset: "B"}) .segment(500) .track({asset: "B", filter: "FadeOut"}) .track({asset: "A", filter: "FadeIn", seek: 500}) .segment(500) .track({asset: "A"}) .process("low", outputFile, (progress)=>{console.log('progress', progress);}); }).catch((err) => {console.log('error=====', err);})
The text was updated successfully, but these errors were encountered: