8000 GitHub - p4ul17/voe-dl: A Python downloader for voe.sx videos
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

p4ul17/voe-dl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

voe-dl

A Python-based downloader for videos hosted on voe.sx.

Latest Release


⚠️ Always Use the Latest Version

Voe frequently updates their website to break download scripts.
Make sure you are using the latest version of voe-dl to ensure compatibility.


📥 How to Use voe-dl

Method 1: Using voe-dl.exe

  1. Open Command Prompt
    Press Win + R, type cmd, and press Enter.

  2. Navigate to the folder with voe-dl.exe
    Example:

    cd "C:\Users\YourName\Downloads"
  3. 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.


Method 2: Running from Python Source Code

  1. Install Python
    Download Python and make sure to check the box:

    • ✅ "Add Python to PATH"
  2. Clone or download the repository

  3. Install requirements
    In the project folder:

    pip install -r requirements.txt
  4. Run the script

    python dl.py -u https://voe.sx/yourvideo
  5. See all options

    python dl.py -h

📄 Command Line Usage

Download Single Video

voe-dl -u https://voe.sx/yourvideo

Download from a list (batch)

Create a links.txt file:

https://voe.sx/xxxxxxx
https://voe.sx/yyyyyyy

Run:

voe-dl -l links.txt

Optional: Parallel Downloads

You can add the -w option to set number of parallel workers:

voe-dl -l links.txt -w 8

(Default is 4)


📂 Output

Downloaded videos will be saved in the same folder where you run the command.


🛠 Common Errors & Fixes

❌ SyntaxError when pasting into Python

Make sure you run commands in CMD/Terminal, not in the Python shell (>>> prompt).

❌ CMD window closes instantly

Open CMD manually and run the tool from there to see error output.

requests.exceptions.InvalidSchema

Make sure the URL is valid and doesn't contain brackets or formatting issues.

✅ Correct:

https://voe.sx/fi3fqtyh7932

❌ No connection adapter found

Ensure the URL starts with http:// or https:// and doesn't contain strange characters.


🆘 Help

Run:

voe-dl -h

This will print all available options, arguments, and descriptions.


💡 Contributing

Pull requests are welcome! If you fix a bug or add a feature, please update the README accordingly.

0