UNPKG

makemkv-auto-rip

Version:

Automatically rips DVDs & Blu-rays using the MakeMKV console, then saves them to unique folders. It can be used from the command line or via a web interface, and is cross-platform. It is also containerized, so it can be run on any system with Docker insta

22 lines (16 loc) 410 B
#!/usr/bin/env node /** * MakeMKV Auto Rip * CLI entry point for the application */ import { main, setupErrorHandlers } from "./src/app.js"; // Parse command line arguments const args = process.argv.slice(2); const flags = { noConfirm: args.includes("--no-confirm"), quiet: args.includes("--quiet"), }; // Setup error handlers setupErrorHandlers(); // Start the application with flags main(flags);