现在,我正在启动一个Python项目,它应该截取选定的抽搐频道的截图,修改这些截图并将它们放在GUI上。 GUI应该不是问题,但是我遇到了屏幕截图的问题
我找到了2个处理抽搐通信的资源:python-twitch包和一个名为ttvsnap(https://github.com/chfoo/ttvsnap)的脚本。
这个软件包对我没有帮助,因为我找不到任何与截图有关的内容。该脚本看起来很有希望,但我遇到了一些问题:
根据创建者的说法,ttvsnap会定期截取抽搐流的屏幕截图并将其放入选定的目录中。
如果我尝试启动脚本,我收到此错误:
Traceback (most recent call last):
File "ttvsnap.py", line 13, in <module>
import requests
ImportError: No module named 'requests'
从脚本中删除“导入请求”允许我运行它,但是脚本在选择目录时遇到问题。要运行脚本,我应该写:
Python ttvsnap.py 'streamname here' 'directory here'
创建者的示例目录是'./screenshot/',但是使用该输入,我收到以下错误(可能是因为我在Windows上?):
Output directory specified is not valid.
尝试像C:\ DevFiles \ Screenshots这样的目录会给我以下错误:
Invalid drive specification. ###Translated this line since I'm using a German OS
Traceback (most recent call last):
File "ttvsnap.py", line 176, in <module>
main()
File "ttvsnap.py", line 46, in main
subprocess.check_call(['convert', '-version'])
File "C:\Program Files (x86)\Python35-32\lib\subprocess.py", line 584, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['convert', '-version']' returned non-zero exit status 4
对于如何运行它或使用其他资源的任何想法都将非常感激。
答案 0 :(得分:1)
您不应该从正在尝试使用的开源项目中删除内容。
相反,安装缺少的包
pip install requests
如果您遇到问题,可能没有pip
,请安装它。
或者使用此python.exe -m pip install requests
。
此错误Output directory specified is not valid.
归因于此行:
if not os.path.isdir(args.output_dir):
sys.exit('Output directory specified is not valid.')
通常意味着目录不存在。
至于最后一个错误,它无法执行命令convert
:
Invalid drive specification. ###Translated this line since I'm using a German OS
Traceback (most recent call last):
File "ttvsnap.py", line 176, in <module>
main()
File "ttvsnap.py", line 46, in main
subprocess.check_call(['convert', '-version'])
File "C:\Program Files (x86)\Python35-32\lib\subprocess.py", line 584, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['convert', '-version']' returned non-zero exit status 4
这只意味着您没有安装Imagemagick
。您可以在此处下载适用于您的架构的正确安装程序来安装它:http://www.imagemagick.org/script/binary-releases.php
然后尝试确保从您的终端执行convert
命令。如果没有,请按照以下说明操作:
最后,您必须将 MAGICK_HOME 环境变量设置为路径 ImageMagick(例如C:\ Program Files \ ImageMagick-6.7.7-Q16)。你可以设置 它在计算机中‣属性‣高级系统设置‣高级‣ 环境变量......
答案 1 :(得分:0)
Selenium可以方便地浏览网站并截取屏幕截图。
http://selenium-python.readthedocs.io/
充实了一个应该做你需要的例子。 要点链接: https://gist.github.com/ryantownshend/6449c4d78793f015f3adda22a46f1a19
"""
basic example.
Dirt simple example of using selenium to screenshot a site.
Defaults to using local Firefox install.
Can be setup to use PhantomJS
http://phantomjs.org/download.html
This example will run in both python 2 and 3
"""
import os
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import WebDriverWait
def main():
"""the main function."""
driver = webdriver.Firefox()
# driver = webdriver.PhantomJS()
driver.get("http://google.com")
# assert "Python" in driver.title
elem = driver.find_element_by_name("q")
elem.clear()
elem.send_keys("cats")
elem.send_keys(Keys.RETURN)
# give the query result time to load
WebDriverWait(driver, 10).until(
EC.visibility_of_element_located((By.ID, "resultStats"))
)
# take the screenshot
pwd = os.path.dirname(os.path.realpath(__file__))
driver.save_screenshot(os.path.join(pwd, 'cats.png'))
driver.close()
if __name__ == '__main__':
main()