Skip to content

Instantly share code, notes, and snippets.

@flanter21
flanter21 / Add shared and guest tools.sh
Created March 8, 2025 12:17
Automates the process at https://docs.getutm.app/guest-support/linux/ on distros based on Fedora, Alpine, Ubuntu or Arch. Should be POSIX-compliant.
#!/bin/sh
# Load functions
#. ./functions.sh
#!/bin/sh
# Check for systemd
checkSYSTEMD ( ) {
if command -v systemctl >/dev/null 2>&1; then
echo "true"
else
@flanter21
flanter21 / slideshow interpreter.py
Last active January 27, 2025 18:28
Convert mediasite slides into video
import json
import os
from moviepy import ImageClip, VideoFileClip, concatenate_videoclips
from PIL import Image
def create_slideshow(image_files, image_durations, output_file, fps=60, codec="libx264", preset="medium", debug=False, test_run=False, overwrite="ask"):
"""
Creates a slideshow video from a list of images.
Parameters: