{"id":20962032,"url":"https://github.com/faytranevozter/playlist-bot","last_synced_at":"2026-02-08T12:06:00.414Z","repository":{"id":220148010,"uuid":"750880500","full_name":"faytranevozter/playlist-bot","owner":"faytranevozter","description":"Telegram bot for YouTube Music with playlist management, lyrics, and collaborative voting","archived":false,"fork":false,"pushed_at":"2024-07-29T08:13:23.000Z","size":3862,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-25T16:07:33.376Z","etag":null,"topics":["chatbot","inline-query","music-automation","music-telegram-integration","nodejs","playlist-management","playlist-queue","prisma","puppeteer","telegraf","telegram-bot","youtube-music"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/faytranevozter.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-01-31T14:05:16.000Z","updated_at":"2024-12-12T10:36:09.000Z","dependencies_parsed_at":"2024-07-29T11:16:55.717Z","dependency_job_id":null,"html_url":"https://github.com/faytranevozter/playlist-bot","commit_stats":null,"previous_names":["faytranevozter/playlist-bot"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faytranevozter%2Fplaylist-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faytranevozter%2Fplaylist-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faytranevozter%2Fplaylist-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faytranevozter%2Fplaylist-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/faytranevozter","download_url":"https://codeload.github.com/faytranevozter/playlist-bot/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248473127,"owners_count":21109628,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chatbot","inline-query","music-automation","music-telegram-integration","nodejs","playlist-management","playlist-queue","prisma","puppeteer","telegraf","telegram-bot","youtube-music"],"created_at":"2024-11-19T02:21:13.847Z","updated_at":"2026-02-08T12:05:55.390Z","avatar_url":"https://github.com/faytranevozter.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Playlist Bot for YouTube Music\n\n## Overview\n\nThis application allows you to control a playlist of songs on YouTube Music using Puppeteer and a Telegram bot. With this setup, you can easily manage and enjoy your favorite music without having to manually interact with YouTube Music.\n\n## Features\n\n| Feature                 | Description                                                  |\n| ----------------------- | ------------------------------------------------------------ |\n| Search Music            | Search for a specific song to add to the playlist.           |\n| Add to Queue            | Add a song to the end of the playlist.                       |\n| Add to Play Next        | Add a song to play next in the playlist.                     |\n| Play                    | Start playing the playlist.                                  |\n| Pause                   | Pause the currently playing song.                            |\n| Info Current Playing    | Get information about the currently playing song.            |\n| Next                    | Skip to the next song in the playlist.                       |\n| Get Lyrics              | Retrieve the lyrics of the currently playing song.           |\n| Vote for Next           | Allow users to vote for the next song in the playlist.       |\n| Subscribe \u0026 Unsubscribe | Allow users to subscribe and unsubscribe from notifications. |\n\n## Under Development Features\n\n| Feature        | Description                                 |\n| -------------- | ------------------------------------------- |\n| Setting Volume | Adjust the volume of the music playback.    |\n| Shuffle        | Shuffle the order of songs in the playlist. |\n\n## Prerequisites\n\nBefore running the application, ensure you have the following:\n\n- Node.js installed on your machine\n- Telegram bot token (create a bot on Telegram and obtain the token)\n  - Important: Make sure your Telegram bot has the following settings enabled:\n    - [Inline Mode](https://core.telegram.org/bots/api#inline-mode): Enable inline mode for the bot to process inline queries.\n    - [Inline Feedback](https://core.telegram.org/bots/inline#collecting-feedback): Allow users to provide feedback directly from inline results.\n- Google Chrome or Chromium browser installed (for Puppeteer)\n- Database: Currently configured with SQLite. You can change the database configuration in the `prisma/schema.prisma` and `.env` file.\n\n## Installation\n\nClone the repository:\n\n```bash\ngit clone https://github.com/faytranevozter/playlist-bot.git\n```\n\nInstall dependencies:\n\n```bash\ncd your-repository\npnpm install # or npm install\n```\n\nCreate a .env file in the project root and add the following:\n\n```env\nDATABASE_URL=your_database_url\nTELEGRAM_BOT_TOKEN=your_telegram_bot_token\n```\n\nRun database migration:\n\n```bash\npnpm migrate # or npm run migrate\n```\n\nBuild the application:\n\n```bash\npnpm build # or npm run build\n```\n\nRun the application:\n\n```bash\npnpm start # or npm start\n```\n\n## Usage\n\n1. Start a chat with your Telegram bot.\n1. Use the provided commands to control the playlist as described in the features section.\n1. To search music just mention the bot and keyword `@playlistbot justin beiber`\n1. Sit back, relax, and enjoy the music!\n\n## Contributing\n\nFeel free to contribute to the project by opening issues or submitting pull requests. Any improvements or bug fixes are highly appreciated.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\nThanks to the creators of [Puppeteer](https://pptr.dev/), [Telegraf](https://github.com/telegraf/telegraf), and [Prisma](https://www.prisma.io/) for their amazing tools.\n\n## Contact\n\nFor any questions or support, you can reach out to [mfahrurrifai@gmail.com].\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffaytranevozter%2Fplaylist-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffaytranevozter%2Fplaylist-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffaytranevozter%2Fplaylist-bot/lists"}