{"id":13989209,"url":"https://github.com/VideoMasters/VideoDownloaderBot","last_synced_at":"2025-07-22T10:31:33.197Z","repository":{"id":41408548,"uuid":"379242625","full_name":"VideoMasters/VideoDownloaderBot","owner":"VideoMasters","description":"Download videos using this telegram bot","archived":false,"fork":false,"pushed_at":"2023-04-25T05:39:47.000Z","size":1052,"stargazers_count":38,"open_issues_count":3,"forks_count":125,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-11-29T08:38:18.800Z","etag":null,"topics":["bot","hacktoberfest","hacktoberfest2021","telegram","telegram-bot"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/VideoMasters.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2021-06-22T11:19:42.000Z","updated_at":"2024-11-18T20:32:49.000Z","dependencies_parsed_at":"2024-01-18T04:09:20.865Z","dependency_job_id":"5c3d538c-347b-451e-adc6-045adf58d782","html_url":"https://github.com/VideoMasters/VideoDownloaderBot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/VideoMasters/VideoDownloaderBot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VideoMasters%2FVideoDownloaderBot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VideoMasters%2FVideoDownloaderBot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VideoMasters%2FVideoDownloaderBot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VideoMasters%2FVideoDownloaderBot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/VideoMasters","download_url":"https://codeload.github.com/VideoMasters/VideoDownloaderBot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VideoMasters%2FVideoDownloaderBot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266475119,"owners_count":23934885,"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","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"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","hacktoberfest","hacktoberfest2021","telegram","telegram-bot"],"created_at":"2024-08-09T13:01:33.646Z","updated_at":"2025-07-22T10:31:32.780Z","avatar_url":"https://github.com/VideoMasters.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"# VideoDownloaderBot\nDownload videos from various websites using this telegram bot\n\n### Docker (Easiest)\n- Make sure docker is installed and running\n```sh\n    # Create ~/vdb.env file with appropriate values.\n    docker run -d --restart=always --env-file ~/vdb.env deshdeepak1/video_downloader_bot:latest\n```\n- Try on https://labs.play-with-docker.com/\n\n#### Manually\n- Make sure docker is installed and running\n```sh\n    git clone https://github.com/DaruaraFriends/VideoDownloaderBot\n    cd VideoDownloaderBot\n    docker build -t vdb .\n    cp sample.env .env\n    # Change values in .env\n    docker run -d --restart=always --env-file .env vdb\n```\n\n### Colab\n[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/DaruaraFriends/VideoDownloaderBot/blob/main/VideoDownloaderBot.ipynb)\n\n### Heroku\n\n#### Easy Way\n[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/DaruaraFriends/VideoDownloaderBot)\n\n#### Docker\n- Make sure heroku-cli is installed  `npm i -g heroku`\n```sh\n    heroku login\n    git clone https://github.com/DaruaraFriends/VideoDownloaderBot\n    cd VideoDownloaderBot\n    heroku create\n    heroku stack:set container\n    git push heroku main\n```\n- Help: https://devcenter.heroku.com/articles/build-docker-images-heroku-yml\n\n- Add all environment vars either from cli or heroku settings\n    ```sh\n        heroku config:set ENV1=abc ENV2=123\n    ```\n\n### Python\n- Make sure python3, ffmpeg, aria2 are installed\n```sh\n    git clone https://github.com/DaruaraFriends/VideoDownloaderBot\n    cd VideoDownloaderBot\n    cp sample.env .env\n    # Change values in .env\n    python3 -m venv venv\n    . ./venv/bin/activate\n    pip install -r ./requirements.txt\n    python3 bot.py\n```\n\n### .env\n```sh\n    API_ID=12345 # Get from https://my.telegram.org/apps\n    API_HASH=abcdef # Get from https://my.telegram.org/apps\n    BOT_TOKEN=123:abc # Get from https://t.me/BotFather\n    AUTH_USERS=123,456 # User ids of those who can use bot anywhere without limit\n    GROUPS=123,456 # Chat ids where you wan't many to use the bot\n    JSON_GROUPS=123,456 # Chat ids where you wan't many to use the bot to download from jsons\n    THUMB=thumb.jpg # Url of video thumbnail. Leave to use video's thumbnail\n    NAME=Deshdeepak # Name to send with video\n```\n\n### Instructions\n- /download_link - To download from links\n- /download_json - To download from jsons\n- /download_link@bot_username \u0026 /download_json@bot_username - To use in groups\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FVideoMasters%2FVideoDownloaderBot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FVideoMasters%2FVideoDownloaderBot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FVideoMasters%2FVideoDownloaderBot/lists"}