- Download local hosted videos with audio.
- Requires only
requests
andFFmpeg
. - Ability to decide quality.
- Bypass bot detection.
redvid
requires Python 3.
Use pip
to install the package from PyPI:
pip install redvid
Or, install the latest version of the package from GitHub:
pip install git+https://github.com/elmoiv/redvid.git
Using redvid to download a video:
from redvid import Downloader
reddit = Downloader(max_q=True)
reddit.url = 'https://v.redd.it/c8oic7ppc2751'
reddit.download()
or
__import__('redvid').Downloader(url='https://v.redd.it/c8oic7ppc2751', max_q=True).download()
https://m.wikihow.com/Install-FFmpeg-on-Windows
(You may need to restart your pc after applying these steps)
sudo apt install ffmpeg
-
install Homebrew:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
-
Then:
$ brew install ffmpeg
Here are a few sample tests:
- Video only
- Video with audio
- [NEW] Get best quality according to given size (Automated)
- Choose PATH
- Auto-detect maximum quality
- Auto-detect minimum quality
- Skip file check and overwrite
- Silent download (No logging)
- Set maximum video size
- Set maximum video duration
- #15 Fixed bug when fetching reddit videos with expiry date
- #11 redvid can now decide best quality according to given size.
- Added support for old reddit videos.
- Fixed bug where video qualities list can't be parsed.
- #8 Added the ability to disable logging.
- Maximum video size can be set.
- #9 Maximum video duration can be set.
- #7 Fixed a bug with quality fetching.
download()
will return file path again.
- #5 Can now download urls with v.reddit.it fromat.
- #4 PATH can be choosed instead of current dir.
- #3 Max/Min quality can be automatically set to skip quality query.
- Added ffmpeg encoding to videos with no sound to be uploadable on some platforms.
- Adjusted printed text and progress bars.
Please contribute! If you want to fix a bug, suggest improvements, or add new features to the project, just open an issue or send me a pull request.