I'm trying to upload bigger video files to pinata of around 1-2GB. I'm using pinata SDK and using the pinFileToIPFS function to pin file. However, it is taking forever and ends up crashing the node server. I looked at the Pinata docs, but couldn't a way to handle large files or upload them by chunk to Pinata. Any kind of thoughts on this will be helpful. Thanks in advance
Uploading bigger files to Pinata using pinata sdk - nodejs
297 Views Asked by Arshpreet Singh At
1
There are 1 best solutions below
Related Questions in NODE.JS
- How to solve CERT_UNTRUSTED error in nodemailer
- Run a loop over a callback, node js
- Implementing prerender.io middleware in sails.js
- Token based authorization in nodejs/ExpressJs and Angular(Single Page Application)
- formatting path string in javascript
- One to One screensharing using WEBRTC
- Create polygon from grid (for collisions)
- Strange npm behavior when installing packages like grunt
- Convert JSON.gz to JSON in node js
- "Your npm version is outdated." but it's not. While install yo
- Why put methods on the prototype of a class instead of declaring them in the constructor?
- Node JS Async Response
- mongoose get property from nested schema after `group`
- Cannot Receive Incoming call on Twilio android Client
- How can I change a specific line in a file with node js?
Related Questions in FILE
- Saving FileSystemInfo Array to File
- C programming: Create and write 2D array of files as function
- How can I change a specific line in a file with node js?
- Grabbing Edits from two strings
- In Android, would it be possible to open a file in the 'values' folder and to read its content?
- Using paths bonded to a XCode project to be shared
- Why am i getting these invalid characters before my file data?
- Optimum directory structure for large number of files to display on a page
- C Reading binary file with fread()
- Renaming a File() object in JavaScript
- How to write the current time to a new line of a .txt file on php execution
- introduce c++ into html
- How can I create a simple text file on a windows phone (8.1) that can be accessed trough USB cable?
- Pop-up and download zip file in ASP.NET
- Using access() in C
Related Questions in UPLOAD
- PHP don't use temp file for upload
- Error 500 Creating default object from empty value when uploading a file
- Upload file to ftp with unique name in asp.net c#
- Media files end up in in a pycharm subdirectory when uploading
- partly upload your input from a file
- How to create file upload like gmail?
- How to Upload file onclick of button of type=button not type=submit in mvc4 using html begin form
- Add metadata (Exif) to base64
- Laravel upload Csv error
- jQuery file upload how to get number of files queued and uploaded
- How to upload an image using image url from web in javascript or jquery?
- Perl FTP uploading empty file to server
- Upload form inside Drupal block
- $_FILES is empty when upload in PHP
- Why am I missing "filename" and "Content-Type" while uploading image using form-data?
Related Questions in MULTER
- Node JS AWS S3 file upload. How to get public URL response
- how to properly configure meteor to work with node file uploading module 'multer'
- Set multer properties inside an express route
- Error handling when uploading file using multer with expressjs
- How to handle expressjs middleware request. POST request remains pending made by dropzone
- What is wrong with Nodejs?
- Passing data from server/app.js to controller Angular-fullstack + multer
- node.js multer saving file name into db
- Uploading images to S3 using NodeJS and Multer. How to upload whole file onFileUploadComplete
- How to specify destination in multer to upload images to remote server folder in node js?
- How do I get current user session when I upload/save a file using multer?
- multer array upload does not upload files, getting an empty array
- Should not allow file upload if anyone changes extension from exe to png via multer in node js application
- type error: app.use() requires middleware
- Uploading and Saving photo in express.js with multer / javascript
Related Questions in PINATA
- Error Uploading File to IPFS. I am using the pinFileToIPFS gateway
- Running npm run build produces same output
- Uncaught (in promise) AxiosError {message: 'Request failed with status code 400', name: 'AxiosError', code: 'ERR_BAD_REQUEST
- NextJS: Access to XMLHttpRequest from origin blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource
- net::ERR_SSL_PROTOCOL_ERROR uploading image to pinata
- How do i upload a folder containing metadata to pinata using a script in python-brownie?
- Is there a way to change the picture after CID is created in Pinata?
- How can I pin json to ipfs with pinata (pinJsonToIpfs method) info directory? React
- Saving uploaded file to Pinata IPFS in NodeJS
- Uploading metadata to IPFS using Pinata API for NFTs
- After I run "node index.js" instead of a link to the picture, I get only "https://gateway.pinata.cloud/ipfs/${result.IpfsHash}" without IpfsHash
- Uploading bigger files to Pinata using pinata sdk - nodejs
- S3 to IPFS from Pinata
- How can I read from S3 and then write to IPFS using Pinata?
- Unable to fetch data from Pinata (IPFS)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Super late answer here, but you could try this CLI. It tends to work better. But there is a better upload API coming down the pike soon too.
https://www.npmjs.com/package/pinata-upload-cli
If you can't use the command line for your project, check out the source code for the CLI. It uses a different request library (got) that seems more reliable that what the SDK uses.