Skip to content

Troubleshooting

Deep edited this page Jul 16, 2026 · 1 revision

Troubleshooting

This page lists common issues and their solutions.


FFmpeg Not Found

Problem

QIFY Downloader displays:

FFmpeg Not Found

Solution

  1. Download FFmpeg from:

https://ffmpeg.org/download.html

  1. Install FFmpeg.

  2. Either:

  • Add the bin folder to your Windows PATH

or

  • Copy it to:
C:\ffmpeg\bin
  1. Restart QIFY Downloader.

Verify installation:

ffmpeg -version

Download Failed

Possible Causes

  • Invalid URL
  • Internet connection issue
  • Video removed or unavailable
  • Website temporarily unavailable

Solution

  • Check your internet connection.
  • Verify the URL.
  • Try again after a few minutes.
  • Update yt-dlp:
pip install -U yt-dlp

Python Module Not Found

Example:

ModuleNotFoundError

Solution

Install the required dependencies:

pip install -r requirements.txt

Windows Shows a Security Warning

Problem

Windows Smart App Control or Microsoft Defender warns about the application.

Why?

QIFY Downloader is currently not digitally signed.

This is common for new open-source applications from independent developers.

Solution

Download the application only from the official GitHub repository or build it yourself from the source code.


The Application Does Not Start

Check

  • Python is installed (when running from source)
  • FFmpeg is installed
  • Required Python packages are installed
  • Windows Defender has not blocked the application

Downloads Are Slow

Download speed depends on:

  • Your internet connection
  • The source website
  • Server availability

QIFY Downloader cannot increase the maximum speed provided by the source.


Audio Is Not Converted to MP3

This usually means FFmpeg is missing.

Verify:

ffmpeg -version

Install FFmpeg if necessary.


Video Has No Sound

Make sure FFmpeg is installed correctly.

Video and audio streams are merged using FFmpeg.


Cannot Build the EXE

Install PyInstaller:

pip install pyinstaller

Build using:

pyinstaller --onefile --windowed --icon=assets/qify.ico --name QIFY-Downloader main.py

Need More Help?

If your issue is not listed here, please open a GitHub Issue.

Repository:

https://github.com/deep-mistry10/QIFY-Downloader

Issues:

https://github.com/deep-mistry10/QIFY-Downloader/issues

Clone this wiki locally