Hotstream Downloader CLI is a simple (hopefully) Bash script for easily downloading series and movies from hotstream.at. It uses wget to handle the downloads.
• Download individual movies
• Download specific episodes of a series
• Download entire seasons
• Download complete series
• Support for episode ranges
Download and make the script executable:
chmod +x Hotstream_Downloader.shThe general command structure is:
./Hotstream_Downloader.sh <fileName> <ID> [<season_number>] [<episode_number>] | [<episode_number> | -<end_episode>] -fDownload the movie Alien with ID 1234:
./Hotstream_Downloader.sh "Alien" 1234Download episode 10 of season 1 of the series X-Files with ID 51:
./Hotstream_Downloader.sh "X-Files" 51 1 10Download episodes 8 to 11 of season 3 of the series X-Files with ID 51:
./Hotstream_Downloader.sh "X-Files" 51 3 8-11Download all episodes of season 2 of the series X-Files with ID 51:
./Hotstream_Downloader.sh "X-Files" 51 2 -fDownload all episodes of the series X-Files with ID 51:
./Hotstream_Downloader.sh "X-Files" 51 -fContributions are welcome! If you want to improve this script or add new features, feel free to submit a Pull Request or open an issue.
This project is licensed under the MIT License. See the LICENSE file for details.
This script is provided for demonstration purposes only and is intended solely for personal learning and entertainment. It is not meant for commercial use, promotion, or distribution of any copyrighted material. The author assumes no responsibility for how this script is used.
If requested, I will remove the script immediately to comply with any legal or ethical concerns.