当我用 powershell 打开任何视频时,它会在右侧显示推荐的视频。
我试图以两种方式解决问题。但它们都没有给出我想要的结果。
方式1
$URI = 'https://www.youtube.com/watch?v=lpeuIu-ZYJY'
$HTML=Invoke-WebRequest -Uri $URI
$HTML.ParsedHtml.getElementsByTagName('ytd-compact-video-renderer') | Where{ $_.className-eq 'style-scope ytd-watch-next-secondary-results-renderer' } | ForEach-Object { $_.getElementsByTagName('a') } | Select-Object -Expand href
方式2
$URI = 'https://www.youtube.com/watch?v=lpeuIu-ZYJY'
$HTML=Invoke-WebRequest -Uri $URI
$HTML.Links | Where href -like '/watch*' | select outertext,href
如何下载右侧推荐的视频?示例视频:https ://www.youtube.com/watch?v=lrYlcytsBdE
你能帮我解决我的问题吗?