A simple command-line tool to convert MOV files to MP4 format.
-
Download Git for Windows from the official website:
- Visit https://git-scm.com/download/win
- The download should start automatically
- If not, click the "Click here to download" link
-
Run the installer:
- Double-click the downloaded file (usually named something like "Git-2.x.x-64-bit.exe")
- Accept the default options (or customize if you prefer)
- Click "Next" through the installer
- Click "Install" to begin installation
-
Verify the installation:
- Open Command Prompt or PowerShell
- Type
git --version - You should see the Git version number if installed correctly
To navigate to a folder in Windows PowerShell:
-
Open PowerShell:
- Press
Windows + Xand select "Windows PowerShell" or "Terminal" - Or search for "PowerShell" in the Start menu
- Press
-
Navigate to a folder:
# List current directory contents dir # Change to a specific folder cd C:\path\to\your\folder # Go up one directory cd .. # Go to your user directory cd ~ # Go to a specific drive (e.g., D:) D:
-
Useful commands:
# Show current directory pwd # List all files and folders dir # Create a new folder mkdir new-folder-name # Remove a folder rm folder-name
We provide a setup script that will automatically install uv (if needed) and the package:
# Clone the repository
git clone https://github.com/yourusername/hunter-mov-convert.git
cd hunter-mov-convert
# Run the setup script
./setup.shYou can also install this package directly from GitHub using either pip or uv:
Using pip:
pip install git+https://github.com/yourusername/hunter-mov-convert.gitUsing uv (faster):
uv pip install git+https://github.com/yourusername/hunter-mov-convert.gitOr if you've cloned the repository:
Using pip:
cd hunter-mov-convert
pip install .Using uv:
cd hunter-mov-convert
uv pip install .After installation, you can run the program using uv:
uv run python -m hunter_mov_convert.main /path/to/your/mov/folderThe tool will:
- Create a new
mp4subfolder in your input folder - Convert all MOV files in the input folder to MP4 format
- Save the converted files in the
mp4subfolder
If you've cloned the repository and want to get the latest updates:
-
Navigate to the repository directory:
cd hunter-mov-convert -
Fetch and pull the latest changes:
git pull origin main
-
Reinstall the package to get the updates:
uv pip install .
- Python 3.8 or higher
- Git (for cloning the repository)
- moviepy
- tqdm
- curl (for automatic uv installation)