unlimited-storage

YouTube filesystem tool for uploading arbitrary data to the service
git clone git://git.laack.co/unlimited-storage.git
Log | Files | Refs | README

random.sh (241B)


      1 #!/bin/bash
      2 
      3 while [ true ]; do
      4 
      5     rm -rf /dev/shm/*
      6 
      7     dd if=/dev/urandom of=/dev/shm/random_noise bs=1000M count=1
      8 
      9     python3 encode.py 3840 2160 /dev/shm/random_noise /dev/shm/
     10 
     11     ./to_vid.sh /dev/shm/ /dev/shm
     12     ./send.sh
     13 done