I'm trying to use instaloader to download instagram videos (reels) via "shortcode" of those videos (essentially the link to the video) this is my current approach:
import instaloader
L = instaloader.Instaloader()
post = instaloader.Post.from_shortcode(L.context, "SHORTCODE")
L.download_post(post, target=post.owner_username)
it's pretty simple but it simply does not download videos with audio. Is there a way to fix this/prevent this in instaloader or are there any different, better libraries that could be used for this task?