Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我想知道是否有任何方法可以通过为服务编写脚本或插件来改变在 netflix 上播放的视频。
一个例子:22 分钟的表演。假设我想跳过前 2 分钟并从那里继续播放视频。我的意思是,必须有某种方法来做到这一点,我希望它是
if(video.play) then video.play(timestamp)
或类似的 if(colorcode) then skip.frame();东西。
if(colorcode) then skip.frame();
对于 Silverlight 播放,您可以使用以下 JavaScript(即使用 TamperMonkey 之类的东西)获取他们网站使用的视频对象的引用:
var vp = netflix.cadmium.objects.videoPlayer(); vp.seek(60500); // in milliseconds
另请参阅使用 TamperMonkey 控制 Netflix 播放中的结尾注释。