mirror of
https://github.com/Dineshkarthik/telegram_media_downloader.git
synced 2025-01-18 12:08:49 +08:00
upd: readme - supoorted files and storage directory
This commit is contained in:
parent
d30729f350
commit
3c86b60b30
1 changed files with 11 additions and 3 deletions
14
README.md
14
README.md
|
@ -16,7 +16,7 @@ A meta of last read/downloaded message is stored in the config file so that in s
|
||||||
| Category | Support |
|
| Category | Support |
|
||||||
|--|--|
|
|--|--|
|
||||||
|Language | `Python 3.6 ` and above|
|
|Language | `Python 3.6 ` and above|
|
||||||
|Download file types| document|
|
|Download media types| audio, document, photo, video, voice|
|
||||||
|
|
||||||
### ToDo:
|
### ToDo:
|
||||||
- Add support for multiple channels/chats.
|
- Add support for multiple channels/chats.
|
||||||
|
@ -58,9 +58,9 @@ chat_id: telegram_chat_id
|
||||||
last_read_message_id: 0
|
last_read_message_id: 0
|
||||||
media_types:
|
media_types:
|
||||||
- audio
|
- audio
|
||||||
|
- document
|
||||||
- photo
|
- photo
|
||||||
- video
|
- video
|
||||||
- document
|
|
||||||
- voice
|
- voice
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -74,4 +74,12 @@ media_types:
|
||||||
```sh
|
```sh
|
||||||
$ python3 media_downloader.py
|
$ python3 media_downloader.py
|
||||||
```
|
```
|
||||||
All the documents will be stored inside a direcotry named `documents/` in the same path as the pythin script.
|
All the downloaded media will be stored inside respective direcotry named in the same path as the python script.
|
||||||
|
|
||||||
|
| Media type | Download directory |
|
||||||
|
|--|--|
|
||||||
|
| audio | path/to/project/audio |
|
||||||
|
| document | path/to/project/document |
|
||||||
|
| photo | path/to/project/photo |
|
||||||
|
| video | path/to/project/video |
|
||||||
|
| voice | path/to/project/voice |
|
||||||
|
|
Loading…
Reference in a new issue