Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/callsmusic/tgmusicbot
Telegram bot for downloading audio from YouTube, SoundCloud & MixCloud.
https://github.com/callsmusic/tgmusicbot
heroku heroku-app heroku-deployment heroku-ready music music-bot pyrogram pyrogram-bot telegram telegram-bot telegram-music-bot youtube-dl
Last synced: about 2 months ago
JSON representation
Telegram bot for downloading audio from YouTube, SoundCloud & MixCloud.
- Host: GitHub
- URL: https://github.com/callsmusic/tgmusicbot
- Owner: callsmusic
- License: agpl-3.0
- Created: 2021-03-21T07:12:34.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-23T16:58:32.000Z (over 2 years ago)
- Last Synced: 2024-08-09T13:15:30.640Z (6 months ago)
- Topics: heroku, heroku-app, heroku-deployment, heroku-ready, music, music-bot, pyrogram, pyrogram-bot, telegram, telegram-bot, telegram-music-bot, youtube-dl
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 96
- Watchers: 3
- Forks: 159
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Telegram Music Bot
Telegram Music Bot for YouTube/SoundCloud/Mixcloud
This bot downloads and sends the audio when someone send a YouTube/SoundCloud/MixCloud link
in the specified chats, there is a command `/ping` which makes the bot reply with a "ping"
for checking if the bot is running.## Heroku
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/callsmusic/tgmusicbot)
## Manually
```
# Telegram API Key
# get from https://my.telegram.org/apps
export API_ID="1234567"
export API_HASH="0123456789abcdef0123456789abcdef"# Telegram Bot Token
# get from https://t.me/BotFather
export BOT_TOKEN="123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11"# One or more user/group username/id the bot serve to,
# separate with space
export MUSIC_CHATS="-100123456789 username"# install ffmpeg
apt install ffmpegvirtualenv venv
venv/bin/pip install -U -r requirements.txt
venv/bin/python tgmusicbot.py
```## License
AGPL-3.0-or-later
```
tgmusicbot, Telegram audio downloader bot
Copyright (C) 2021 Dash EclipseThis program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.You should have received a copy of the GNU Affero General Public License
along with this program. If not, see .
```