Build Ups
-
- Posts: 626
- Joined: Wed Jun 06, 2007 2:37 am
Build Ups
Been playing with Ed Halleys build up animation script:
Susan Ward:
http://www.youtube.com/v/GsBXcmyfFgM
Ford GR-1 Concept
http://www.youtube.com/v/d0zD-owNRr0
Susan Ward:
http://www.youtube.com/v/GsBXcmyfFgM
Ford GR-1 Concept
http://www.youtube.com/v/d0zD-owNRr0
Re: Build Ups
Pretty kewl. It's a great way to illustrate how some drawings are put together. I wouldn't mind doing this with a couple of mine. Has the script been posted publicly?
-
- Posts: 626
- Joined: Wed Jun 06, 2007 2:37 am
Re: Build Ups
yeah, its on halley.cc
if you go to
http://www.halley.cc/code/
you'll need:
svgbuild.py
vectors.py
interpolations.py
you may need to edit the variables at the start of svgbuild.py so it points at your install of inkscape.
The version he has up there now has a good description of what you do to use the script, I'm using
ffmpeg to create the movie from the pngs just like he describes.
if you go to
http://www.halley.cc/code/
you'll need:
svgbuild.py
vectors.py
interpolations.py
you may need to edit the variables at the start of svgbuild.py so it points at your install of inkscape.
The version he has up there now has a good description of what you do to use the script, I'm using
ffmpeg to create the movie from the pngs just like he describes.
- willemmulder
- Posts: 5
- Joined: Fri May 09, 2008 3:39 am
- Location: Ugchelen, The Netherlands
- Contact:
Re: Build Ups
Great drawings! And of course nice way to show how they're done
-
- Posts: 626
- Joined: Wed Jun 06, 2007 2:37 am
Re: Build Ups
willemmulder wrote:Great drawings! And of course nice way to show how they're done
Thanks! the script does show em off pretty well
- willemmulder
- Posts: 5
- Joined: Fri May 09, 2008 3:39 am
- Location: Ugchelen, The Netherlands
- Contact:
Re: Build Ups
where do you draw with? A tablet?
And do you draw just by fantasy or with some reference picture, and if so: is the reference-picture a layer or is it just a picture on your desk
And do you draw just by fantasy or with some reference picture, and if so: is the reference-picture a layer or is it just a picture on your desk
-
- Posts: 626
- Joined: Wed Jun 06, 2007 2:37 am
Re: Build Ups
I draw them mostly with a tablet, some were done with a mouse when i didnt have access to a tablet.
Their all from reference, and yeah, on a layer not on the desk
Their all from reference, and yeah, on a layer not on the desk
- hellocatfood
- Posts: 193
- Joined: Fri Aug 29, 2008 8:49 pm
- Contact:
Re: Build Ups
Hey!
I'm a bit late to the party but do you have instructions for making this work in Ubuntu 9.10 with Inkscape pre4?
I'm a bit late to the party but do you have instructions for making this work in Ubuntu 9.10 with Inkscape pre4?
- hellocatfood
- Posts: 193
- Joined: Fri Aug 29, 2008 8:49 pm
- Contact:
Re: Build Ups
I changed the first line of svgbuild.py from #!/opt/local/bin/python to #! /usr/bin/python, which solves the problem of it not finding python. However, when running it I still get this message:
Any python people out there who can help?
Code: Select all
Starting buildup of drawing.svg...
Surveyed 15 elements.
Traceback (most recent call last):
File "./svgbuild.py", line 738, in <module>
if camera.survey(svg):
File "./svgbuild.py", line 331, in survey
result = qx(command)
File "./svgbuild.py", line 154, in qx
run = subprocess.Popen(cmd, shell=True,
NameError: global name 'subprocess' is not defined
Any python people out there who can help?
Re: Build Ups
Try adding
import subprocess
after the other import statements.
import subprocess
after the other import statements.
- hellocatfood
- Posts: 193
- Joined: Fri Aug 29, 2008 8:49 pm
- Contact:
Re: Build Ups
Thanks! I got a reply from the script author too saying the same thing.
(also sent to the script author)
I added that line and now the script runs, but frames of the movie don't output. Here's my output after running ./svgbuild.py --path --text antonio2.svg :
The temp svg is created in the movie directory and if I specify a location for the frames to be created then it still does create that directory.
I've tried with files with lots of shapes and few shapes and still no output and also with plain svg's and Inkscape svg's.
(also sent to the script author)
I added that line and now the script runs, but frames of the movie don't output. Here's my output after running ./svgbuild.py --path --text antonio2.svg :
Code: Select all
Starting buildup of antonio2.svg...
Surveyed 218 elements.
Surveyed 0 element locations.
Finished antonio2.svg to movie in 0h:00m.
The temp svg is created in the movie directory and if I specify a location for the frames to be created then it still does create that directory.
I've tried with files with lots of shapes and few shapes and still no output and also with plain svg's and Inkscape svg's.
- hellocatfood
- Posts: 193
- Joined: Fri Aug 29, 2008 8:49 pm
- Contact:
Re: Build Ups
How does one do this? Probably would need a bit more information than that
-
- Posts: 626
- Joined: Wed Jun 06, 2007 2:37 am
Re: Build Ups
change the line that says
inkscape = 'C:\\SVG\\head\\inkscape\\inkscape.exe'
so that the bit in quotes points to a working inkscape.
inkscape = 'C:\\SVG\\head\\inkscape\\inkscape.exe'
so that the bit in quotes points to a working inkscape.
Re: Build Ups
Hey guys, I'm happy to see what people are doing with my SVGBUILD script. Great artwork! I noticed the mention of 'import subprocess' above, and have made a couple other very minor tweaks in a code review today. I'll post the updated version to the server tonight.