how to get youtube playlist all url links

4
55280

How to get all the youtube videos link in a playlist?

you can try this trick without using any software
-open youtube channel and copy play now button link location.
(Note not from top url)
www.youtube.com/watch?v=5_koso3Nryc&list=PLbVzuwug9cTSxJ-GhwatYEPdtPsb6vY7h
(what ever link you will copy it should has &list parameter)
-insert this url into magical code(powershell)

-and open powershell window utility from any folder like
i am doing from desktop testfolder

-file~open window powershell~as administrator

-copy magical code and paste into powershell and press enter for execution

thats all you can copy these urls if you want have fun 🙂
Good Bye

magical code(powershell):-

 $Playlist = ((Invoke-WebRequest "https://www.youtube.com/watch?v=5_koso3Nryc&list=PLbVzuwug9cTSxJ-GhwatYEPdtPsb6vY7h").Links | Where {$_.class -match "playlist-video"}).href

ForEach ($Video in $Playlist) {
$s ="https://www.youtube.com" + $Video
$s =$s.Substring(0, $s.IndexOf('&'))
    Write-Output ($s)
}

Summary

How to get all the youtube videos link of playlist,try this trick without using any software,get or extract all videos links from a youtube playlist