We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ran the below command to get an unusual error that appears to have nothing to do with my shader or command arguments.
python shadertoy-render.py "U:\Documents\My Projects\Programming\Visuals\Shaders\boundry.shader" --output out.mp4 --size 1920x1080 --duration 10 Traceback (most recent call last): File "shadertoy-render.py", line 590, in <module> canvas = RenderingCanvas(glsl_shader, File "shadertoy-render.py", line 144, in __init__ clock = time.clock() AttributeError: module 'time' has no attribute 'clock'
For reference here is a link to the shader being rendered (https://www.shadertoy.com/view/NsGSR3)
The text was updated successfully, but these errors were encountered:
try my fork of this script, it updated to python 3 https://github.com/danilw/shadertoy-to-video-with-FBO
Sorry, something went wrong.
upgrade your sqlalchemy pip install sqlalchemy --upgrade
pip install sqlalchemy --upgrade
need to change the "time.clock()" to "time.process_time()"
time.clock()"
time.process_time()
No branches or pull requests
Ran the below command to get an unusual error that appears to have nothing to do with my shader or command arguments.
For reference here is a link to the shader being rendered (https://www.shadertoy.com/view/NsGSR3)
The text was updated successfully, but these errors were encountered: