YouTube playlist to text links

  • window
By
admin
-
February 11, 2017
4
46615
Share on Facebook
Tweet on Twitter

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

Share this:

  • Click to share on Twitter (Opens in new window)
  • Click to share on Facebook (Opens in new window)

Related

SHARE
Facebook
Twitter
  • tweet
Previous articlehow to see youtube channel subscribers
Next articleHow WordPress works Tutorial Beginners Overview p1