Answers:
Option-command-A只是显示Web检查器“资源”选项卡的快捷方式。它仍然有效,但是您必须先启用开发菜单。
videoplayback
在YouTube中命名。如果未显示,请尝试重新加载页面。请注意,诸如twitch.tv之类的某些网站对长视频使用多种资源。
另一种选择是使用youtube-dl
。您可以brew install youtube-dl
在安装Homebrew之后进行安装。一些例子:
youtube-dl https://www.youtube.com/watch?v=1234567
youtube-dl https://www.youtube.com/watch?v=1234567 --extract-audio
youtube-dl http://www.twitch.tv/b/1234567 -o ~/Downloads/'%(uploader)s %(title)s %(id)s.%(ext)s'
pbpaste|grep -o 'https://www.facebook.com/photo.php?v=[0-9]*'|parallel youtube-dl -o '%(id)s %(title)s.%(ext)s'
curl -s http://gdata.youtube.com/feeds/api/users/someusername/uploads|grep -o 'http://www.youtube.com/watch?v=[^&]*'|sort -u|parallel youtube-dl
youtube-dl
在MacPorts中也可用