Skip to content

Commit e930135

Browse files
committed
docs(readme): humanize pass — drop em dashes, promo phrasing, tailing negations
1 parent c6eec75 commit e930135

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@
1717

1818
</div>
1919

20-
**TelegramMediaRelayBot** is a self-hosted Telegram bot that automates downloading media from 1000+ platforms (via [yt-dlp](https://github.com/yt-dlp/yt-dlp/tree/master) and gallery-dl) and forwards it to your contacts. It eliminates manual downloads, simplifies media sharing across platforms users don't have, and gives full control over privacy by running entirely on your infrastructure.
20+
**TelegramMediaRelayBot** is a self-hosted Telegram bot that downloads media from 1000+ platforms (via [yt-dlp](https://github.com/yt-dlp/yt-dlp/tree/master) and gallery-dl) and forwards it to your contacts. You send a link, it fetches the media and passes it to the people you pick. Because it runs on your own machine, the files and your contact list stay off third-party servers, which also lets you share from platforms your contacts don't use.
2121

2222
---
2323

2424
## Key Features
2525

26-
- **Multi-platform downloads**: yt-dlp for video, gallery-dl for galleries — tried as a fallback chain. Full list of [supported sites](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md).
27-
- **Contact forwarding**: managed contact list inside the bot downloaded media is forwarded automatically, with per-contact and per-link privacy rules.
28-
- **Large files up to 2 GB**: optional local Telegram Bot API server; media is streamed from disk instead of buffered in memory.
26+
- **Multi-platform downloads**: yt-dlp for video, gallery-dl for galleries, run as a fallback chain. Full list of [supported sites](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md).
27+
- **Contact forwarding**: a contact list lives inside the bot, and downloaded media is forwarded automatically, with per-contact and per-link privacy rules.
28+
- **Large files up to 2 GB**: with an optional local Telegram Bot API server, media is streamed from disk instead of buffered in memory.
2929
- **Resumable queue**: pending downloads are persisted, so a crash or reboot never loses a request.
30-
- **Flexible proxying**: HTTP / SOCKS5 / Tor, with per-site rules — route some domains through a proxy and others directly.
31-
- **Self-hosted**: full control over your data and privacy. No third-party services.
30+
- **Proxy support**: HTTP, SOCKS5, or Tor, with per-site rules that send some domains through a proxy and others directly.
31+
- **Self-hosted**: the bot runs entirely on your own infrastructure, with no third-party services in the loop.
3232

3333
## Tech Stack
3434

@@ -45,9 +45,9 @@
4545
## Architecture Highlights
4646

4747
- **Self-healing long polling**: the update loop runs as a hosted service that logs and skips a failing update and restarts on error, so the bot can't silently stop responding.
48-
- **Modular download backends**: yt-dlp and gallery-dl sit behind one `IMediaDownloader` interface and run as an ordered fallback chain adding a backend is one class.
48+
- **Modular download backends**: yt-dlp and gallery-dl sit behind one `IMediaDownloader` interface and run as an ordered fallback chain, so adding a backend means adding one class.
4949
- **Per-host proxy routing**: named proxies resolved per download host from typed, startup-validated configuration.
50-
- **2 GB delivery path**: with a local Bot API server the bot sends media by file path off a shared volume — no HTTP upload, no memory blow-up.
50+
- **2 GB delivery path**: with a local Bot API server the bot sends media by file path off a shared volume, so it never uploads the file over HTTP or holds it in memory.
5151
- **Persistent download queue** with bounded concurrency; jobs are resumed after a restart.
5252
- **Repository-pattern data layer** over SQLite with schema migrations.
5353

@@ -67,23 +67,23 @@ Active development plans are tracked on the latest [release page](https://github
6767
- *(Under consideration)* Text formatting support, in-bot administrative functions.
6868
- General improvements and fixes.
6969

70-
[CHANGELOG.md](CHANGELOG.md) full history of changes.
70+
[CHANGELOG.md](CHANGELOG.md): full history of changes.
7171

7272
## Logging
7373

7474
The bot logs all actions to console; file logging is on the roadmap. Logging level is configurable via the settings file.
7575

7676
## Origin
7777

78-
The project started from my girlfriend's complaints about manually downloading TikTok videos for me I don't use the platform myself. What began as a one-off automation evolved into a full media-relay ecosystem: multi-user, multi-platform, plugin-extensible. The mission stayed simple give people a self-hosted way to share content across platforms without surrendering their data to any single service.
78+
The project started from my girlfriend's complaints about manually downloading TikTok videos for me, since I don't use the platform myself. What began as a one-off automation grew into a full media-relay ecosystem: multi-user, multi-platform, plugin-extensible. The mission stayed simple: give people a self-hosted way to share content across platforms without surrendering their data to any single service.
7979

8080
## License
8181

8282
This project is licensed under **AGPL-3.0**. See [LICENSE](LICENSE) for details.
8383

8484
## Feedback
8585

86-
If you have questions, suggestions, or found a bug please open an [issue](https://github.com/ZenonEl/TelegramMediaRelayBot/issues).
86+
If you have questions, suggestions, or found a bug, please open an [issue](https://github.com/ZenonEl/TelegramMediaRelayBot/issues).
8787

8888
## Contributing
8989

0 commit comments

Comments
 (0)