Skip to content

Simple .NET app to download youtube vides by direct URL, playlist URL or video title

License

Notifications You must be signed in to change notification settings

Boyan-Apostolov/YoutubeDownloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Youtube Downloader

A simple .NET 6 application for mass-downloading .mp3 and .mp4 videos from Youtube. Just supply the source file with direct video URL, playlist link or video name (or all at once).

The app uses async Parallel loop when downloading the files for maximum efficiency.

await Parallel.ForEachAsync(videosDetails, async (videoInfo, token) =>
{ 
    //download video
}

Usage:

After cloning the repo and opening the project in visual studio, you need to change the input and output paths to your desired ones.

var inputPath = "../../../music.txt";
var outputPath = @"../../../downloaded-music";

Demo

demo image

Used NuGet packages:

Inspired by:

Berat-Dzhevdetov

About

Simple .NET app to download youtube vides by direct URL, playlist URL or video title

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages