Windows Quick Setup
This guide explains two ways to run DJI Drone Metadata Embedder on Windows without needing to manage a Python environment manually.
Option 1: pipx
- Install Python 3.10 or newer.
- Open PowerShell and install
pipx:powershell python -m pip install --user pipx python -m pipx ensurepathRestart PowerShell so thepipxcommand becomes available. - Install the embedder:
powershell pipx install dji-drone-metadata-embedderpipxcreates an isolated environment and adds thedji-embedcommand to your user path. - Double‑click the provided
process_drone_footage.batscript and select your footage folder when prompted. The script uses thedji-embedcommand installed bypipx.
Option 2: PyInstaller executable
- Install Python 3.10+ and download PyInstaller using
PowerShell:
powershell pip install pyinstaller - Build a standalone executable from the project root:
powershell pyinstaller --onefile -n dji-embed dji_metadata_embedder/embedder.pyThe resultingdist\dji-embed.execan be copied anywhere and run without Python. You may create a desktop shortcut or batch file that calls the executable with your footage directory.
Both methods avoid having to manage virtual environments or command‑line arguments every time you process videos.