It is currently Fri Apr 19, 2024 3:52 pm


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 11 posts ] 
Author Message
 Post subject: Animation to Video Without Bad Quality
PostPosted: Thu Apr 21, 2011 10:36 pm  (#1) 
Offline
GimpChat Member
User avatar

Joined: Feb 13, 2011
Posts: 83
Location: It's Cold in Wisco!
For this tutorial you will need a script made by Niels Giesen, there is no title but its used to save all layers as seperate PNGs. The pictures will save in the same spot of your original photo so if you start a new animation from scratch then save it first as a XCF.

;; -*- mode: Gimp; -*-
(define (script-fu-save-layers-to-files image dont-ask display-images)
(let ((basename (car (gimp-image-get-filename image))))
(when (string=? basename "")
(set! basename (string-append
(car (gimp-temp-name ""))
(car (gimp-image-get-name 61)))))
(let loop ((layers (vector->list (cadr (gimp-image-get-layers image)))))
(unless (null? layers)
(gimp-edit-copy (car layers))
(let ((img (car (gimp-edit-paste-as-new)))
(new-name (string-append
basename
(car (gimp-drawable-get-name (car layers)))
".png")))
(file-png-save dont-ask
img
(aref (cadr (gimp-image-get-layers img)) 0)
new-name
new-name
TRUE 9 FALSE TRUE FALSE FALSE TRUE)
(if (= FALSE display-images)
;; clean up afterwards if we are not going to
;; display the images anyway:
(gimp-image-delete img)
(gimp-display-new img)))
(loop (cdr layers))))))


(script-fu-register "script-fu-save-layers-to-files"
_"Save all layers to a different file"
_"Saves all layers to separate .png files"
"Niels Giesen (niels.gie...@gmail.com)"
"Niels Giesen"
"2008-10-10"
""
SF-IMAGE "Image" 1
SF-TOGGLE _"Don't ask options for each layer" TRUE
SF-TOGGLE _"Display images?" FALSE)


(script-fu-menu-register "script-fu-save-layers-to-files"
_"<Image>/Filters/Generic")


You will also need a basic video editing program i use windows live movie maker because it lets me control the time length of all of my photos at once.

Make your animation in Gimp, run the script. Use default settings. Next go to your video editing program and open the pictures... use Ctrl+A to select all the photos, they should load in order. After that change the time length of all the photos to your desired time. To make a smooth animation i use about 0.1 to 0.2 seconds. This tutorial also works with GAP videos too.

I use this mainly for intros to videos and for special effects. No video quality will be lost because its all from the original image unless you use a GAP video but its still better quality than if you turn the GAP video into a gif file.


Share on Facebook Share on Twitter Share on Orkut Share on Digg Share on MySpace Share on Delicious Share on Technorati
Top
 Post subject: Re: Animation to Video Without Bad Quality
PostPosted: Thu Apr 21, 2011 11:08 pm  (#2) 
Offline
GimpChat Member

Joined: Apr 12, 2010
Posts: 5870
using GAP "Split image into frames" will do the same of the script

_________________
My 3D Gallery on Deviantart http://photocomix2.deviantart.com/
Main gallery http://www.flickriver.com/photos/photocomix-mandala/
Mandala and simmetry http://www.flickriver.com/photos/photocomix_mandala/

Image

Mrs Wilbress


Top
 Post subject: Re: Animation to Video Without Bad Quality
PostPosted: Thu Apr 21, 2011 11:17 pm  (#3) 
Offline
GimpChat Member
User avatar

Joined: Feb 13, 2011
Posts: 83
Location: It's Cold in Wisco!
I did not know that thank you!


Top
 Post subject: Re: Animation to Video Without Bad Quality
PostPosted: Fri Apr 22, 2011 12:16 am  (#4) 
Offline
Global Moderator
User avatar

Joined: Oct 06, 2010
Posts: 4045
Carol Spears used to have some really good GAP tutorials that I haven't been able to find anywhere. Anyone know if they have been converted on other GIMP forums? Fencepost had a couple good ones, but the images are no longer in the tutorials (GimpTalk) so they are hard to understand since you can't see the menu screenshots.

_________________
"In order to attain the impossible, one must attempt the absurd."
~ Miguel de Cervantes


Top
 Post subject: Re: Animation to Video Without Bad Quality
PostPosted: Fri Apr 22, 2011 4:03 am  (#5) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
This is a pretty good set of beginner lessons in GAP by ccbarr
http://www.gimptalk.com/index.php?/topi ... orial-set/

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: Animation to Video Without Bad Quality
PostPosted: Sun Apr 24, 2011 11:42 am  (#6) 
Offline
GimpChat Member

Joined: Dec 20, 2010
Posts: 174
Location: Wherever the voices in my head tell me I am.
mahvin wrote:
Carol Spears used to have some really good GAP tutorials that I haven't been able to find anywhere. Anyone know if they have been converted on other GIMP forums? Fencepost had a couple good ones, but the images are no longer in the tutorials (GimpTalk) so they are hard to understand since you can't see the menu screenshots.


Some of Carol Spears old pages including tutorials are archived at the Wayback Machine at http://www.archive.org.

Many of fencepost's tutorials, including those for GAP can also be found at his deviantart site.


Top
 Post subject: Re: Animation to Video Without Bad Quality
PostPosted: Sun Apr 24, 2011 12:33 pm  (#7) 
Offline
GimpChat Member

Joined: Apr 12, 2010
Posts: 5870
about Fencepost tutorial, in addition to the good indication of CCbarr,
you also may serch them on www.gimpdome.com

(just in case some was not on deviantart, or to follow question & answer on the tuts )

_________________
My 3D Gallery on Deviantart http://photocomix2.deviantart.com/
Main gallery http://www.flickriver.com/photos/photocomix-mandala/
Mandala and simmetry http://www.flickriver.com/photos/photocomix_mandala/

Image

Mrs Wilbress


Top
 Post subject: Re: Animation to Video Without Bad Quality
PostPosted: Sun Apr 24, 2011 2:02 pm  (#8) 
Offline
Global Moderator
User avatar

Joined: Oct 06, 2010
Posts: 4045
Wayback Machine archives are incomplete and lacking tons of images.

_________________
"In order to attain the impossible, one must attempt the absurd."
~ Miguel de Cervantes


Top
 Post subject: Re: Animation to Video Without Bad Quality
PostPosted: Sun Apr 24, 2011 2:14 pm  (#9) 
Offline
GimpChat Member

Joined: Dec 20, 2010
Posts: 174
Location: Wherever the voices in my head tell me I am.
mahvin wrote:
Wayback Machine archives are incomplete and lacking tons of images.


Oh, OK, I had not checked thoroughly. I just knew some archives of her old pages were there. I apologize.


Top
 Post subject: Re: Animation to Video Without Bad Quality
PostPosted: Sun Apr 24, 2011 2:37 pm  (#10) 
Offline
Global Moderator
User avatar

Joined: Oct 06, 2010
Posts: 4045
No need to apologize. It seems that the Wayback Machine was particular about what it saved when it crawled over websites, which is also inconsistent. But the image archives are very sparse, which make following tutorials with screenshots very hard to comprehend.

_________________
"In order to attain the impossible, one must attempt the absurd."
~ Miguel de Cervantes


Top
 Post subject: Re: Animation to Video Without Bad Quality
PostPosted: Sun Apr 24, 2011 5:52 pm  (#11) 
Offline
GimpChat Member

Joined: Apr 12, 2010
Posts: 5870
mahvin
if you want i may search Carol e-mail, hopefully she has a back up
(see also my incoming PM )

_________________
My 3D Gallery on Deviantart http://photocomix2.deviantart.com/
Main gallery http://www.flickriver.com/photos/photocomix-mandala/
Mandala and simmetry http://www.flickriver.com/photos/photocomix_mandala/

Image

Mrs Wilbress


Top
Post new topic Reply to topic  [ 11 posts ] 

All times are UTC - 5 hours [ DST ]


   Similar Topics   Replies 
No new posts Attachment(s) Quality loss while making GIF

17

No new posts Reducing layer size without loosing quality?

2

No new posts Attachment(s) Image quality and file size hacks

9

No new posts Attachment(s) LED Animation from Animation Plug-in

6

No new posts Animation

1



* Login  



Powered by phpBB3 © phpBB Group