react-native-chunk-upload
react-native-chunk-upload copied to clipboard
A package to bring Chunked File Upload / Resumable File Upload into React Native. Split a large file into multiple smaller pieces then upload them without worrying about network disconnection, even if...
Hey guys, right now I'm able to upload smaller videos with no issues but when I try to upload a larger video ( >1GB ) the app crashes and says...
Thanks again for the great work here @hossein-zare I'm trying to use the lib to upload to MUX as direct upload but somehow I'm getting 400 bad request : https://docs.mux.com/guides/video/upload-files-directly#if-you-dont-want-to-use-upchunk...
Hi, my server need the index and total of chunk files, can u provide me how to do it with your library? Thanks
in \index.d.ts ``` export interface Header { "x-chunk-number": number; "x-chunk-total-number": number; "x-chunk-size": number; "x-file-name": string; "x-file-size": number; "x-file-identity": string; "custom": Object } ``` in \src\index.js ``` constructor(props) { this.data =...
Hi, Whenever I try selecting a video from gallery, I get "No file found error : onFetchBlobError" But when I record a video & upload it works fine. Any idea...
Hi, I am trying to implement this package to upload large video files to my express server, but somehow I can't read the body on my server. I wonder, if...