This file contains hidden or 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
| @ECHO OFF | |
| cd /d "%~dp0" | |
| python.exe "%~dpn0.py" %* | |
| @PAUSE |
This file contains hidden or 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
| @ECHO OFF | |
| cd /d "%~dp0" | |
| PowerShell.exe -NoProfile -ExecutionPolicy Bypass -Command "& '%~dpn0.ps1' \"%1\" \"%2\" \"%3\" \"%4\" \"%5\" \"%6\" \"%7\" \"%8\"" | |
| @PAUSE |
This file contains hidden or 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
| @ECHO OFF | |
| CD /D "%~dp1" | |
| ffmpeg -err_detect ignore_err -i "%~1" -af "volume=-1.0dB" -ac 6 -c:a flac -sample_fmt s16 -compression_level 5 "%~dp1%~n1.flac" | |
| @PAUSE |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| PLUGIN_NAME = "Matroska Tagger" | |
| PLUGIN_AUTHOR = "Ben McLean" | |
| PLUGIN_VERSION = "0.1" | |
| PLUGIN_API_VERSIONS = [ | |
| "2.0", | |
| "2.1", | |
| "2.2", | |
| "2.3", |
This file contains hidden or 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
| @ECHO OFF | |
| cd /d "%~dp0" | |
| PowerShell.exe -NoProfile -ExecutionPolicy Bypass -Command "& '%~dpn0.ps1' \"%1\" \"%2\" \"%3\" \"%4\" \"%5\" \"%6\" \"%7\" \"%8\"" | |
| @PAUSE |
This file contains hidden or 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 python3 | |
| r""" | |
| extract_games_lib.py — GAMES.LIB extractor for Muppets Inside (1996, Starwave) | |
| =============================================================================== | |
| Zero dependencies — stdlib only. DCL decompressor inlined at the bottom. | |
| Usage: | |
| python3 extract_games_lib.py <games_lib> [output_dir] [filter] | |
| games_lib path to GAMES.LIB (absolute or relative) |
This file contains hidden or 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
| # Organize ROMs into Alphabetical Range Folders | |
| # This script moves ROM files into folders based on alphabetical ranges and truncates long filenames | |
| param( | |
| [string]$Path = ".", | |
| [int]$MaxFilesPerFolder = 256, | |
| [int]$MaxFilenameLength = 99, | |
| [switch]$WhatIf | |
| ) |
This file contains hidden or 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 | |
| # Check if source argument provided | |
| if [ $# -eq 0 ]; then | |
| echo "Usage: $0 <source_directory> [destination_directory]" | |
| echo "Example: $0 /path/to/rvz/archive /path/to/sdcard" | |
| echo "" | |
| echo "If destination is not provided, files will be converted to the script's directory" | |
| exit 1 | |
| fi |
This file contains hidden or 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 | |
| # Check if directory argument provided | |
| if [ $# -eq 0 ]; then | |
| echo "Usage: $0 <directory>" | |
| echo "Example: $0 /path/to/psx" | |
| exit 1 | |
| fi | |
| TARGET_DIR="$1" |
This file contains hidden or 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 | |
| # Jellyfin Movie Organizer Script | |
| # This script organizes movie files into folders based on titles from .nfo files | |
| # Usage: ./organize_movies.sh [--dry-run] /path/to/your/movie/library | |
| set -e | |
| # Check for xmlstarlet dependency | |
| if ! command -v xmlstarlet >/dev/null 2>&1; then |
NewerOlder