start new:
tmux
start new with session name:
tmux new -s myname
| this video was created earlier in january from a stupid idea and was driven by sheer determination | |
| despite lacking programming skill. here's a decent description of how it was made (because i am | |
| too lazy to write a github readme): | |
| 1. the video | |
| i downloaded the pv off youtube and used ffmpeg to resize it down to 70x54 dimensions (for easy | |
| math calculations, i used 27 firefox windows, 7 tabs each, so it divided nicely). i then used | |
| ffmpeg (again) to splice the source video into 15-second segments to reduce desyncing and cpu load. | |
| 2. the frames |
| <script> | |
| function createWebWorkerFromFunction(f) { | |
| var blobContents = ['(', f.toString(), ')();']; | |
| var blob = new Blob(blobContents, { type: 'application/javascript'}); | |
| var blobUrl = URL.createObjectURL(blob); | |
| var worker = new Worker(blobUrl); | |
| URL.revokeObjectURL(blobUrl); |