So I want to download videos from reddit, I've seen projects on github but I'm very new to python and don't know how it works, if someone could explain I'd appreciate it, I found this project It works but it seperates audio and video and I want it all in one, I think you can combine those using ffmpeg but I don't know how that works either, also how do I configure some of this stuff like where the videos save and quality, here's my code.
from redvid import Downloader
import praw
reddit = praw.Reddit(client_id = "a", client_secret = "b", user_agent = "c")
subreddit = reddit.subreddit("learnpython")
hot = subreddit.hot(limit=5)
downloader = Downloader(max_q=True)
for submission in hot:
downloader.url = submission.url
reddit.download()