Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/omansak/libvideo
A lightweight .NET library to download YouTube videos.
https://github.com/omansak/libvideo
Last synced: 3 months ago
JSON representation
A lightweight .NET library to download YouTube videos.
- Host: GitHub
- URL: https://github.com/omansak/libvideo
- Owner: omansak
- License: bsd-2-clause
- Created: 2015-07-14T21:47:05.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-11-02T08:12:33.000Z (about 1 year ago)
- Last Synced: 2024-05-15T14:19:38.415Z (6 months ago)
- Language: C#
- Homepage:
- Size: 4.33 MB
- Stars: 521
- Watchers: 47
- Forks: 158
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- License: LICENSE
Awesome Lists containing this project
README
# libvideo
![icon](icons/icon_200.png)
[![NuGet](https://img.shields.io/nuget/dt/VideoLibrary.svg)](https://www.nuget.org/packages/VideoLibrary)
[![NuGet](https://img.shields.io/nuget/v/VideoLibrary.svg)](https://www.nuget.org/packages/VideoLibrary)
[![license](https://img.shields.io/github/license/i3arnon/libvideo.svg)](LICENSE)
[![Join the chat at https://discord.gg/SERVhPp](https://user-images.githubusercontent.com/7288322/34429152-141689f8-ecb9-11e7-8003-b5a10a5fcb29.png)](https://discord.gg/SERVhPp)libvideo (aka VideoLibrary) is a modern .NET library for downloading YouTube videos. It is portable to most platforms and is very lightweight.
## Documentation
- [Documentation](docs/README.md)
- [Example Application](samples/Valks/Valks/Program.cs)
- [Fast Downloader with Chunks](/src/libvideo.debug/CustomYoutubeClient.cs)
## InstallationYou can grab a copy of the library [on NuGet](https://www.nuget.org/packages/VideoLibrary) by running:
Install-Package VideoLibrary
Alternatively, you can try building the repo if you like your assemblies extra-fresh.
## Supported Platforms
- NET ve .NET Core | 1.0, 1.1, 2.0, 2.1, 2.2, 3.0, 3.1, 5.0, 6.0, 7.0
- .NET Framework | 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1, 4.8.2
- Mono | 4.6, 5.4, 6.4
- Xamarin.iOS | 10.0, 10.14, 12.16
- Xamarin.Mac | 3.0, 3.8, 5.16
- Xamarin.Android | 7.0, 8.0, 10.0
- Universal Windows Platform | 8.0, 8.1, 10.0, 10.0.16299, TBD
- Unity | 2018## Getting Started
Here's a small sample to help you get familiar with libvideo:
```csharp
using VideoLibrary;void SaveVideoToDisk(string link)
{
var youTube = YouTube.Default; // starting point for YouTube actions
var video = youTube.GetVideo(link); // gets a Video object with info about the video
File.WriteAllBytes(@"C:\" + video.FullName, video.GetBytes());
}
```Or, if you use Visual Basic:
```vbnet
Imports VideoLibrarySub SaveVideoToDisk(ByVal link As String)
Dim video = YouTube.Default.GetVideo(link)
File.WriteAllBytes("C:\" & video.FullName, video.GetBytes())
End Sub
```If you'd like to check out some more of our features, take a look at our [docs](docs/README.md). You can also refer to our [example application](samples/Valks/Valks/Program.cs) (named Valks, yes, I know, it's a silly name) if you're looking for a more comprehensive sample.
## License
libvideo is licensed under the [BSD 2-clause license](LICENSE).