我有一堆网址指向在线视频。所有这些都非常庞大,大小超过1 GB,我需要某些帧。例如,我需要说时间1000到1200秒的五个随机帧。有没有办法让我在不下载整个东西的情况下得到这个?
我知道我能做到
<html>
<head>
</head>
<body>
<iframe name="hidden_iframe" width="0" height="0" style="border:none"></iframe>
<form method="post" action="out.php" target="hidden_iframe">
<input type="submit" name="Run Hello.py" value="Run Hello.py" onClick=" <? exec('Hello.py'); ?> ">
<input type="submit" name="Run World.py" value="Run World.py" onClick=" <? exec('World.py'); ?> ">
</form>
</body>
在python中然后做我需要做的事情。但这显然下载了我想避免的整个事情。如果使用python无法做到这一点,我还能采用其他方法吗?例如使用MATLAB或类似方法吗?