Skip to content

superman-enamy/utube

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Telegram Bot to Upload videos to Youtube written in Python3.

Contents

Info

This is a simple hobby project which I was really curious about to implement. This is a Telegram bot which uses Youtube Data API v3 to upload videos to Youtube.

Libraries Used

Setup

❗ This project requires Python3.6 or higher

Clone and setup virtual environment

$ git clone https://github.com/odysseusmax/utube.git

$ cd utube

$ virtualenv venv

$ source venv/bin/activate

Environment Variables

  • BOT_TOKEN(Required) - Get your bot token from Bot Father.
  • SESSION_NAME(optional) - Your bot's username.
  • API_ID(Required) - Your telegram api id, get from Manage Apps.
  • API_HASH(Required) - Your telegram api hash, get from Manage Apps.
  • CLIENT_ID(Required) - Your google client id.
  • CLIENT_SECRET(Required) - Your google client secret.
  • BOT_OWNER(Required) - Telegram id of bot owner.
  • AUTH_USERS(optional) - Telegram id's of authorised users, separated by ,.

Getting your CLIENT_ID and CLIENT_SECRET

  • Head to Google console, create a new project named Youtube Uploader and enable API'S AND SERVISES. Search for YOUTUBE DATA API v3 and enable the API. Go to Credentials page, select your project Youtube Uploader create a new credential with other as type. Copy the CLIENT_ID and CLIENT_SECRET and paste them to config.py

Install requirements Run :

$ pip3 install -r requirements.txt

Run bot

Lets run our bot for the first time!

$ python3 -m bot

If you did everything correctly, the bot should be running. Go do /start to see if the bot is live or not. Follow the instructions provided by bot to setup authorisation and to start uploading.

Or the easy way of directly deploying to heroku

Deploy

Status

This project is actively maintained and will continue so until I'm tired of it.

Special notes

  • With the Youtube Data API you are awarded with 10,000 points of requests. For one video upload it costs 1605 points, regardless of file size, which calculates to about 6 uploads daily. Once you have exhausted your daily points, you have to wait till daily reset. Resets happens at 0:00 PST, i.e. 12:30 IST. So make your uploads count.

  • Uploading copyright contents will leads to immediate blocking of the video, and will not be added to your MyVideos section of youtube. But still the video can be played directly through the link provided by the bot.

  • All the videos are uploaded as private. You may change it after youtube processes the video.

Screenshots

Upload

Video Tutorial

Here's a YouTube tutorial video for deploying the bot on Heroku. Video Link.

Contact

You can contact me @odysseusmax.

License

Code released under GNU General Public License v3.0.

About

Telegram Bot for Youtube upload

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%