View movie_cut_random.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#A script to perform a random cut on a video | |
#By Antonio Roberts | www.hellocatfood.com | |
#Usage: ./movie_cut.sh /path/to/file.mp4 | |
#e.g. ./movie_cut.sh /home/Desktop/videofile.mp4 | |
# change 30 to however many videos you want output | |
filenumber=$(printf "%05d") | |
while [ $filenumber -le 30 ] | |
do |
View typewriter.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
# Adapted from here https://imagemagick.org/discourse-server/viewtopic.php?p=163774#p163774 | |
# Requires Imagemagick 7 and a monospace font. Tested on Ubuntu 20.04 | |
FONT= # replace with path to monospace font | |
POINTS=18 | |
COUNT=0 | |
TEXT= # replace textfile.txt with path to plain text file |
View sampler.pd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#N canvas 62 73 929 984 12; | |
#X declare -path extra; | |
#N canvas 0 0 450 300 (subpatch) 0; | |
#X array array1 10352 float 2 black black; | |
#X coords 0 1 10352 -1 200 140 1; | |
#X restore 523 67 graph; | |
#X obj 207 60 openpanel; | |
#X obj 207 36 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 | |
-1; | |
#X obj 207 112 soundfiler; |
View A_Perfect_Circle.pde
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import processing.video.*; | |
import processing.pdf.*; | |
Capture video; | |
PGraphics topLayer; | |
PGraphics topLayer2; | |
color trackColor; | |
float hue = 0; | |
int xorig=width/2, yorig=height/2; | |
int xprev=width/2, yprev=height/2; |
View duplicity_join.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Author: David Huss | |
# Website: http://blog.atoaudiovisual.com | |
# Usage instructions http://blog.atoav.com/2013/09/restore-broken-deja-dup-backup-hand/ | |
# Modified by Antonio Roberts to preserve folder structure | |
import Tkinter as tk | |
from tkFileDialog import * | |
import sys, os |
View Somehing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
placeholder |
View feedback.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# applies a black and white feedback effect to still images. | |
# usage: ./feedback.sh image.png 18 | |
# this would apply the feedback effect 18 times to the image.png image and output the result as feedback.png | |
cp $1 feedback.png | |
loop=0 |
View gist:ad1da963d5b37b43d542
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Technology | |
Technologies | |
Content | |
Wearable | |
Media | |
Future | |
Virtual | |
Disruption | |
Disruptive | |
Big Data |
View gist:46dec37ed533c57e4519
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Installation instructions for Flext and pyext on Ubuntu 14.10 (64 Bit) on a Dell XPS 13 | |
Download the Pure Data source code | |
git clone git://git.code.sf.net/p/pure-data/pure-data/ | |
Checkout flext | |
svn co https://svn.grrrr.org/ext/trunk/flext/ | |
cd into flext |
View emojify.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
emojis=(/home/hellocatfood/Desktop/twemoji/16x16/*) | |
# get filename minus extension | |
file=$(basename "$1") | |
filename="${file%.*}" | |
# pick random emoji for gifs | |
file1=$(printf "%s\n" "${emojis[RANDOM % ${#emojis[@]}]}") |
NewerOlder