Releases: mrjx-dev/mr-myter
Feature added - Automatic set tags
What's Changed
Full Changelog: v0.3.0-alpha...v0.4.0-alpha
New Feature (Update Video Description)
Mr-Myter-v0.2.0-alpha
Full Changelog: https://github.com/mrjxtr/mr-myter/commits/v0.2.0-alpha
🤖 Mr-Myter-v0.2.0-alpha (Automated Mass YouTube Uploader)
📜 History
As mentioned on my GitHub profile, I am also a YouTube Content Strategist, Manager, and SEO Specialist. I found myself regularly uploading YouTube videos in bulk, scheduling them, and ensuring that everything from the titles to the descriptions and tags are perfect for SEO. To optimize my workflow and save time, I decided to put my Python programming skills to the test and created this tool. This allows me more free time to focus on creating more content and improving my strategies.
📝 Project Summary
Mr-MYTer is an automated tool for bulk video uploads to YouTube.
Key features include:
- Automated video and thumbnail uploads
- Batch processing
- Error handling and status updates
- Option to restart after completion
Using Selenium WebDriver, it simulates user actions in YouTube Studio, streamlining the upload process for content creators. This tool saves time for those who regularly upload multiple videos to YouTube.
🛠️ Requirements
- Python 3.10 or later
- Chrome Browser installed
- pip (Python package installer)
- Required Python packages:
- selenium
- python-dotenv
- webdriver-manager
- A .env file in the project root your
YOUTUBE_STUDIO_URL
set
🚀 Steps to run
-
Install Python 3.10 or later.
-
Install the required packages:
In Powershell:
pip install selenium python-dotenv webdriver-manager
Or
pip install -r requirements.txt
-
Create a .env file in the root of the project with the following:
YOUTUBE_STUDIO_URL="https://studio.youtube.com/channel/..your-channel-id.."
-
Add the all videos and thumbnails you want to upload to the
videos
folder.The folder should look like this:
youtube-uploader <- project root directory │ ├── .env <- environment variables ├── LICENCE <- licence ├── README.md <- Project README │ ├── src <- source code directory │ ├── main.py <- main script │ └── utility <- modules directory │ └── videos <- videos directory ├── video1.mp4 <- your video1 file ├── video1.jpg <- your thumbnail1 file ├── video2.mp4 <- your video2 file ├── video2.png <- your thumbnail2 file ├── video3.mp4 <- ... └── ... <- ...
-
Rename videos and their corresponding thumbnails with the same name of the title you want to give the YouTube video.
-
Navigate to the root folder of the project and start Powershell.
-
Run the following command to start the script:
python .\src\main.py
🔄 Process Steps
- Starts Chrome with remote debugging enabled.
- Initializes the WebDriver and navigates to the YouTube Studio URL.
- Checks for video files in the specified folder.
- For each video file:
a. Navigates to the YouTube Studio upload page.
b. Clicks the "Create" button and selects "Upload videos".
c. Uploads the video file.
d. Renames the video with the filename (without extension).
e. Uploads the thumbnail if a matching one is found.
f. Waits for processing and prepares for the next video. - After uploading all videos, asks the user if they want to exit or restart the process.
- If restarting, the script goes back to step 3.
- If exiting, the script closes the WebDriver and terminates.
Note: The script handles various exceptions and provides status updates throughout the process.
📄 License
This project is licensed under the MIT License. See the LICENSE file for more details.
🤝 Contributing
Contributions are welcome! Please feel free to submit a PR.