1 2 3 4 5 6 7 8 9 10 11 |
$url='https://www.youtube.com/user/UniversalSpain/playlists?sort=lad&flow=list&view=1' $result = Invoke-WebRequest $url #Respetar los dos espacios entre "link yt" $result.AllElements | Where class -eq " spf-link yt-uix-sessionlink" | %{ $ficherofin=$_.outerText $ficherofin=$ficherofin.Substring(0,20) $ficherofin $urlfinal='https://www.youtube.com'+$_.href.replace('/watch?v=','/embed/') $urlfinal=$urlfinal.Replace('&','?') '<iframe width="560" height="315" src="'+$urlfinal+'" frameborder="0" allowfullscreen></iframe>' | Out-File D:\power\videoss\$ficherofin.html -Append } |