This Python script allows you to convert YouTube Shorts videos into blog posts automatically. It downloads the video, extracts audio, transcribes it, generates a blog using the Ollama language model, and posts it to Google Blogger with an embedded thumbnail. This tool is perfect for micro-learning and micro-earning by leveraging free tools like Google Blogger for monetization.
The script follows a step-by-step process to convert YouTube Shorts videos into blog posts:
- The script uses the
yt-dlp
library to download the YouTube Shorts video in MP4 format. - The video title and ID are extracted for naming and identification purposes.
- The script uses MoviePy to extract audio from the downloaded video.
- The audio is saved as a
.wav
file for transcription.
- The script uses the Vosk open-source speech recognition model to transcribe the audio into text.
- Vosk supports multiple languages and provides accurate transcriptions.
- The transcribed text is passed to the Ollama language model (version 3.2) to generate a blog post.
- The blog includes a title and body, written in a friendly and easy-to-understand style.
- The script extracts random frames from the video using the
imageio
library. - These frames are resized and cropped to fit a landscape aspect ratio.
- The script authenticates with the Google Blogger API using OAuth 2.0.
- It creates a new blog post with the generated content and embeds the first frame as a thumbnail.
- The blog post is published to your Blogger account.
-
Automated Blog Creation:
- Converts YouTube Shorts videos into blog posts with minimal user input.
- Generates a blog title and body using the Ollama language model.
-
Micro-Learning:
- Transcribes video content into text for easy reading and learning.
- Ideal for creating educational content from short videos.
-
Micro-Earning:
- Automatically posts blogs to Google Blogger, enabling monetization through ads.
- Free to use with no additional costs for tools (except YouTube API if used).
-
Customizable:
- Supports scraping multiple Shorts links from a YouTube channel.
- Allows processing a single video link for quick blog creation.
-
Open Source:
- Free to use, modify, and distribute.
Before using this script, ensure you have the following installed and set up:
FFmpeg is required to extract audio from videos. Install it using the following steps:
-
Windows:
- Download FFmpeg from https://ffmpeg.org/download.html.
- Extract the downloaded zip file.
- Add the
bin
folder to your system's PATH environment variable.
-
Linux:
sudo apt update sudo apt install ffmpeg
-
macOS:
brew install ffmpeg
Ollama is used to generate blog content from video transcripts. Install it as follows:
- Visit the Ollama GitHub repository for installation instructions.
- Download and install Ollama for your operating system.
- Ensure the Ollama server is running locally.
Install the required Python libraries using pip
:
pip install -r requirements.txt
- Go to the Google Cloud Console.
- Create a new project.
- Enable the Blogger API for your project.
- Create OAuth 2.0 credentials and download the
credentials.json
file. - Place the
credentials.json
file in the project directory.
- Clone this repository:
git clone https://github.com/talha828/Reel-To-Blog.git cd Reel-To-Blog
- Install the required Python libraries:
pip install -r requirements.txt
-
Run the script:
python main.py
-
Choose one of the following options:
- Scrape a YouTube Channel:
- Enter the YouTube channel URL (e.g.,
https://www.youtube.com/@zackdfilms
). - Specify the number of Shorts links to scrape.
- Enter the YouTube channel URL (e.g.,
- Create a Single Blog Post:
- Provide a YouTube Shorts link directly.
- Scrape a YouTube Channel:
-
The script will:
- Download the video.
- Extract audio using MoviePy.
- Transcribe the audio using the Vosk open-source model.
- Generate a blog using Ollama.
- Post the blog to Google Blogger with an embedded thumbnail.
- Convert short, engaging videos into readable blog posts.
- Ideal for summarizing educational content or tutorials.
- Automatically post blogs to Google Blogger for monetization.
- Earn through Google AdSense by driving traffic to your blog.
- Uses free tools like Google Blogger, Ollama, MoviePy, and Vosk.
- No additional costs for software or APIs (except YouTube API if used).
- Automates the entire process of downloading, transcribing, and posting.
- Focus on creating content while the script handles the rest.
-
Scrape a YouTube Channel:
- Input:
https://www.youtube.com/@zackdfilms
- Output: 50 Shorts links scraped and processed into blog posts.
- Input:
-
Create a Single Blog Post:
- Input:
https://www.youtube.com/shorts/PZ3EInK8eRU
- Output: A blog post titled "Why Do Nose Bleeds Happen?" with transcribed content.
- Input:
- Ensure the video title does not contain invalid characters (e.g.,
?
,!
, emojis). The script automatically sanitizes file names.
- Start the Ollama server locally before running the script.
- Verify that FFmpeg is installed and added to your system's PATH.
- Ensure the
credentials.json
file is correctly placed in the project directory. - Authenticate using the OAuth flow when prompted.
Contributions are welcome! If you have suggestions or improvements, feel free to open an issue or submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.
If you find this project helpful, consider giving it a ⭐ on GitHub. For questions or issues, open an issue in the repository.
Happy blogging! 🚀