Popularity
4.8
Stable
Activity
9.5
Growing
1,001
41
110

Description

pyIDM is a python open source (Internet Download Manager) with multi-connections, high speed engine, it downloads general files, videos, and playlist from youtube and tons of other streaming websites . Developed in Python, based on "pyCuRL/libcurl", "youtube_dl", and "PySimpleGUI"

Programming language: Python
License: GNU Lesser General Public License v3.0 or later
Tags: Downloader     Multimedia     Python     PySimpleGUI     Youtube     Libcurl    
Latest version: v2020.11.10

PyIDM alternatives and similar packages

Based on the "Downloader" category.
Alternatively, view PyIDM alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of PyIDM or a related project?

Add another 'Downloader' Package

README

Downloads Downloads

GitHub All Releases

GitHub issues - GitHub closed issues

logo FireDM is a python open source (Internet Download Manager) with multi-connections, high speed engine, it downloads general files and videos from youtube and tons of other streaming websites . Developed in Python, based on "LibCurl", and "youtube_dl".

Download Latest version!!

screenshot


Features:

  • High download speeds "based on LibCurl" - See Speed test of: aria2 vs FireDM
  • Multi-connection downloading "Multithreading"
  • Automatic file segmentation.
  • Automatic refresh for dead links.
  • Resume uncompleted downloads.
  • Support for Youtube, and a lot of stream websites "using youtube-dl to fetch info and libcurl to download media".
  • download entire video playlist or selected videos.
  • download fragmented video streams, and encrypted/nonencrypted HLS media streams.
  • watch videos while downloading* "some videos will have no audio until finish downloading".
  • download video subtitles.
  • write video metadata to downloaded files.
  • check for application updates.
  • Scheduling downloads
  • Re-using existing connection to remote server.
  • Clipboard Monitor.
  • proxy support (http, https, socks4, and socks5).
  • user/pass authentication, referee link, use cookies, video thumbnail, subtitles.
  • use custom cookies files.
  • MD5 and SHA256 checksums.
  • Custom gui themes.
  • Set download Speed limit
  • User can run shell commands or shutdown computer on download completion.
  • Control number of Concurrent downloads and Max. connections per each download.

How to use FireDM:

Refer to user guide at https://github.com/firedm/FireDM/blob/master/docs/user_guide.md


Portable FireDM versions:

Run FireDM without any installation (recommended)

  • Windows portable version (Download!):
    available in .zip format.
    unzip, and run from FireDM.exe, no installation required.

  • Linux portable version (Download!):
    available in .AppImage format.
    download file, then mark it as executable, and run it, no installation required, tested on ubuntu, mint, and manjaro. note: ffmpeg is not included and must be installed separately if not exist

mark file as executable by right clicking the file> Properties> Permissions> Allow executing file as a program, or from terminal by chmod +x FireDM_xxx.AppImage

To check for ffmpeg use this command:

    which ffmpeg

    # expected output if installed
    /usr/bin/ffmpeg

if ffmpeg is missing you can install it by sudo apt install ffmpeg on debian based or sudo pacman -S ffmpeg

on Arch based distros.

Manually installing FireDM with pip:

1- check python version (minimum version required is 3.6): python3 --version

2- install required packages first:

  • Linux, ubuntu: sh sudo apt-install python3-pip sudo apt install ffmpeg libcurl4-openssl-dev libssl-dev python3-pip python3-pil python3-pil.imagetk python3-tk python3-dbus sudo apt install fonts-symbola fonts-linuxlibertine fonts-inconsolata fonts-emojione

3- install firedm using pip:

python3 -m pip install firedm --user --upgrade --no-cache

Running from source code inside virtual environment:

1- check python version (minimum version required is 3.6): python3 --version

2- install required packages first:

  • Linux, ubuntu: sh sudo apt-install python3-pip sudo apt install ffmpeg libcurl4-openssl-dev libssl-dev python3-pip python3-pil python3-pil.imagetk python3-tk python3-dbus sudo apt install fonts-symbola fonts-linuxlibertine fonts-inconsolata fonts-emojione

3- run below code to clone this repo, create virtual environment, install requirements, create launch script, and finally run FireDM

git clone --depth 1 https://github.com/firedm/FireDM.git
python3 -m venv ./.env
source ./.env/bin/activate
python3 -m pip install -r ./FireDM/requirements.txt
cat <<EOF > firedm.sh
source ./.env/bin/activate
python3 ./FireDM/firedm.py
EOF
chmod +x ./firedm.sh
./firedm.sh

optionally create .desktop file and add FireDM to your applications

FireDMLSPATH=$(realpath ./firedm.sh)
cat <<EOF > FireDM.desktop
[Desktop Entry]
Name=FireDM
GenericName=FireDM
Comment=FireDM Download Manager
Exec=$FireDMLSPATH
Icon=firedm
Terminal=false
Type=Application
Categories=Network;
Keywords=Internet;download
EOF

cp ./FireDM.desktop ~/.local/share/applications/ mkdir -p ~/.local/share/icons/hicolor/48x48/apps/ cp ./FireDM/icons/48x48.png ~/.local/share/icons/hicolor/48x48/apps/firedm.png


# Known Issues:
- Linux X-server will raise an error if some fonts are missing especially emoji fonts, for more info refer to [issue #200](https://github.com/firedm/FireDM/issues/200).


- Mac - Tkinter, as mentioned in "python.org" the Apple-supplied Tcl/Tk 8.5 has serious bugs that can cause application crashes. If you wish to use Tkinter, do not use the Apple-supplied Pythons. Instead, install and use a newer version of Python from python.org or a third-party distributor that supplies or links with a newer version of Tcl/Tk. <br>
refer to [issue #113](https://github.com/firedm/FireDM/issues/113)


---

# Dependencies:
- Python 3.6+: tested with python 3.6 on windows, and 3.7, 3.8 on linux
- tkinter
- [ffmpeg](https://www.ffmpeg.org/) : for merging audio with youtube DASH videos "it will be installed automatically on windows"
- Fonts: (Linux X-server will raise an error if some fonts are missing especially emoji fonts, below are the 
recommended fonts to be installed, for more info refer to [issue #200](https://github.com/firedm/FireDM/issues/200).)

    ```
    ttf-linux-libertine 
    ttf-inconsolata 
    ttf-emojione
    ttf-symbola
    noto-fonts
    ```
- [pycurl](http://pycurl.io/docs/latest/index.html): is a Python interface to libcurl / curl as our download engine,
- [youtube_dl](https://github.com/ytdl-org/youtube-dl): famous youtube downloader, limited use for meta information extraction only but videos are downloaded using pycurl
- [yt_dlp](https://github.com/yt-dlp/yt-dlp): a fork of youtube-dlc which is inturn a fork of youtube-dl
- [certifi](https://github.com/certifi/python-certifi): required by 'pycurl' for validating the trustworthiness of SSL certificates,
- [plyer](https://github.com/kivy/plyer): for systray area notification.
- [awesometkinter](https://github.com/Aboghazala/AwesomeTkinter): for
  application gui.
- [pillow](https://python-pillow.org/): imaging library for python
- [pystray](https://github.com/moses-palmer/pystray): for systray icon

**Note for pycurl:** <br>
for windows users:
normal pip install i.e `python -m pip install pycurl` might fail on windows because you need to build libcurl on your system first which is a headache.
your best choice if pip fail is to download exe file for pycurl from its official download [link](https://dl.bintray.com/pycurl/pycurl/), find the file that match your windows system and python version installed on your system, last checked on 12-06-2020, found available files for almost all Python versions upto version 3.8

example: if you have python 3.6 installed on windows 32bit, you should download "pycurl-7.43.0.2.win32-py3.6.exe" file and install it,
another example: if you have python 3.7 running on windows 64 bit, you should choose and download "pycurl-7.43.0.3.win-amd64-py3.7.exe" file

other download options include a wheel, zip file, or even a windows installer

for linux users:
there is no issues, since most linux distros have curl preinstalled, so pycurl will link with libcurl library to get built with no issues, checked with python versions 3.6, 3.7, and 3.8 working with no problems.
<br>


**Note for Youtube-dl:** <br>
youtube website changes frequently, if this application failed to retrieve video/playlist data
you should update youtube-dl module thru FireDM setting tab or manually by

python -m pip install youtube_dl --upgrade



---

**more screenshots**

![screenshot](https://user-images.githubusercontent.com/58998813/92564079-e4fcee00-f278-11ea-83e1-9a272bc06b0f.png)
![Main_tab](https://user-images.githubusercontent.com/58998813/94432366-f3af3480-0196-11eb-8449-3e35bfb13e5c.png)
![sett_tab](https://user-images.githubusercontent.com/58998813/94432701-6f10e600-0197-11eb-9d5a-397980d8fa57.png)

[See more ...](https://github.com/firedm/FireDM/issues/13#issuecomment-699985614)


---
# what is the benefit of open source, compared to closed-source/Proprietary software if both are free?
As said, **"if the product is free, then you are the product"**, most
free closed-source software collect data about you, some of them are
toxic and plant trojans and spy-wares in your system, with open source,
nothing hidden, and source code exposed to thousands of programmers, no
one can play dirty games.


Need to mention, this project is never made to compete with other
download managers, it is just a "hopefully useful" addition.

---

<br>

# Versions change log:
ChangeLog.txt is included in source code.

<br>

---
# How to contribute to this project:
1- by testing the application and opening
[new issue](https://github.com/firedm/FireDM/issues/new) for bug
reporting, feature request, or suggestions.  
2- check
[developer guidelines](https://github.com/firedm/FireDM/blob/master/docs/developer_guide.md).  
3- check
[todo list](https://github.com/firedm/FireDM/blob/master/todo.md).  
4- check open issues, see if you can help.  
5- fork this repo and pull request

<br>

---

# Some articles/reviews on this project*:
- [ghacks](https://www.ghacks.net/2020/08/13/firedm-is-an-open-source-download-manager-that-can-download-videos-and-playlists/)
- [softpedia](https://www.softpedia.com/get/Internet/Download-Managers/FireDM.shtml)
- [hackermilk](https://www.hackermilk.info/2020/01/an-open-source-alternative-to-internet.html)

  *help edit this list by writing a comment in
  [this issue](https://github.com/firedm/FireDM/issues/136)

---

# contributors:
Please check
[contributors.md](https://github.com/firedm/FireDM/blob/master/contributors.md)
for a list of contributors

---

# Feedback:
your feedback is most welcomed by filling a
[new issue](https://github.com/firedm/FireDM/issues/new)  
or email to: [email protected] <br>


---

Author:  
Mahmoud Elshahat  
2019-2021