![]() |
VOOZH | about |
dotnet add package AnimeDl --version 1.8.9
NuGet\Install-Package AnimeDl -Version 1.8.9
<PackageReference Include="AnimeDl" Version="1.8.9" />
<PackageVersion Include="AnimeDl" Version="1.8.9" />Directory.Packages.props
<PackageReference Include="AnimeDl" />Project file
paket add AnimeDl --version 1.8.9
#r "nuget: AnimeDl, 1.8.9"
#:package AnimeDl@1.8.9
#addin nuget:?package=AnimeDl&version=1.8.9Install as a Cake Addin
#tool nuget:?package=AnimeDl&version=1.8.9Install as a Cake Tool
π Version
π Downloads
<a href="https://discord.gg/mhxsSMy2Nf"><img src="https://img.shields.io/badge/Discord-7289DA?style=for-the-badge&logo=discord&logoColor=white"></a>
AnimeDl scrapes animes from sites.
<br> <a href="https://www.buymeacoffee.com/jerry08"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a coffee&emoji=&slug=jerry08&button_colour=FFDD00&font_colour=000000&font_family=Poppins&outline_colour=000000&coffee_colour=ffffff" /></a> <br>
<br>
Please do not attempt to upload AnimeDl or any of it's forks on Playstore or any other Android appstores on the internet. Doing so, may infringe their terms and conditions. This may result to legal action or immediate take-down of the app.
<p align="center"> <a href="https://discord.gg/mhxsSMy2Nf"> <img src="https://invidget.switchblade.xyz/mhxsSMy2Nf"> </a> </p>
| SITE | STATUS | DOWNLOADS |
|---|---|---|
| Gogo | WORKING | YES |
| Zoro | WORKING | YES |
dotnet add package AnimeDlAnimeDl exposes its functionality through a single entry point β the AnimeClient class.
Create an instance of this class and use the provided operations to send requests.
You can execute a search query and get its results by calling Search(...) or SearchAsync(...):
using AnimeDl;
using AnimeDl.Scrapers;
var client = new AnimeClient(AnimeSites.GogoAnime);
var animes = await client.SearchAsync("naruto");
To retrieve the metadata associated with an anime, execute a search query as mentioned above:
using AnimeDl;
using AnimeDl.Scrapers;
var client = new AnimeClient(AnimeSites.GogoAnime);
var animes = await client.SearchAsync("naruto");
var title = animes[0].Title;
//More anime details
var animeInfo = await client.GetAnimeInfoAsync(animes[0].Id);
var image = animeInfo.Image;
var summary = animeInfo.Summary;
using AnimeDl;
using AnimeDl.Scrapers;
var client = new AnimeClient(AnimeSites.GogoAnime);
var animes = await client.SearchAsync("naruto");
var episodes = await client.GetEpisodesAsync(animes[0].Id);
var description = episodes[0].Description;
var link = episodes[0].Link;
using AnimeDl;
using AnimeDl.Scrapers;
var client = new AnimeClient(AnimeSites.GogoAnime);
var animes = await client.SearchAsync("naruto");
var episodes = await client.GetEpisodesAsync(animes[0].Id);
var servers = await client.GetVideoServersAsync(episodes[0].Id);
using AnimeDl;
using AnimeDl.Scrapers;
var client = new AnimeClient(AnimeSites.GogoAnime);
var animes = await client.SearchAsync("naruto");
var episodes = await client.GetEpisodesAsync(animes[0].Id);
var servers = await client.GetVideoServersAsync(episodes[0].Id);
var videos = await client.GetVideosAsync(servers[0]);
var videoUrl = videos[0].VideoUrl;
var headers = videos[0].Headers;
var resolution = videos[0].Resolution;
var format = videos[0].Format;
using System.Linq;
using AnimeDl.Anilist;
var client = new AnilistClient();
var searchResults = await client.SearchAsync("ANIME", search: "chainsaw man");
var animes = searchResults?.Results.Where(x => x.IdMal is not null).ToList();
var media = await client.GetMediaDetailsAsync(animes![0]);
var episodeNum = 1;
var episodeDuration = 1524981 / 1000;
var timeskips = await client.Aniskip.GetAsync(media!.IdMal!.Value, episodeNum, episodeDuration);
var skipType = timeskips?[0].SkipType;
var startTime = timeskips?[0].Interval.StartTime;
var endTime = timeskips?[0].Interval.EndTime;
using AnimeDl;
using AnimeDl.Scrapers;
var client = new AnimeClient(AnimeSites.GogoAnime);
var animes = await client.SearchAsync("naruto");
var episodes = await client.GetEpisodesAsync(animes[0].Id);
var servers = await client.GetVideoServersAsync(episodes[0].Id);
var videos = await client.GetVideosAsync(servers[0]);
//NB: Video format must be `Container`
await client.DownloadAsync(videos[0].VideoUrl, videos[0].Headers, fileName);
//Donwloading other formats
var metadataResources = await client.GetHlsStreamMetadatasAsync(videos[0].VideoUrl, videos[0].Headers);
var stream = await metadataResources[0].Stream;
await client.DownloadTsAsync(stream, videos[0].Headers, fileName);
//Or
await client.DownloadAllTsThenMergeAsync(stream, videos[0].Headers, fileName, maxParallelDownloads: 10);
//The method above will be faster
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 is compatible. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 is compatible. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 is compatible. |
| .NET Framework | net461 net461 is compatible. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.