>>709952I've made myself a script to convert images into webm slideshows. I can just right click a group of images and convert them.
slideshow#!/usr/bin/env python
from sys import argv, exit, stderr
from os import symlink
from os.path import exists, join, getmtime, abspath, splitext
from subprocess import run
from tempfile import TemporaryDirectory
if len(argv) < 2:
print("slideshow [IMAGES]")
print(" Generate slideshow based off modified time")
exit(1)
Post too long. Click here to view the full text.