pydownloader4downloads.khin.../README.md

45 lines
1.2 KiB
Markdown
Raw Normal View History

2024-01-16 09:41:02 +00:00
# pydownloader4[downloads.khinsider](https://downloads.khinsider.com/)
Download almost any album from [downloads.khinsider](https://downloads.khinsider.com/) using a multithreaded python script
2024-01-16 09:37:07 +00:00
## How to use the script
Download the source code by running git clone
```
git clone https://github.com/OlaYZen/pydownloader4downloads.khinsider.git
```
2024-01-16 09:37:37 +00:00
Install the required python libraries by downloading the requirements.txt found in the source code and running the following command
2024-01-16 09:37:07 +00:00
```
pip install -r requirements.txt
```
Start the program using Python and enter the album URL of the website by running
```
python Downloader.py
2024-01-16 09:37:07 +00:00
```
2024-01-16 09:43:18 +00:00
## Info
The script tries to find FLAC, MP3 and M4A files. It prioritizes FLAC files but if there isnt then it tries MP3 and if both are misisng then M4A.
2024-01-16 10:15:14 +00:00
The downloaded files will be "Audio files". By default the folder will be created where the python script is located.
2024-01-16 10:15:14 +00:00
2024-01-16 23:34:30 +00:00
## Custom download path
Find "album_directory = os.path.join('Audio files', sanitized_album_name)" and replace it with the following code
2024-01-16 10:15:14 +00:00
### Windows
```
album_directory = os.path.join(r'C:\your\custom\path', sanitized_album_name)
2024-01-16 10:15:14 +00:00
```
### Linux
```
album_directory = os.path.join('/your/custom/path', sanitized_album_name)
2024-01-16 10:15:14 +00:00
```