libvideo
libvideo copied to clipboard
A lightweight .NET library to download YouTube videos.
Youtube added new itags/formats. We should add to our project and add new video or audio properties Code File : https://github.com/omansak/libvideo/blob/master/src/libvideo/YouTubeVideo.Format.cs Reference : https://gist.github.com/AgentOak/34d47c65b1d28829bb17c24c04a0096f#gistcomment-4417254 https://github.com/pytube/pytube/blob/master/pytube/itags.py
I have upgraded to the new version the GetAllVideos function is not working. The following is my code: var url = "https://www.youtube.com/watch?v=Sf5XYmNlhpY"; var youtube = YouTube.Default; var videos = youtube.GetAllVideos(url).ToList();...
hello, I'm wondering if anyone knows how to bypass the LOGIN_REQUIRED error? The line of code below is throwing the error "Video has unavailable stream". `var allVideos = await youTube.GetAllVideosAsync(link);`...
Something is wrong with GetBytes function. I have tried the following code and it saved the file but the file can't be played: ``` var url = "https://www.youtube.com/watch?v=Sf5XYmNlhpY"; var youtube...
https://github.com/omansak/libvideo/blob/ecb326443dd0903f42ef72fcdfd2303316894e75/src/libvideo/libvideo.csproj#L20 Why is the TargetFramework set to .NET Standard 1.1? Since .NET Framework 4.5 has reached its end of support, I believe switching to .NET Standard 2.0 should not cause...