Thanks for the video, helps me to understand blobs and using them. With drily written tutorials I sometimes find it hard to absorb the same info. I am learning about this, to store images in IndexDB. And to be able to get them and show them again to the user where they can download them if the need to.
Thanks a lot mate for a good explanation. That's time to add it to my playlist not to forget about those people who help everybody to be better. My OG!
Great thanks for sharing ❤️ Can you please put these JavaScript Tutorials into a playlist and number them? That would be easy to follow! Thanks again 😊
Great idea! The number of videos is growing now so I'll review them and order them thematically into playlists (also in the right order where appropriate)
It's quite hard to hide any code that is shipped to the client. If you want to hide it, run the logic on the server and hide your secret in environmental variables.
A blob URL is created from blob/file data held in memory in JavaScript. So to create a blob URL from a regular one you would need to get whatever resource is at the original URL in blob format and then create a blob URL from it. This tutorial shows you how to read a URL resource to a blob: th-cam.com/video/cP5E0b21f_Y/w-d-xo.html With the resulting blob, you can create a blob URL with the following code: const blobURL = URL.createObjectURL(blob);
Thanks for watching!
👉 More about blobs: openjavascript.info/2022/10/17/what-is-a-blob-object-in-javascript/
Thanks for the video, helps me to understand blobs and using them. With drily written tutorials I sometimes find it hard to absorb the same info.
I am learning about this, to store images in IndexDB. And to be able to get them and show them again to the user where they can download them if the need to.
Nice, wrote some code using blobs recently, didn't understand what I was doing, but now I get it. Thanks.
Thanks a lot mate for a good explanation. That's time to add it to my playlist not to forget about those people who help everybody to be better. My OG!
Thanks alot, this tutorial is great, and easy to understand!
Great thanks for sharing ❤️
Can you please put these JavaScript Tutorials into a playlist and number them? That would be easy to follow! Thanks again 😊
Great idea!
The number of videos is growing now so I'll review them and order them thematically into playlists (also in the right order where appropriate)
Thanks so much ❤️
Great tutorial. What to do if I have different types of files and want to generate blobs and blob urls?
what an incredible tutorial learnt alot. relly thankyou sir for this tutorial
You are a very cool guy!
Thank you for the lesson!
Now I know how to get images
Thanks, glad you found this useful!
Buen Tutorial, lo aplicare de seguro en algún momento, me sera de utilidad. Gracias
De nada!
Es sorprendente que útil este metodo es para trabajar con ficheros en JS.
This was fantastic 😍 thanks.
What a great video!! One question: If someone were to look at the source they would see the original URL that is being fetched, how do you hide this?
It's quite hard to hide any code that is shipped to the client. If you want to hide it, run the logic on the server and hide your secret in environmental variables.
Thanks, do you have a working example of video/mp4 blobs? Do you use MediaSource? Thanks
Great videos!👍👍👍
Thank you
Great tutorial video
Thank you!
Don't miss the exclusive interview with Binance's CEO for a glimpse into the future
hi can u make a video on how to show progressbar using fetch , i have been looking for it all over the places couldnot find any,
As a indian 🇮🇳 student : Understanding your English is hard then javascript .
😅😅
Bro *how to access an image file from my Google drive and convert it to Blob object?*
thank you very much 🙏
You are welcome!
Bro how can hide or change url or stream url to change in blob url
A blob URL is created from blob/file data held in memory in JavaScript.
So to create a blob URL from a regular one you would need to get whatever resource is at the original URL in blob format and then create a blob URL from it.
This tutorial shows you how to read a URL resource to a blob: th-cam.com/video/cP5E0b21f_Y/w-d-xo.html
With the resulting blob, you can create a blob URL with the following code:
const blobURL = URL.createObjectURL(blob);
sanks