From facaed1f7b7eb51a11452160cb9b399505cda79a Mon Sep 17 00:00:00 2001 From: Raincloud Date: Wed, 2 Jul 2025 18:09:32 -0600 Subject: [PATCH] Initial commit: VodKeeper project setup --- .gitignore | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 29 +++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..17396b7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,57 @@ +# Dependencies +node_modules/ +__pycache__/ +*.pyc +*.pyo +*.pyd +.Python +env/ +venv/ +.venv/ + +# Build outputs +dist/ +build/ +*.exe +*.msi +*.dmg + +# IDE files +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS files +.DS_Store +Thumbs.db +desktop.ini + +# Logs +*.log +logs/ + +# Temporary files +temp/ +tmp/ +*.tmp + +# Video processing files +output/ +processed/ +*.mp4 +*.avi +*.mkv +*.mov +*.wmv + +# Configuration files with sensitive data +config.ini +settings.json +.env + +# Database files +*.db +*.sqlite +*.sqlite3 \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..0f82d73 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# VodKeeper + +A unified workflow application for video processing and management, integrating all workflows from R:\Videos\mux into one executable with UI. + +## Overview + +VodKeeper is designed to streamline video processing workflows by providing a single, user-friendly interface for all video-related tasks previously handled through various scripts and tools. + +## Features + +- Unified UI for video processing workflows +- Integration with existing mux workflows +- Streamlined video management +- Automated processing pipelines + +## Development + +This project is currently in initial development phase. + +## Setup + +1. Clone the repository +2. Install dependencies (TBD) +3. Configure video source paths +4. Run the application + +## License + +Private project - All rights reserved \ No newline at end of file