https://github.com/kentaroy47/youtube-stream-downloader
Download Youtube, Twitch, whatever videos with a Python script.
https://github.com/kentaroy47/youtube-stream-downloader
apscheduler livestream python video youtube
Last synced: 2 months ago
JSON representation
Download Youtube, Twitch, whatever videos with a Python script.
- Host: GitHub
- URL: https://github.com/kentaroy47/youtube-stream-downloader
- Owner: kentaroy47
- Created: 2018-12-12T19:28:02.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-05-17T14:38:34.000Z (over 3 years ago)
- Last Synced: 2025-07-18T17:35:31.744Z (3 months ago)
- Topics: apscheduler, livestream, python, video, youtube
- Language: Python
- Homepage:
- Size: 16.6 KB
- Stars: 13
- Watchers: 0
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# What is this?
Use Python to download YoutubeLiveVideos.I used this to construct a long duration video dataset for my research.
# How?
`simple_download.py`: Just download a youtube video.`download.py`: We use `Apscheduler` to download the video every hour.
Python >= 3.5 required.
# Requirements
you need apscheduler and streamlink:```
git clone https://github.com/kentaroy47/youtube-stream-downloader.git
pip install apscheduler
pip install streamlink==3.2.0
```# Usage
Set video URL in `download.py`
```download.py
### CHANGE THE URL HERE ####
URL = 'https://www.youtube.com/watch?v=1EiC9bvVGnk'
```Then, run:
```
python downloader.py```