Setting the resolution for an extracted YouTube video #222
Replies: 1 comment
-
Thank you,
You can look https://github.com/omansak/libvideo/blob/master/docs/README.md |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi. I need help to download video with better resolution 720p/1080p including audio.
I have used 'GetVideo' in the code but the downloaded video is defaulted with '360p' resolution.
So I am trying out this in the code (max resolution is set as '1080p').
var videoInfos = youTube.GetAllVideos(link);
var maxResolution = videoInfos.FirstOrDefault(v => v.Resolution == 1080);
But how do I use 'GetAllVideos' to save the video with the resolution that I have set it in the code.
Beta Was this translation helpful? Give feedback.
All reactions