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 bash | |
set -o errexit | |
set -o pipefail | |
set -o nounset | |
#set -x #Debug | |
# | |
# Re-encode a video to a target size in MB. | |
# Example: |
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
#Non distructive read only or something. | |
sudo badblocks -nsv -b 4096 /dev/sdb1 | |
#Distructive read/write test. Best. | |
sudo badblocks -b 4096 -ws /dev/sdg1 |
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
for i in *.opus | |
set name (echo $i |cut -d'.' -f1); | |
echo $name: | |
ffmpeg -i "$i" -c:a libvorbis -q 8 convert/$name.ogg; | |
end |
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
;by joan.t | |
G1 X10.000 Y200.000 E0; parking position GET THE PRUSA TO STICK IT'S TONGUE OUT! | |
M1; user stop | |
M105; return to current temp |
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
mkdir export | |
for f in *jpg | |
convert $f -resize "2048x2048>" -quality 95 \ | |
-gravity southeast -pointsize 20 \ | |
-stroke '#000C' -strokewidth 2 -annotate 0 'Name ' \ | |
-stroke none -fill white -annotate 0 'Name ' export/$f | |
end |
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
UPDATE MEDIA_FILE SET children_last_updated = '1970-01-01 01:00:00.0' WHERE TYPE IN ( 'ALBUM', 'DIRECTORY') |
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 | |
#youtube-dl --external-downloader axel --external-downloader-args "-n 15 -a -k" "$@" | |
youtube-dl --external-downloader aria2c --external-downloader-args "-c -j 5 -x 10 --summary-interval=0" "$@" |