Skip to content

Commit

Permalink
Merge pull request #3 from Melon-Rusk/update_readme_file
Browse files Browse the repository at this point in the history
added a html file
  • Loading branch information
Melon-Rusk committed Dec 17, 2022
2 parents e433b35 + ebce4ef commit 1707f1a
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions twitter_trending_youtube_upload.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<html>
<head>
<style>
/* Add a background color to the body element */
body {
background-color: rgb(128, 128, 85);
}
/* Add a border to the h1 element */
h1 {
border: 2px solid rgb(206, 75, 75);
padding: 10px;
}
/* Add a color to the links */
a {
color: rgb(71, 46, 141);
}
/* Add a hover effect to the links */
a:hover {
color: red;
}
</style>
</head>
<body>
<h1>Create Engaging YouTube Videos from Twitter's Trending Topics</h1>
<h2>Introduction</h2>
<p>This project allows you to easily fetch the trending topics on Twitter for a given location, create a summary for each topic, generate a video using Google Text-to-Speech and OpenCV, merge all the videos into one, and upload the final video to YouTube. You can use this project to quickly and easily create engaging content for your YouTube channel.</p>
<p><a href="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/Melon-Rusk/Summarize-Twitter-Trending-Public">GitHub Repo</a></p>
<h2>Features</h2>
<ul>
<li>Fetch trending topics from Twitter using the Tweepy and geocoder libraries</li>
<li>Create a summary for each trending topic using the Tweepy, nltk, and transformers libraries</li>
<li>Generate a video using the gtts, cv2 (OpenCV), and moviepy libraries</li>
<li>Concatenate multiple videos into one using moviepy</li>
<li>Upload the final video to YouTube using the googleapiclient library</li>
</ul>
<h2>Dependencies</h2>
<ul>
<li>Tweepy</li>
<li>geocoder</li>
<li>nltk</li>
<li>transformers</li>
<li>gtts</li>
<li>cv2 (OpenCV)</li>
<li>moviepy</li>
<li>googleapiclient</li>
</ul>
<h2>Quick Start</h2>
<ol>
<li>Clone the repository:
<pre>git clone https://github.com/Melon-Rusk/Summarize-Twitter-Trending-Public</pre>
</li>
<li>Navigate to the project directory:
<pre>cd Summarize-Twitter-Trending-Public</pre>
</li>
<li>Install the dependencies:
<pre>pip install -r requirements.txt</pre>
</li>
<li>Update the credentials in the config file.</li>
<li>Run the project:
<pre>python main.py</pre>
</li>
</ol>
<hr />

0 comments on commit 1707f1a

Please sign in to comment.