{"id":42992005,"url":"https://github.com/kremeshnoi/turtle-van","last_synced_at":"2026-04-04T16:10:00.967Z","repository":{"id":265438819,"uuid":"862024670","full_name":"kremeshnoi/turtle-van","owner":"kremeshnoi","description":"Discord Music Bot for my friends.","archived":false,"fork":false,"pushed_at":"2026-03-29T18:49:00.000Z","size":419,"stargazers_count":0,"open_issues_count":7,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-29T20:44:28.324Z","etag":null,"topics":["bot","discord","discord-bot","discord-music-bot","music-bot","rust","rust-lang"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kremeshnoi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-09-23T22:46:48.000Z","updated_at":"2026-03-29T18:41:18.000Z","dependencies_parsed_at":"2025-07-14T00:21:00.134Z","dependency_job_id":"6df1a27a-3efa-4441-af4a-3b9b1442e36b","html_url":"https://github.com/kremeshnoi/turtle-van","commit_stats":null,"previous_names":["kremeshnoi/turtle-van"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/kremeshnoi/turtle-van","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kremeshnoi%2Fturtle-van","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kremeshnoi%2Fturtle-van/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kremeshnoi%2Fturtle-van/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kremeshnoi%2Fturtle-van/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kremeshnoi","download_url":"https://codeload.github.com/kremeshnoi/turtle-van/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kremeshnoi%2Fturtle-van/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31405630,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["bot","discord","discord-bot","discord-music-bot","music-bot","rust","rust-lang"],"created_at":"2026-01-31T03:07:25.851Z","updated_at":"2026-04-04T16:10:00.925Z","avatar_url":"https://github.com/kremeshnoi.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg width=\"768\" height=\"254\" alt=\"afa5fdfb536a4fb6b48da95d47e35d44 - Copy\" src=\"https://github.com/user-attachments/assets/45c89ffe-1d82-425a-805d-a751942f51f7\" /\u003e\n  \u003cp\u003e\u003cb\u003eTurtle Van — Discord music bot built with Rust\u003c/b\u003e\u003c/p\u003e\n\u003c/div\u003e\n\n---\n\n## Features\n\n- YouTube playback (search, URL, playlists)\n- Queue management with shuffle support\n- Background playlist loading with cancellation\n- Slash commands\n- Built with Rust 2024 edition\n\n---\n\n## Commands\n\n| Command | Description |\n|:--------|:------------|\n| `/join` | Join your voice channel |\n| `/leave` | Leave current voice channel |\n| `/play \u003cquery\u003e` | Play YouTube content (URL, playlist, or search) |\n| `/pause` | Toggle pause/resume |\n| `/next` | Skip to the next track |\n| `/clear` | Clear entire queue and stop playlist loading |\n| `/shuffle` | Shuffle the queue |\n| `/now` | Show current track info |\n\n---\n\n## Quick Start\n\n### Prerequisites\n\n- Rust 2024 edition\n- [yt-dlp](https://github.com/yt-dlp/yt-dlp) installed via pip (not apt):\n  ```bash\n  pip3 install \"yt-dlp[default] @ https://github.com/yt-dlp/yt-dlp/archive/master.tar.gz\"\n  ```\n- [Deno](https://deno.land) in PATH — required by yt-dlp for YouTube JS challenges\n- Discord bot token with voice permissions\n\n### Installation\n\n```bash\ngit clone https://github.com/nickshelmet/turtle-van.git\ncd turtle-van\n\necho \"DISCORD_TOKEN=your_token_here\" \u003e .env\n\ncargo build --release\n./target/release/turtle-van\n```\n\n---\n\n## Tech Stack\n\n- [Serenity](https://github.com/serenity-rs/serenity) - Discord API\n- [Poise](https://github.com/serenity-rs/poise) - Slash command framework\n- [Songbird](https://github.com/serenity-rs/songbird) - Voice and audio\n- [Tokio](https://tokio.rs) - Async runtime\n- [yt-dlp](https://github.com/yt-dlp/yt-dlp) - YouTube extraction\n\n---\n\n\u003cimg width=\"160\" alt=\"Turtle Van\" src=\"https://github.com/user-attachments/assets/4da2f4b8-420c-4513-b87c-47aa26d1b34f\" /\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkremeshnoi%2Fturtle-van","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkremeshnoi%2Fturtle-van","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkremeshnoi%2Fturtle-van/lists"}