有人可以通过在脚本中提供视频页面来弄清楚如何获取veehd [dot] com视频的 .avi 网址吗?它可以是BASH,或Python,或Ubuntu中的常用程序。
他们会让你安装一个扩展程序,我已经尝试查看代码,但我无法弄明白。
答案 0 :(得分:1)
这对我有用:
#!/bin/bash
URL=$1 # page with the video
FRAME=`wget -q -O - $URL | sed -n -e '/playeriframe.*do=d/{s/.*src : "//;s/".*//p;q}'`
STREAM=`wget -q -O - http://veehd.com$FRAME | sed -n -e '/<a/{s/.*href="//;s/".*//p;q}'`
echo $STREAM