A Python Flask website that calculates the total duration of the videos in a YouTube playlist
https://ytpl-length-calculator.onrender.com
video.mov
Get the YouTube data v3 API key from console.cloud.google.com
inside .env file
YT_API_KEY = "your api key"
git clone https://github.com/raghavtwenty/ytpl-length-calculator.git
cd ytpl-length-calculator/
Place the .env file in this folder
pip install -r requirements.txt
python application.py
Introducing a Python Flask web application tailored for YouTube enthusiasts and learners alike, providing a convenient solution to gauge the total duration of playlists. By seamlessly integrating YouTube API, users can effortlessly explore playback speed details and customize video ranges, enhancing their viewing experience and learning efficiency.
- PC or Laptop
- Pogramming language: Python
- Frameworks: Flask
- API: YouTube data V3 API key
This is flask web app which can be used to know the total duration of the youtube playlist.
- The flask app is first started, It runs on localhost 5000 (port number).
- The YouTube playlist link is given as the input.
- It retrieves videos details for the given playlist link using YouTube API.
- Asks for custom video range from the user.
- Based on the range, It outputs the playback speed & corresponding duration.
- Able to find the total duration of the youtube playlist.
- Custom video range of the playlist can be given as the input.
END OF README