aly / vultrwin.sh

0 likes
0 forks
2 files
Last active 1619348060
A windows startup cmd script, and bash script to execute it on vultr. installs all the things i think are useful to have on a new windows server
1 #!/bin/bash
2 domain="alyssasmith.id.au"
3 if [ -z "$1" ]; then
4 region="syd"
5 else
6 region="$1"
7 fi
8 if [ -z "$2" ]; then
9 size="vc2-4c-8gb"
10 else

aly / videolp.py

0 likes
0 forks
1 files
Last active 1610104246
A script I made a long time ago, generates a video for a music file using cover art if available and including track information
1 #!/usr/bin/env python3
2 # A script to generate videos for MP3s
3 from moviepy.editor import *
4 import numpy as np
5 from PIL import Image
6 from glob import glob
7 from mutagen.mp3 import MP3
8 from io import BytesIO
9
10 #points