A Python-based downloader for videos hosted on voe.sx.
Voe frequently updates their website to break download scripts.
Make sure you are using the latest version ofvoe-dl
to ensure compatibility.
-
Open Command Prompt
PressWin + R
, typecmd
, and press Enter. -
Navigate to the folder with
voe-dl.exe
Example:cd "C:\Users\YourName\Downloads"
-
Download a video
voe-dl.exe -u https://voe.sx/yourvideo
📝 You don’t need to add
voe-dl.exe
to your system PATH. Just navigate to the folder in CMD.
-
Install Python
Download Python and make sure to check the box:- ✅ "Add Python to PATH"
-
Clone or download the repository
-
Install requirements
In the project folder:pip install -r requirements.txt
-
Run the script
python dl.py -u https://voe.sx/yourvideo
-
See all options
python dl.py -h
voe-dl -u https://voe.sx/yourvideo
Create a links.txt
file:
https://voe.sx/xxxxxxx
https://voe.sx/yyyyyyy
Run:
voe-dl -l links.txt
You can add the -w
option to set number of parallel workers:
voe-dl -l links.txt -w 8
(Default is 4)
Downloaded videos will be saved in the same folder where you run the command.
Make sure you run commands in CMD/Terminal, not in the Python shell (>>>
prompt).
Open CMD manually and run the tool from there to see error output.
Make sure the URL is valid and doesn't contain brackets or formatting issues.
✅ Correct:
https://voe.sx/fi3fqtyh7932
Ensure the URL starts with http://
or https://
and doesn't contain strange characters.
Run:
voe-dl -h
This will print all available options, arguments, and descriptions.
Pull requests are welcome! If you fix a bug or add a feature, please update the README accordingly.