Can I Convert Youtube Into A Cloud Storage Service?

Поделиться
HTML-код
  • Опубликовано: 28 сен 2024
  • I'm sure by this point nobody can manage with that measly 15 gigs default limit on Google Drive. And I'm even more sure nobody is willing to donate their hard-earned cash to the Google overlords, myself included.
    So I came up with the idea of using this seemingly unlimited Cloud Storage Service masterfully disguised as a video sharing website to remotely store whatever files my heart desires at virtually no cost (except for my sanity).
    Kick back and enjoy the ride, and make sure you don't snitch, cuz if they're coming for me, I'm taking you as well (this is a better Roko's basilisk dare I say).
    Also, special thanks to Github user karaketir16, as when I was researching how to implement the encoder and decoder I did as any programmer would and took inspiration from his work.
    Github repo: As to not get smitten by the RUclips overlords due to the potentially malicious nature of the project, the source code will not be available.

Комментарии • 221

  • @kubixis4786
    @kubixis4786 9 месяцев назад +291

    This is what happens when you let the shower thoughts win.

    • @icitry
      @icitry  9 месяцев назад +50

      How dare you say something that perfectly describes my entire existence so casually

    • @j_r_-
      @j_r_- 8 месяцев назад +3

      @@icitry Can you release the QR code encode and decode code?

  • @HomeofLawboy
    @HomeofLawboy 9 месяцев назад +9

    This is waaaay too high quality for a channel this small. This channel better blow up in the next few months or im asking for my money back

    • @icitry
      @icitry  9 месяцев назад +2

      😅 Thank you so much for the words of encouragement! Also hey, you can buy low rn and sell high later

  • @zraphy-veo5551
    @zraphy-veo5551 9 месяцев назад +133

    I clicked on the video thinking you're some relatively well known coding youtuber... I finished watching the video and I loved it all, then I got out of full-screen, and man... What on earth?? How do you have less than a hundred subs?? My guy the production of such entertaining content really deserves sooooo much more attention. I dropped a like and a sub, hoping you grow larger in the future. Much love.

    • @icitry
      @icitry  9 месяцев назад +14

      That makes me so incredibly happy to hear! I can't even begin to thank you for such kind words, they mean so very much to me ❤️ I'm glad I could create something you could enjoy to this level 😁

    • @dogedev12
      @dogedev12 9 месяцев назад +2

      Same! :)

    • @zraphy-veo5551
      @zraphy-veo5551 9 месяцев назад +2

      @icitry
      Awh. I'm glad my review meant something.
      I would recommend opening up a social platform to form a smaller community. Like discord.
      I believe it would help forming a community around the channel where people may discuss parts of your code more in depth. It may also help growing.
      Once again, great content, lots of creativity in it. Love it.

    • @icitry
      @icitry  9 месяцев назад +1

      Huh, that didn't even cross my mind, I'll definitely look into it! Thank you so much 😊

    • @atlantic_love
      @atlantic_love 8 месяцев назад

      🙄

  • @trononly
    @trononly 9 месяцев назад +7

    Wow thank you algorithm for showing me this video, someone make it so I can come back to this video every time and remember this youtuber exists, this is so good

    • @icitry
      @icitry  9 месяцев назад +4

      And thank you so much for giving it a chance and for the incredibly kind words! ❤

    • @bobDotJS
      @bobDotJS 8 месяцев назад

      My thoughts exactly. This was excellent

  • @amolven
    @amolven 10 месяцев назад +21

    Wow! This is amazing! Seems like you put in a lot of work but glad it paid off.

    • @icitry
      @icitry  10 месяцев назад +2

      Haha wow it's truly amazing to hear that 😄 And if you have any suggestions / improvement ideas / nit-picks, I'm very open to them, given how I'm still figuring stuff out 😅

  • @igorordecha
    @igorordecha 9 месяцев назад +24

    I feel like this is peak reinventing the wheel. It's not about the core idea though, the idea is great. It's about the implementation.
    Here's a few suggestions (feel free to completely ignore them lol):
    - pls avoid webscraping as much as possible if there's a free, working API for the same thing you want to do (AND THERE IS). Google let's you manage(upload, list, edit download) your entire RUclips channel with their APIs. They even made a wrapper libs for most languages so they can be used even more easily.
    - follow up to the previous suggestion: the whole problem you had with account sessions is completely solvable with OAuth. Just generate a key and out it in an env var or config file.
    - don't reinvent the gnu coreutils. Instead, create something that can be mounted as a file system and used with your preferred file management method (commands or a file explorer GUI or anything else). If I were to do this I would -steal- get inspired with *one of* simple S3 server implementations(or WebDAV or FTP or something else. I think S3 is the simplest though) in your preferred language and JUST focus on the CRUD of files (of course using RUclips APIs). So you'd just replace their createFile function body with your logic and you're done. Then when you have a working S3 server you can either use it in your other apps or mount it as a network drive and just interact with your files in your file explorer.
    You spent most of this video doing things completely unrelated to the title (storing files on RUclips). Instead you should've just used all those existing tools and protocols that people before you made and just do one thing that actually matters right and that's converting a file to a video that RUclips can't destroy with their compression. Dont make your own (worse) cd and ls commands unless you know how to improve them.

    • @icitry
      @icitry  9 месяцев назад +16

      Oh wow, thanks so much for taking the time to write this out! 😄 But the thing is I kinda wanted to reinvent the wheel (also why I wanted the focus of the video to be the whole cloud system, not just the file conversion) - sure if I were to make a production grade solution I'd go with tried and tested solutions, buut where's the fun in that if I can fool around yk? 😅 Also, some counter points - the RUclips API may be free by default, but you still have maximum daily quotas, I wanted to see if I could get a fully free implementation going; and the generating of an OAuth key is a great idea, but not what I was going for, I wanted to have the user do as little as possible, and (totally imaginary challenge) if someone wanted to use this as-is, I wouldn't want to be sharing secrets or have them generate others (maybe I should've been more clear with that intent). But the implementation definitely has a lot of holes, and your suggestions are more than welcome and closer to what should be done in a production app, so thank you very much for the feedback! 😊

    • @matthewboyer4212
      @matthewboyer4212 8 месяцев назад +3

      agreed, web scraping bad if there's a free api

    • @flintfrommother3gaming
      @flintfrommother3gaming 8 месяцев назад

      Shit like ByteDance does webscraping, why shouldn't we when the bandwidth used is nearly zero to none?

    • @igorordecha
      @igorordecha 8 месяцев назад +3

      @@flintfrommother3gaming I didn't say webscraping was bad morally. Its slower and a lot less reliable than a single API call so when if you have an alternative (and you do, RUclips has a free public API), don't use web scraping

    • @turolretar
      @turolretar 8 месяцев назад

      reinventing the wheel is what I do daily, I’m a reinventor of sorts. I thought I’d mention

  • @HassanAli-b2o
    @HassanAli-b2o 9 месяцев назад +3

    That's what I made yesterday but it doesn't work with youtube compression. (did't bother to fix it)
    I thought I was a mastermind or something and I realised at 3am of night that I re-invented the wheel (after looking at a repo at github). I went back to sleep with tear in my eye XD.
    I am not the only one. You got a sub!

    • @icitry
      @icitry  9 месяцев назад +3

      At this point it's 100% a matter of luck on whether you end up reinventing the wheel or not, but hey at least we did something 😄

  • @valkryst
    @valkryst 8 месяцев назад +6

    I've seen a few implementations/videos on this topic, since we worked on this a few years ago on 4chan. Most of them reimplement what we had already developed, but your route of generating and uploading the frames VIA the API is a new take (at least to me) on the solution. This could alleviate the storage issues we ran into, where generated videos are around ~2x+ larger than the input file(s). If I ever get around to testing it, and if it works well enough, would you be fine with me using your idea in Schillsaver?

    • @icitry
      @icitry  8 месяцев назад +1

      Definitely, I intend for all the ideas/code/solutions I present in my videos to be open for anyone to use as they please, have fun! 😄

  • @KeyYUV
    @KeyYUV 8 месяцев назад +24

    Great video. You can definitely experiment with data density of the QR code. You can try different block sizes as VP9 divides frames anywhere from 64x64 down to 4x4. Also increase quantization from 1 bit to maybe 4-6. Perhaps you can even get away with using the full 8 bits if you include some ECC. Though I wouldn't recommend using all 3 channels of a pixel as chroma is more heavily compressed than luma. Though increasing bits per block may cause the data to be more susceptible to temporal artifacts. Duplicating frames can fix it but it's gonna be a balancing act. To further increase density, you can utilize the audio track with the same method except in 1D.

    • @icitry
      @icitry  8 месяцев назад +8

      Oh wow those are some incredibly neat suggestions, I have to actually go and search some bits up to make full sense of them 😅 - you seem way more knowledgeable in this area than me so big props and thank you a lot for taking the time to give such thorough solutions! 😊

    • @yxyk-fr
      @yxyk-fr 8 месяцев назад +1

      @@icitry polychromatic QR codes are a thing. As Kay noted : the density will be lower, so maybe you'll need to apply some colorspace transforms such that you allocate like 2x density on luma and 1x on each chroma.
      YAY ENTROPY!!!!

    • @ArnaldurBjarnason
      @ArnaldurBjarnason 8 месяцев назад +3

      I was expecting this to be the core of the video. After watching it I see why it wasn't.
      Just setting up the logistics of a virtual filesystem on youtube was obviously a big enough project.

    • @EvenTheDogAgrees
      @EvenTheDogAgrees 8 месяцев назад +1

      Using the audio track does not increase density. A silent video is not a video with imagery accompanied by a full-length silent audio track. The audio track is simply absent, and therefore takes up zero space.

    • @yxyk-fr
      @yxyk-fr 8 месяцев назад

      @@EvenTheDogAgrees you could encode a kilobyte or two per second in the audio track if you are very careful :-) a few hundred bytes, maybe metadata ?

  • @numero7mojeangering
    @numero7mojeangering 8 месяцев назад +3

    You can also store data using sound as demonstrated with ggwave.

    • @icitry
      @icitry  8 месяцев назад

      Great point! It would considerably reduce the necessary file size

    • @numero7mojeangering
      @numero7mojeangering 8 месяцев назад

      @@icitry looking forward what you'll make next, see ya 👍

    • @icitry
      @icitry  8 месяцев назад

      Awesome, see ya! 😄

  • @Sand926e1
    @Sand926e1 9 месяцев назад +10

    I have a strong feeling your channel will take off with this type of content. 54th sub ✅️ Keep it up!

    • @icitry
      @icitry  9 месяцев назад

      So glad to have you here! Thank you so much for the encouraging words 😊

    • @MappingRobloxAnimations
      @MappingRobloxAnimations 9 месяцев назад

      87th sub

    • @snork_games
      @snork_games 8 месяцев назад

      771st

  • @dumbuz
    @dumbuz 9 месяцев назад +2

    How many QR codes can you reliably fit in a frame? Definitely more than 1.

    • @icitry
      @icitry  9 месяцев назад +2

      Oh that's a great idea. From what I know it would be something like 2-300 under perfect conditions for a 1080p frame, although I'm not sure how much compression would affect this. But even using something like 50 is an incredible improvement - nice catch!

  • @sluge1
    @sluge1 8 месяцев назад

    Nice work. The only option is to use your own qr code format, at least without orientation squares

    • @icitry
      @icitry  8 месяцев назад +1

      Thanks! Yep, people have also been suggesting using multiple codes in a single frame and making use of a format that stores more data like JAB codes - which, when cumulated I guess pretty much ends up as a custom qr code format 😅

  • @Avighna
    @Avighna 9 месяцев назад +4

    Nice video; what did the video file size to inital file size ratio end up being?

    • @icitry
      @icitry  9 месяцев назад +2

      Glad you enjoyed it! From the limited tests I've done it seems to be around 40:1, so at most you could have file chunks of 6.4gb, as the biggest allowed video size to upload is 256gb. But this is all theoretical, we would never abuse RUclips like this.. 🤐

    • @Avighna
      @Avighna 9 месяцев назад +1

      @@icitry Haha, I see, that is pretty big. But yeah, fun experiment

    • @icitry
      @icitry  9 месяцев назад +2

      Oh, yea it's definitely not the most practical thing. Otherwise I'd already be hearing knocking on my door 😄

  • @pnv28_main
    @pnv28_main 8 месяцев назад +1

    Just found the video. Thought it was of the same guy who made the discord storage solution,then I realized u r not him. But loved.ur content. Defo subscribing and liking

    • @icitry
      @icitry  8 месяцев назад

      Thank you so much! 😊

  • @mbg8733
    @mbg8733 8 месяцев назад

    I've seen another person do something similar, but their solution ot the compression problem was just to make the pixels of data bigger until they weren't affected by compression. I do think your solution was more elegant as it uses an already developed system, meaning you can reuse already optimized code and such.

  • @ThatSmilingTophat
    @ThatSmilingTophat 9 месяцев назад +3

    Man, you're really underrated. I really enjoyed this, though I don't know much about Python lol. You've got a like and a sub from me!

    • @icitry
      @icitry  9 месяцев назад +2

      I'm really glad to hear that, thank you so much for the kind words! 😁

    • @ThatSmilingTophat
      @ThatSmilingTophat 9 месяцев назад +2

      @@icitry 🙂

  • @yxyk-fr
    @yxyk-fr 8 месяцев назад

    Oh my you got my headgears spinning again...
    - using Treillis encoding/decoding of a bytestream, or even some kind of OFDM by splitting the screen in 6*4 zones (for luma) and 3*2 zones for chroma(s) and multiplexing/interleaving each field
    - then of course some Reed-Solomon for good measure
    - Send 3 identical frames and sample the 3rd one so the decompressor has time to settle the fine details
    Of course the Shannon limit (entropy) cannot be exceeded, but this raises another question and makes it interesting to move to the spectral encoding space, which is a totally different beast than QR codes, which have a very high high-frequency (hence entropy, hence loss) component.
    Try playing with 2D Fourier transforms (or even 3D !) so you can encode more bits per pixel !

    • @icitry
      @icitry  8 месяцев назад +1

      Oh I can definitely tell they're spinning 😄 But you seem so knowledgeable in the field I can only thank you for taking the time to share such interesting and advanced ideas - now I have to go and study up on all the pointers you gave 😅

    • @yxyk-fr
      @yxyk-fr 8 месяцев назад

      @@icitry enjoy the discoveries !
      and try to learn how each CODEC works : they mostly start with a space-frequency transform, this is how you will lose the leas bandwidth.
      QR codes have very strong boundaries so a lot of lost high frequency contents, which is lost encoding space.
      So start with your data, encode it with some time-to-frequency ("generation") algorithm, allocate a certain number of bits per frequency bin, more bits for lower frequency...
      The DCT is used in JPEG for example and it's a "composable" transform : you apply it in horizontal then vertical and it makes a 2D transform. Apply this for R, G and B with varying bit allocations and spectra.
      Then you apply the transform in reverse (after temporal and spacial subsampling to reduce the CODEC's artefacts) to recover the approximate values encoded in the spectrum, you requantize and there you can apply your ECC/Reed Solomon to remove the remaining noise.
      And while I write about this broad outline, I now think of something else and ... OMG.
      Anyway, have a look at wavelets, they are not too hard to code.
      FFT is a bit pedantic but it's simple and explained in many textbooks..
      Now remember that modern CODECs use overlapping windows so if you have strong changes from one bloc to another, you'll get "ringing" (smoothing) and loss of information.
      Yeah compression and encoding is one old hobby... I starting by trying to losslessly compress sounds 😀

  • @secRaphyTwin
    @secRaphyTwin 9 месяцев назад +2

    ur cutting is way to funny 😂🤣🤣😂

    • @icitry
      @icitry  9 месяцев назад +1

      Well that's certainly something when taken out of context.. but thanks, glad you liked it! 😄

  • @harleyspeedthrust4013
    @harleyspeedthrust4013 8 месяцев назад +1

    why is tim whatley in the thumbnail?

    • @icitry
      @icitry  8 месяцев назад

      Hal was missing that day so I had to make do

  • @finntjomstol9364
    @finntjomstol9364 8 месяцев назад

    1:00 I love it first video I’ve seen and immediately sub earned

    • @icitry
      @icitry  8 месяцев назад

      Aww thank you so much, I'm glad to hear you enjoyed it!

  • @davranbekrozmetov9425
    @davranbekrozmetov9425 8 месяцев назад +2

    This guy is destined to be some great RUclipsr. Who knows, if he becomes like the next code bullet we might get even 3 videos a year lol

    • @icitry
      @icitry  8 месяцев назад

      Thank you so much for the encouraging words! Also I'll try my best to overcome that nigh-impossible target 😄

  • @wesk612
    @wesk612 8 месяцев назад

    Ok, now hear me out. I don't quite know how data storage works, but what if you stored data through Captions/Transcript? Or even better, the comments? I bet (from a person who knows little about data storage) that this could definitely store way more than the limit of google drive with a combination of these two and QR codes.
    Also, nice vid! Hope this blows up :)

    • @icitry
      @icitry  8 месяцев назад +1

      You could use captions for a bit of extra storage, but they are limited in capacity. As for the comments, you could fragment the data I suppose, but I don't know if reconstructing and/or updating it is worth it from a cost perspective, although it could be further investigated. Someone said to use the comments as a way of logging changes which I found really clever

  • @piku007
    @piku007 8 месяцев назад

    Nice editing bro

    • @icitry
      @icitry  8 месяцев назад

      Thank you! 😄

  • @hariranormal5584
    @hariranormal5584 8 месяцев назад

    Is there a simple way for dumb people like me to store files in youtube? I remember seeing those project videos showing how to do it but I don't know how to use it

  • @Tabbytoffee
    @Tabbytoffee 8 месяцев назад

    Reminds me of when I spent weeks manually recovering my corrupted images because I didn't want to spend £9 on some software!

    • @icitry
      @icitry  8 месяцев назад +1

      I'm glad to know there are others like me out there that take the hard route just so they don't have to pay even the slightest amount. 😄 But big props for going through with that!

  • @922tommyhihidiu
    @922tommyhihidiu 8 месяцев назад +1

    may I know why not just use the youtube api instead of webdriver to upload and download?

    • @icitry
      @icitry  8 месяцев назад

      I wanted to see if I could have a completely free solution, as the YT API has a maximum daily quota

  • @Tagraff
    @Tagraff 8 месяцев назад

    I had fun with treating gmail as a cloud storage from a long time ago.

    • @icitry
      @icitry  8 месяцев назад

      Hell yeah, that's what we're supposed to do with these big corpos' products

  • @tutacat
    @tutacat 4 месяца назад

    Or just store raw data in pixels (or bigger), like "infinite storage glitch"

  • @69k_gold
    @69k_gold 8 месяцев назад

    It's a tradeoff between speed and capacity, I presume

    • @icitry
      @icitry  8 месяцев назад

      Something like that, yeah

  • @Ghi102
    @Ghi102 8 месяцев назад

    Isn't the RUclips compression lossy? As in, you couldn't store 1920x1080 bits of information per frame because RUclips would probably distort it? I guess the QR codes are big enough for it not to matter

    • @icitry
      @icitry  8 месяцев назад

      Yup, pretty much

  • @ByteBeacon9660
    @ByteBeacon9660 9 месяцев назад +1

    You seem to be quite adept at coding. How many years of experience do you have?

    • @icitry
      @icitry  9 месяцев назад

      Hmm, I think somewhere between 4 and 5 years. Started around 11th/12th grade in highschool

  • @codewithzi-5817
    @codewithzi-5817 8 месяцев назад

    Why RUclips recommend this video after they recommend me watching "Storing Files in Minecraft" 🤣

    • @icitry
      @icitry  8 месяцев назад

      😄 They know the people yearn for free storage

  • @TrueLifeRetelling
    @TrueLifeRetelling 9 месяцев назад +2

    104th Sub

    • @icitry
      @icitry  9 месяцев назад

      Glad to have you here!

  • @reynoldskynaston9529
    @reynoldskynaston9529 8 месяцев назад

    I guarantee I could make a compression algorithm that would destroy a QR code

    • @icitry
      @icitry  8 месяцев назад

      Just don't let YT get their hands on it and we're gucci 😉

  • @Kyermike
    @Kyermike 8 месяцев назад

    you could make each pixel a color and each color refers to 9 bits 011,010,100

    • @icitry
      @icitry  8 месяцев назад

      That would be ideal.. if there wasn't any compression on the video files 😅

    • @Kyermike
      @Kyermike 8 месяцев назад

      wait youtube compresses 1080p and 720p videos???
      @@icitry

    • @icitry
      @icitry  8 месяцев назад

      @Kyermike Yep, any type of video is compressed on most online platforms. It saves tremendous amounts of storage and by extension makes playing videos faster while not being noticeable in most scenarios

  • @replikvltyoutube3727
    @replikvltyoutube3727 8 месяцев назад

    Any other services allowing similar upload, like Facebook?

  • @wrathofainz
    @wrathofainz 8 месяцев назад

    **subscribing noises**

    • @icitry
      @icitry  8 месяцев назад

      **happiness + thanking noises**

  • @Wojtek_1777
    @Wojtek_1777 8 месяцев назад +1

    Remember me when your famous im your 702 sub

    • @icitry
      @icitry  8 месяцев назад

      😄 Ofc I will, but really - thank you!

  • @JoaoGuilhermePan
    @JoaoGuilhermePan 8 месяцев назад

    Ok ok ok, WHAT IF you upload a movie in this format so they can't block it for copyright? 👀

    • @icitry
      @icitry  8 месяцев назад +1

      Hold up, you may be onto something 🤔

  • @Aranyuh
    @Aranyuh 9 месяцев назад +1

    Where u from? U sound familiar

    • @icitry
      @icitry  9 месяцев назад

      Probably just a coincidence, this channel is the first time I'm ever posting my voice online 😁

    • @Aranyuh
      @Aranyuh 9 месяцев назад

      @@icitry where u from though?

    • @icitry
      @icitry  9 месяцев назад

      Sorry, I'd prefer to keep stuff like that private.

    • @Aranyuh
      @Aranyuh 9 месяцев назад

      @@icitry just your country bro...

  • @wherehaveigone
    @wherehaveigone 9 месяцев назад +1

    good, now install arch

    • @icitry
      @icitry  9 месяцев назад

      Sorry, I'm not that brave yet 😔

  • @babywillyoushowyourbones
    @babywillyoushowyourbones 9 месяцев назад +1

    gonna upload the entirety of half life onto youtube :fire:

    • @icitry
      @icitry  9 месяцев назад +1

      Didn't even cross my mind smh my head.. But watch out, the Law states Doom must be first in line

  • @rompevuevitos222
    @rompevuevitos222 8 месяцев назад +42

    Reminder: RUclips reserves the right to delete channels at will, without warnings or strikes.
    Many channels have been deleted in the past for using up too much space and having little to no views.

    • @derpz_
      @derpz_ 8 месяцев назад +1

      Makes sense from a business point of view

    • @GeneralLDS
      @GeneralLDS 8 месяцев назад +7

      the solution is to simply make sure the videos have enough views

    • @land-man
      @land-man 8 месяцев назад

      @@GeneralLDS Jup, but I think no one wants to spend time on watching lots of videos with Black and white nonsense. And the anti-bot to let views not be buyable/ fakeable are there too.

  • @shubhansingh04
    @shubhansingh04 9 месяцев назад +25

    The QR code hack was really clever👍

    • @icitry
      @icitry  9 месяцев назад +1

      Thanks! 😄

    • @enricofischer1330
      @enricofischer1330 9 месяцев назад +4

      ​@@icitryfor the qr-code you can also do the folowing:
      1 pixle is a RGB tupple (r,g,b)
      If you have (255,255,255) you get white
      If you have (0,0,0) you get Black
      Instead of saving in black and white you can use the RGB min/max for 3x efficiancy
      You might think that you could lose in compresion but the difference between min/max is so big that you can restore the original values from something like (234,247,219)
      And (10,9,3)
      Also storing metadata in Audio or Video description can be great and comments can be used to log smal changes
      RUclips gives you up to 250.000 coments i Think and each has a maximum of 500 replies with no apperant limit for text size.

    • @icitry
      @icitry  9 месяцев назад +3

      Oh great suggestions, I think those types of RGB codes are called JAB codes if I'm not mistaken, I've discovered them after the project was done 😅 But the comments thing is really smart, didn't even cross my mind - big props!

  • @coolyeah183
    @coolyeah183 9 месяцев назад +24

    When programmers use 100.1% of their brain

    • @icitry
      @icitry  9 месяцев назад +13

      But for actually useful stuff it starts throttling at like 10%

    • @Stormlywing
      @Stormlywing 8 месяцев назад

      @@icitry
      sadly youtube will not care much
      because if anyone can keep uploading and doing live steams for 3 mouths for scams or loop of giveaway
      Why would they try to ban anyone doing that because they think Ad blocker is a proplem
      ------------------------------------------------------------------------------------------------------------------------------
      what about FILES i has in google drive
      ( 50% of my files are gone )
      15GB - 50% - cost to 7.5GB are the real space you can keep
      meaning google can spy as they wanted and there no Locks on it even end to end encryption even if you ( PAID their max tier 2TB they still will not give you encryption in anyway )
      Only if your in School and business or college to get protected as a USER and not for cookies

  • @yassinesafraoui
    @yassinesafraoui 8 месяцев назад +88

    That's why when making projects, you have to think of everything before starting, and more importantly identify the most critical sections and start with them because if they don't work there is no point in continuing

    • @icitry
      @icitry  8 месяцев назад +14

      Yep, an extremely important thing that we (I) often forget about or just do superficially 😅

    • @timnonik2736
      @timnonik2736 8 месяцев назад +2

      There is actually a method using discord attachments (split in 25mb chunks) which is much less effort since data does not need to be encoded to a image.

    • @MilMike
      @MilMike 8 месяцев назад

      Exactly. Where I work we rush solutions into production because there is no budget for evaluation possible solutions... first solution is good enough. Then after month, it is a unmaintainable mess because no one thought about the complex use cases..

  • @EliSmith
    @EliSmith 8 месяцев назад +7

    You should make a FUSE diver so you can literally mount the filesystem and use it natively

    • @j_r_-
      @j_r_- 8 месяцев назад

      I was just thinking this :D

  • @nonetrix3066
    @nonetrix3066 9 месяцев назад +16

    I want to make something similar but instead it encrypts the data and is able to split the files and combine storage of the various cloud providers. Also, a possible improvement would be to use bigger QR codes as they can be much bigger, also if you don't mind going out of spec they can be infinitely big if you write a decoder for them

    • @icitry
      @icitry  9 месяцев назад +7

      Well go for it! Data encryption is something you'd always want and the idea of a distributed system is really cool! 😄 But for the QR codes you can't have them be infinitely big, as you'd end up with the same problems regarding compression when they become too cluttered. Someone else pointed out that I could've used multiple QR codes in a single frame, all within specs though. But great ideas and thanks for the feedback!

    • @nonetrix3066
      @nonetrix3066 9 месяцев назад +4

      @@icitry Still might be able to make them bigger is what I am saying, I would experiment

    • @icitry
      @icitry  9 месяцев назад +5

      Oh yea for sure, just that you still need to be careful not to make them too big. But definitely a really nice improvement!

    • @ArbiterYT
      @ArbiterYT 8 месяцев назад +1

      For storage backed directly by file services (Google Drive, Microsoft OneDrive, Dropbox, etc), a project like this happens to already exist. The core project is Least Authority File System (LAFS), which fundamentally handles encryption and manages cross-host storage. I think I recall even a more plug-and-play project that is meant to work with a dozen or so of the largest file storage providers out of the box. I don't remember what that project was called, but I know the core of it is LAFS.

    • @Youwotm8Tk
      @Youwotm8Tk 8 месяцев назад

      I've done something similar. Encrypt the files -> split them into 24mb chunks -> upload everything to discord and keep a local database of the file names and paths.

  • @Triro
    @Triro 8 месяцев назад +6

    Neat! Now all we need is a user friendly GUI for this. And boom. Solid.

    • @icitry
      @icitry  8 месяцев назад +3

      Thanks! Yep, and someone willing to do GUI programming 😅

  • @pikachuchujelly7628
    @pikachuchujelly7628 9 месяцев назад +4

    Couldn't you exploit Google Drive simply by creating a bunch of accounts? When one account runs out of space, just make a new one, but use the old account's email as the recovery email for the new one. I have 3 Google accounts chained together like that.

    • @icitry
      @icitry  9 месяцев назад +3

      Huh that's a fun idea, didn't even cross my mind - but what if you had to store something larger than 15 gigs? Guess you would have to break it into parts and add some linking mechanism to piece them together on request. But it's so cool how many different approaches we can have to the same problem, exactly what I love about programming 😄

    • @gior987
      @gior987 8 месяцев назад

      wait can you explain the recovery email thing?

    • @pikachuchujelly7628
      @pikachuchujelly7628 8 месяцев назад

      @@gior987 When you create a Google account, it asks you for an existing email address to use for recovery purposes, and apparently that can be another GMail address, so it's likely possible to create an unlimited amount of GMail accounts that way.

  • @yxyk-fr
    @yxyk-fr 8 месяцев назад +2

    many years ago, VHS tapes were used for data storage/backup.
    but they didn't use crazy compression schemes so it was "easier" (still a crazy challenge but not like this one)

  • @paxtonsword2043
    @paxtonsword2043 10 месяцев назад +3

    How you gonna rick roll me for scanning a QR code lol

    • @icitry
      @icitry  10 месяцев назад +2

      When I realized I had the power there was no going back

  • @bizkurt99
    @bizkurt99 9 месяцев назад +2

    I mean i saw a guy turning discord into his free, encrypted storage server so why not!? 😄

    • @icitry
      @icitry  9 месяцев назад +1

      Oh yeah, I've seen it too, great one 😄

  • @jan_harald
    @jan_harald 9 месяцев назад +1

    why the hell would you use QR codes specifically tho, instead of like...data matrix (used for e.g. chip labels) that can tile better and squeeze more info, or even better, actually colored stuff, such as "High Capacity Color Barcode" or "JAB Code" which would be able to hold WAY more info than pure black and white QR code...

    • @jan_harald
      @jan_harald 9 месяцев назад +1

      data matrix and other such b&w stuff are also old enough that every sensible library has had support for them for the last decade, if not more, lol

    • @icitry
      @icitry  9 месяцев назад +1

      Well I more or less dismissed them (probably shouldn't have, or at least presented the alternatives, but given the silly nature of the project, I thought the idea was more important than implementation details 😅) due to the limited improvement I considered them to be bringing to the table, with a maximum 3x with JAB codes. A more radical solution I found while discussing with other people in the comments is using multiple codes in a single frame leading to (100+)x more storage capacity per frame (which could be then coupled with a higher capacity code model to squeeze in even more extra storage)

    • @vylbird8014
      @vylbird8014 8 месяцев назад

      I imagine the video compression works in YUV. Alignment also isn't an issue. Work using those, you could get good density. Don't forget the sound too.

  • @omerakgoz34
    @omerakgoz34 8 месяцев назад +1

    YOU ARE SO EVIL!!!

    • @icitry
      @icitry  8 месяцев назад

      I'll take that as a compliment 😁

  • @rb3020
    @rb3020 8 месяцев назад

    RUclips dialup but data storage instead of data transfer lol

  • @gregorymorse8423
    @gregorymorse8423 8 месяцев назад +1

    The only efficient way ti do this is to know the exact encoding algorithm. Then you could maximize data per frame assuming youtube streams every frame. It would be interesting if anyone did this approach though its tough as it requires reverse engineering the compression via trual and error and designing an encoding mapping.

    • @icitry
      @icitry  8 месяцев назад +1

      Well said, it would definitely be the ideal solution, but it would take quite the herculean task to pull off 😅

  • @Redditard
    @Redditard 9 месяцев назад +1

    The first thing I did after watching this video was disdislike and ununsubcribe (apply boolean logic here)... Loved these

    • @icitry
      @icitry  9 месяцев назад +1

      Well then I have to say I'm very ununhappy to hear you say that

  • @sesemuller4086
    @sesemuller4086 8 месяцев назад +1

    I mean nice, but couldn't you just a error correcting code when storing and reading?

    • @icitry
      @icitry  8 месяцев назад

      Not really, the encoding algorithms YT uses are a complete unknown, so the manner in which they manipulate the bits in a frame might as well be completely random

  • @TradieTrev
    @TradieTrev 8 месяцев назад

    You're naughty and I like it hahaha!

    • @icitry
      @icitry  8 месяцев назад

      I'm not entirely sure if I should be happy seeing this, but oh well, guess I'll take it 😁

  • @redpanda9000
    @redpanda9000 8 месяцев назад

    Should I use Google or Google then????

    • @icitry
      @icitry  8 месяцев назад

      I'd say Google, but Google is also a good alternative

  • @joey3070
    @joey3070 8 месяцев назад

    I thought this was already done by several people. eg ruclips.net/video/8I4fd_Sap-g/видео.html

    • @icitry
      @icitry  8 месяцев назад +1

      Oh I am certain there have been other similar implementations, it's pretty difficult to come with a completely new idea nowadays 😅 I just wanted to explore my personal take on the problem and how I would solve it

  • @michaelmoorrees3585
    @michaelmoorrees3585 8 месяцев назад

    Back in the early days of the Internet, the 1990s, I used free email accounts for cloud storage, as attachments. No coding. Of course, limited to MBs per account, but my files were small.

    • @icitry
      @icitry  8 месяцев назад

      Oh that's pretty smart, and is still somewhat viable, just that the file sizes have grown so much in time for even the most basic things, you'd have to split them into chunks and rebuild them on retrieval for each query 😅

    • @superNova5837
      @superNova5837 7 месяцев назад

      Not me with another google account for another 15 GB of storage

  • @Joseph12O
    @Joseph12O 8 месяцев назад

    Had this exact thought years ago.. RUclips is free space before he will put down a wall, I think something could happen that prevents users from uploading nonstop

    • @icitry
      @icitry  8 месяцев назад

      Oh, it already happened, unverified accounts are limited to 10 uploads per day, for example. So it's mostly a game of cat and mouse 😅

  • @SPPhotography89
    @SPPhotography89 8 месяцев назад

    Hydraulic Press Channel

    • @icitry
      @icitry  8 месяцев назад

      Goated

  • @SASTSimon
    @SASTSimon 8 месяцев назад

    Hello

    • @icitry
      @icitry  8 месяцев назад

      Why hello there

  • @龗
    @龗 8 месяцев назад

    it would be very cool if it had FUSE support

    • @icitry
      @icitry  8 месяцев назад

      Ooh, that is indeed a really cool addition, didn't even cross my mind while elaborating the filesystem, great idea!

  • @ttonin33
    @ttonin33 8 месяцев назад

    Jea we have definitely the same Ideology.

    • @icitry
      @icitry  8 месяцев назад

      Solidarity, hell yeah! 😄

  • @lemagreengreen
    @lemagreengreen 8 месяцев назад

    This is genius, never thought of it before

    • @icitry
      @icitry  8 месяцев назад

      Thanks! 😁

  • @davidwarshawsky1559
    @davidwarshawsky1559 8 месяцев назад

    Why would you willingly use ANTLR

    • @icitry
      @icitry  8 месяцев назад

      Sometimes the masochistic side comes to light y'know

  • @tutacat
    @tutacat 4 месяца назад

    Why did you make it 1080p? Just use the minimum possible resolution (240p, or lower) and you can use a square video, or any resolution/aspect fine. The only thing that gets scaled by youtube is the resolution, not the aspect ratio

    • @tutacat
      @tutacat 4 месяца назад

      Also 30fps not 60, but the density is in file size, not file time, unless you were storing more than 26GB file.

    • @icitry
      @icitry  4 месяца назад

      I actually select the worst available format when selecting the stream URL, otherwise I couldn't reach the target FPS set by the videos - trust me I tried 😅 (also I wanted to emulate the video's style so that's why I'm not going for fixed values).

  • @rishi8413
    @rishi8413 8 месяцев назад

    please share code for the project

    • @icitry
      @icitry  8 месяцев назад

      Sorry, but due to the potentially malicious nature of the project I won't be sharing the source code

  • @blaze_arch6864
    @blaze_arch6864 8 месяцев назад +1

    Cool video!

    • @icitry
      @icitry  8 месяцев назад

      Thank you!

  • @AAKalam
    @AAKalam 8 месяцев назад

    Make project open source
    RIP Google drive 😂❤

    • @icitry
      @icitry  8 месяцев назад

      RIP me after they'll banish me to the shadow realm 😔

    • @Stormlywing
      @Stormlywing 8 месяцев назад

      and is online drive
      is not is a Public drive for you and google to see
      So even you paid Ad-free youtube they don`t give you even half price for something they has owned for devs

  • @jak0816
    @jak0816 9 месяцев назад +1

    Very cool!

    • @icitry
      @icitry  9 месяцев назад +1

      Thanks! :)

  • @davidhand9721
    @davidhand9721 8 месяцев назад

    Points for making a grammar instead of parsing it in code. Code-based parsers bad.

    • @icitry
      @icitry  8 месяцев назад

      Thank you! Yep, whenever possible I try to go for the right solution instead of easy hacks that break in a couple of dev cycles

    • @davidhand9721
      @davidhand9721 8 месяцев назад

      @@icitry exactly! Even in industry, top tech companies, I rarely see anyone make this move, then they regret it within a year and just deal with it for the rest of time because nobody wants to maintain it. Hell, "write an XML parser in Java" is a very common interview question. I always ask if that's a trick question, because why would you ever do that?

  • @onradioactivewaves
    @onradioactivewaves 8 месяцев назад

    I've often thought about this idea. Pretty sure if its not already against the TOS, ot will be as soon as any noticeable amount of people start doing this.

    • @icitry
      @icitry  8 месяцев назад

      I don't think it's feasible enough to be even considered a threat by the YT overlords, there're enough mechanisms in place that would prevent someone from abusing this, I imagine

    • @onradioactivewaves
      @onradioactivewaves 8 месяцев назад

      @@icitry perhaps... what if someone made available an app to back up your entire hardrive for instance? Even just an app to make a backup of all of your photos could be a lot of data. I've only recently uploaded anything to RUclips, so I'm really not familiar with what type of limitations they place on uploading.

    • @icitry
      @icitry  8 месяцев назад

      @@onradioactivewaves Well from what I know the max video filesize is 128 gbs, and a basic account has 10 max uploads per day. So you'd be limited from the start just from those 2 parameters. To that it should be added that YT would more than likely flag videos that large, especially if they're not even for public viewing.

    • @onradioactivewaves
      @onradioactivewaves 8 месяцев назад

      @@icitry makes sense . I haven't thought about all of the data requirements and how much RUclips is already consuming daily. For certain there is more data centers being planned this moment.

  • @chaitanyachavali6293
    @chaitanyachavali6293 8 месяцев назад

    I thought of doing the exact same thing. I thought of the first solution and dropped it for the exact same reason. Then thought of dividing the screen into small squares and make them black or white encoding bits. It’s technically similar to the QR code thing. Kudos for actually doing it

    • @icitry
      @icitry  8 месяцев назад

      Thank you! And kudos to you for also thinking it through 😄

  • @limo2675
    @limo2675 8 месяцев назад

    How long can descriptions be?
    However you could add short videos and descriptions :D

    • @icitry
      @icitry  8 месяцев назад +1

      You could, but they are pretty short (5k chars) 😅. There have been other suggestions of using the description for metadata and comments as a way of logging changes

  • @fearisan
    @fearisan 8 месяцев назад

    This reminds me of the harder drive series

    • @icitry
      @icitry  8 месяцев назад +1

      Oh, I hadn't even heard of that, now I gotta look into it

  • @russianyoutube
    @russianyoutube 8 месяцев назад

    Holy god that's crazy!

    • @icitry
      @icitry  8 месяцев назад

      😄 Glad you liked it!

  • @Maebbie
    @Maebbie 8 месяцев назад

    Yes, you can convert RUclips into a cloud storage service. The video explains how the creator built a system using RUclips as a cloud storage service. They used Selenium Python for automation and created a language parser with the help of ANTLR to fluidify the creation of new commands. The system allows users to upload, download, query, edit, and delete videos, and store any type of file.