[Gimp-developer] GAP Encoding

2009-06-28 Thread Jason van Gumster
Hello,

I've been working my way through explaining GAP's video encoding
feature and stumbled across something that I couldn't find any obvious
documentation to (or figure out on my via trial and error). Basically,
I'd like to know the difference between the SINGLEFRAMES and RAWFRAMES
encoder options. The names seem to indicate that RAWFRAMES doesn't
compress frame data, but if you set your output format to JPEG, the
compression window appears and the encoder happily compresses each
frame just as if you'd chosen SINGLEFRAMES.

If anyone could shed some light on this topic, I'd be very grateful.

Take care.

  -Fweeb
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP Encoding

2009-06-28 Thread saulgoode
Quoting Jason van Gumster ja...@handturkeystudios.com:

 I've been working my way through explaining GAP's video encoding
 feature and stumbled across something that I couldn't find any obvious
 documentation to (or figure out on my via trial and error). Basically,
 I'd like to know the difference between the SINGLEFRAMES and RAWFRAMES
 encoder options. The names seem to indicate that RAWFRAMES doesn't
 compress frame data, but if you set your output format to JPEG, the
 compression window appears and the encoder happily compresses each
 frame just as if you'd chosen SINGLEFRAMES.

I'm not certain about this, but I believe that RAWFRAMES is only  
meaningful for the Storyboard Input Mode, and then only if the  
source video file includes valid JPEG frames in its format (i.e.,  
MPEG1 I-frames, or MJPEG). For these formats, rather than decode the  
(JPEG) frame into an image and then encode that image back to a JPEG  
file, the video encoder will simply extract the JPEG frame from the  
video stream. This is beneficial from both a speed and quality  
perspective.

If you are not in Storyboard Input Mode, encoding is mandated  
regardless of whether you use RAWFRAMES or SINGLEFRAMES.



___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


[Gimp-developer] Gap -how animate plugins

2008-05-29 Thread Alchemie foto\grafiche
sorry to have ask again about the How to make a GIMP Plug-In an Animated one: 
guide (is in Gap source/doc), but finally i had spotted and corrected some dumb 
errors i  did at first tries and i'm  at the last step

I generated and compiled the plug_in_Iterator file for 2 plugin (unsharp 
mask2( http://home.arcor.de/peter.heckert/unsharp2-0.12.c) and Greycstoration, 
the apply variant button of filter all layer is now active for both, and the 
first and last call are correctly done

Not the other interactive calls for the reason explaned in the guide here

 # In case of error:
 # If you get an Error Message (in the shell, where you started the gimp)
 # that looks like:
 
ERROR: _Iterator stored Data missmatch in size N != M

 # you have to change the generated code manually.
 # (check for calls to gimp_set_data or gimp_get_data that are using
 # the plugins name as key argument within the plugin's sourcecode.
 # The passed datastructure has to match exactly in size with the generated 
one

I get that error, in both case _Iterator stored Data missmatch in size N != M 

Now i'm not a developer so i will need more details on how make The passed 
datastructure has to match exactly in size with the generated one
and i will really appreciate some hint help or suggestion to well...solve this 
last obstacle.

All the step till now was clearly described ,BUT  this 

#you have to change the generated code manually.
   # (check for calls to gimp_set_data or gimp_get_data that are using
# the plugins name as key argument within the plugin's sourcecode.
 is a bit too sintetic for my understanding,may be elaborated more?
   


Alchemie Foto\grafiche
   
-
Scopri il  Blog di Yahoo! Mail: trucchi, novità, consigli... e la tua opinione!___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP Export?

2008-01-16 Thread Sven Neumann
Hi,

On Tue, 2008-01-15 at 16:22 -0500, Andy Berdan wrote:

 I've been investigating some animation systems for use at work here, and
 I was wondering about exporting names and locations of layers in the
 animation.

I am not sure if Wolfgang Hofer, the author of GAP follows this
mailing-list. You might have more luck by mailing him directly.


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP Export?

2008-01-16 Thread saulgoode
The information about layer offsets in a frame sequence is not made  
readily available and a plug-in would need to be written (and, IMO, it  
would be simpler to write a Script run in batch mode). Also, once an  
object has been added to a frame sequence, GIMP only knows the offsets  
and extents of the resulting layer; it does not record whether the  
object was rotated or otherwise transformed (which would result in  
altered offsets and extents).

If you added the layers to your animation using the Move Path  
command, you could save the object's placement information for later  
recall by saving the control points used. There are some limitations  
to this, though: primarily that a separate file is created for each  
object; and if you wish to have the specifics of the object's  
placement for each frame saved (as opposed to keyframe control points)  
then you need to use the Paths tool to specify that placement (as  
opposed to manually specifying the control points in the Move Path  
dialog). Also, there is no way of saving changes made to the objects  
after their initial placement.

This approach will produce a file with the following parameters for  
each control point:

  x  y width height opacity rotation feather_radius (perspective  
transform factors) (rel_keyframe)

If you need more information on the above approach, it might be better  
to move the discussion to the Users mailing list, as this wouldn't  
really contribute to GIMP development.


Quoting Andy Berdan [EMAIL PROTECTED]:

 Hi all,

 I've been investigating some animation systems for use at work here, and
 I was wondering about exporting names and locations of layers in the
 animation.

 Hm.  That doesn't sound too clear - allow me to illustrate with an
 example.

 Suppose the source animation is a 10-frame animation, with a hand and a
 ball, both moving (and animating) independently, I'd eventually want
 something like this:

 animation-frame-0: hand-frame-1 x=0,y=0
 animation-frame-0: ball-frame-1 x=5,y=5
 animation-frame-1: hand-frame-2 x=10,y=10
 animation-frame-1: ball-frame-1 x=25,y=25
 ... etc ...
 animation-frame-9: hand-frame-2 x=100,y=100
 animation-frame-9: ball-frame-1 x=520,y=520

 (ignore the syntax, the data is presented as such for clarity -- though
 now, I think a graphical example might have been better)

 Obviously, GAP itself has access to this data at some point, but it
 doesn't seem to be exposed or exportable in any way.

 The only idea I can come up with at this point involves iterating over
 animation files in a directory, scanning each layer for frame
 information, and dumping the data to a file... and I'm not 100% sure if
 that's do-able, though it seems that that is something script/python-fu
 should have access to.

 BTW, the intent is to use this animation data (not actual video output)
 in a game engine for layer-based animations, if you're wondering why I'm
 asking for this somewhat strange feature.


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


[Gimp-developer] GAP Export?

2008-01-15 Thread Andy Berdan
Hi all,

I've been investigating some animation systems for use at work here, and
I was wondering about exporting names and locations of layers in the
animation.

Hm.  That doesn't sound too clear - allow me to illustrate with an
example.

Suppose the source animation is a 10-frame animation, with a hand and a
ball, both moving (and animating) independently, I'd eventually want
something like this:

animation-frame-0: hand-frame-1 x=0,y=0
animation-frame-0: ball-frame-1 x=5,y=5
animation-frame-1: hand-frame-2 x=10,y=10
animation-frame-1: ball-frame-1 x=25,y=25
... etc ...
animation-frame-9: hand-frame-2 x=100,y=100
animation-frame-9: ball-frame-1 x=520,y=520

(ignore the syntax, the data is presented as such for clarity -- though
now, I think a graphical example might have been better)

Obviously, GAP itself has access to this data at some point, but it
doesn't seem to be exposed or exportable in any way.

The only idea I can come up with at this point involves iterating over
animation files in a directory, scanning each layer for frame
information, and dumping the data to a file... and I'm not 100% sure if
that's do-able, though it seems that that is something script/python-fu
should have access to.

BTW, the intent is to use this animation data (not actual video output)
in a game engine for layer-based animations, if you're wondering why I'm
asking for this somewhat strange feature.

Also, on a semi-related note, is
http://wiki.gimp.org/gimp/HowToCompileGimp/MicrosoftWindows still
accurate for 2.4?

Thanks!

Andy Berdan
Technical Director
Big Blue Bubble Inc.

___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


[Gimp-developer] Gap documentation

2007-09-12 Thread Alchemie foto\\grafiche
i will like to know where, i the Gap source code (or elsewhere ) i can find the 
doc listing the specifics needed to a plugin to be compatible with GAP 
(with this i mean that, as example, could be used by Filter all layers or 
from Frame Modify with the options apply contanst or apply varying ).

A last question: i suppose this is possible also for third part plugins , and 
not only with those bundled with gimp...is my guess correct?


Alchemie Foto\grafiche
   
-

-
L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Gap documentation

2007-09-12 Thread saulgoode
Quoting Alchemie foto\\grafiche [EMAIL PROTECTED]:

 i will like to know where, i the Gap source code (or elsewhere ) i   
 can find the doc listing the specifics needed to a plugin to be   
 compatible with GAP
 (with this i mean that, as example, could be used by Filter all   
 layers or from Frame Modify with the options apply contanst or   
 apply varying ).

http://svn.gnome.org/svn/gimp-gap/trunk/docs/howto/txt/HOWTO-write-animated-plug-ins.txt

 A last question: i suppose this is possible also for third part   
 plugins , and not only with those bundled with gimp...is my guess   
 correct?

http://svn.gnome.org/svn/gimp-gap/trunk/docs/howto/txt/HOWTO-write-animated-plug-ins.txt

:-)

___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-05 Thread saulgoode
 Hi,

 On Sat, 2007-08-04 at 03:44 -0400,

 I did notice that the file 'gap/sel-to-anim-img.scm' does not run under
 the TinyScheme-based Script-fu

 Did you also check the other Script-Fu script in the gap subdirectory?

Yes. It appears to be fine.
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-05 Thread saulgoode
 Hi,

 On Sat, 2007-08-04 at 01:58 -0300, Joao S. O. Bueno Calligaris wrote:

 I am getting an error linking gimp-gap svn in a 64bit enviromment, in
 both trunk and gap-2-2 branch:

 That's a problem with the copy of libavcodec that is included with GAP.
 You better disable support for libavcodec when configuring gap. For GAP
 2.4 we should include a recent version of libavcodec.

 Sven

To expand on Sven's answer a little, the FFMPEG project does not provide a
stable API; therefore the GAP includes the source for a specific snapshot
of the code and staticly links to it. The snapshot in the GAP's tree is
from 2005 ; it needs to be updated and the GAP code modified to employ the
new FFMPEG API (also for 64-bit support and GCC4 compatibility as well).

Wolgang Hofer, the main developer of the GAP, is working on that update
but he does not have direct access to the Internet right now. It may be a
few months before updated FFMPEG support is available but it is being
worked on. In the interim, I would suggest disabling libavcodec support
and using an external utility to convert your frames to video.


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-05 Thread Joao S. O. Bueno Calligaris
On Sunday 05 August 2007 06:45, 
[EMAIL PROTECTED] wrote:
  Hi,
 
  On Sat, 2007-08-04 at 01:58 -0300, Joao S. O. Bueno Calligaris 
wrote:
  I am getting an error linking gimp-gap svn in a 64bit
  enviromment, in both trunk and gap-2-2 branch:
 
  That's a problem with the copy of libavcodec that is included
  with GAP. You better disable support for libavcodec when
  configuring gap. For GAP 2.4 we should include a recent version
  of libavcodec.
 
  Sven

 To expand on Sven's answer a little, the FFMPEG project does not
 provide a stable API; therefore the GAP includes the source for a
 specific snapshot of the code and staticly links to it. The
 snapshot in the GAP's tree is from 2005 ; it needs to be updated
 and the GAP code modified to employ the new FFMPEG API (also for
 64-bit support and GCC4 compatibility as well).

 Wolgang Hofer, the main developer of the GAP, is working on that
 update but he does not have direct access to the Internet right
 now. It may be a few months before updated FFMPEG support is
 available but it is being worked on. In the interim, I would
 suggest disabling libavcodec support and using an external utility
 to convert your frames to video.



Hehh..that is a bit too much, ain't it?
It actually _did_ build when  I tweaked the Makefiles in the library 
dirs (and only there) to include the  -fPIC GCC directive.
64 bit, GCC 4.1.1

It is not like this will only work in 2010 or 2012.

js
--



___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-04 Thread saulgoode
Sven Neumann wrote:
 I have fixed that in gimp-gap, both in trunk and gap-2-2. Would be cool
 if someone could do some more testing in the gap-2-2 branch before I do
 the release...


So far I have not encountered any problems with the changes.

I did notice that the file 'gap/sel-to-anim-img.scm' does not run under
the TinyScheme-based Script-fu (it uses some variables without defining
them). I have created a patch file for this which is available at
http://flashingtwelve.brickfilms.com/GIMP/Temp/selanim.patch

The contents of that file are:

Index: gap/sel-to-anim-img.scm
===
--- gap/sel-to-anim-img.scm (revision 681)
+++ gap/sel-to-anim-img.scm (working copy)
@@ -37,7 +37,17 @@
  (idx 0)
 (draw-type (car (gimp-drawable-type-with-alpha drawable)))
 (image-type (car (gimp-image-base-type image)))
-(old-bg (car (gimp-context-get-background
+(old-bg (car (gimp-context-get-background)))
+ (selection-bounds)
+ (select-offset-x)
+ (select-offset-y)
+ (selection-width)
+ (selection-height)
+ (from-selection)
+ (active-selection)
+ (brush-draw)
+ (draw-name)
+ (brush-image))

 (set! selection-bounds (gimp-selection-bounds image))
 (set! select-offset-x (cadr selection-bounds))
@@ -94,7 +104,7 @@
 (gimp-image-set-active-layer image drawable)
 (gimp-image-clean-all brush-image)
 (gimp-display-new brush-image)
-(gimp-displays-flush))
+(gimp-displays-flush)
 (if (= filter-all TRUE)
 ; INTERACTIVE animated call of any other plugin
 ; (drawable and plugin name are dummy parameters
@@ -103,6 +113,7 @@
 (plug-in-gap-layers-run-animfilter 0 brush-image brush-draw
plug-in-bend 1)
 )
 )
+)

 (script-fu-register script-fu-selection-to-anim-image
_Image/Script-Fu/Animators/Selection to AnimImage...


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-04 Thread Sven Neumann
Hi,

On Sat, 2007-08-04 at 03:44 -0400,
[EMAIL PROTECTED] wrote:

 I did notice that the file 'gap/sel-to-anim-img.scm' does not run under
 the TinyScheme-based Script-fu (it uses some variables without defining
 them). I have created a patch file for this which is available at
 http://flashingtwelve.brickfilms.com/GIMP/Temp/selanim.patch

Applied to both branches. Thanks a lot.


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-04 Thread Sven Neumann
Hi,

On Fri, 2007-08-03 at 23:50 +0200, Popolon wrote:
 Here is an updated version for french.
 Could have 1 or 2 mistakes, but mostly well updated.

Please do not send translation updates to the mailing-list nor to me in
personal. This is handled by the GNOME translation project and you
should have contacted the coordinator of your language team instead.

In this particular case I will make an exception and commit your
changes. Thanks.


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-04 Thread Joao S. O. Bueno Calligaris
On Friday 03 August 2007 17:18, Sven Neumann wrote:
 Hi,

 On Fri, 2007-08-03 at 23:54 +0400, Alexandre Prokoudine wrote:
   Are you absolutely sure that you removed the fuzzy marker
   after updating the translation?
 
  Yes, I am.

 OK, please try again after updating from SVN. I added some missing
 calls to gimp_plugin_domain_register(). That should fix it, but
 there might be more places affected that need a similar fix.


 Sven


I am getting an error linking gimp-gap svn in a 64bit enviromment, in 
both trunk and gap-2-2 branch:

/usr/bin/ld: bitstream.o: relocation R_X86_64_32 against `a local 
symbol' can not be used when making a shared object; recompile 
with -fPIC
bitstream.o: could not read symbols: Bad value
collect2: ld returned 1 exit status
make[4]: *** [libavcodec.so] Error 1


when doing:
gcc -shared -o libavcodec.so bitstream.o utils.o mem.o allcodecs.o 
mpegvideo.o jrevdct.o jfdctfst.o jfdctint.o mpegaudio.o ac3enc.o 
mjpeg.o resample.o resample2.o dsputil.o motion_est.o imgconvert.o 
imgresample.o mpeg12.o mpegaudiodec.o pcm.o simple_idct.o 
ratecontrol.o adpcm.o eval.o dv.o error_resilience.o fft.o mdct.o 
mace.o huffyuv.o cyuv.o raw.o h264.o golomb.o vp3.o asv1.o 4xm.o 
cabac.o ffv1.o ra144.o ra288.o vcr1.o cljr.o roqvideo.o dpcm.o 
interplayvideo.o xan.o rpza.o cinepak.o msrle.o msvideo1.o vqavideo.o 
idcinvideo.o adx.o rational.o faandct.o 8bps.o smc.o parser.o 
flicvideo.o truemotion1.o vmdav.o lcl.o qtrle.o g726.o flac.o 
vp3dsp.o integer.o snow.o tscc.o sonic.o ulti.o h264idct.o qdrw.o 
xl.o rangecoder.o png.o pnm.o qpeg.o vc9.o h263.o h261.o msmpeg4.o 
h263dec.o svq1.o rv10.o wmadec.o indeo3.o shorten.o loco.o alac.o 
wnv1.o ws-snd1.o aasc.o  a52dec.o liba52/bit_allocate.o 
liba52/bitstream.o liba52/downmix.o liba52/imdct.o  liba52/parse.o 
liba52/crc.o 
liba52/resample.o  -lm -lz -ldl  -Wl,--warn-common -rdynamic

(trying the suggested fPIC makes build halt early on.)



 ___
 Gimp-developer mailing list
 Gimp-developer@lists.XCF.Berkeley.EDU
 https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-04 Thread Sven Neumann
Hi,

On Sat, 2007-08-04 at 01:58 -0300, Joao S. O. Bueno Calligaris wrote:

 I am getting an error linking gimp-gap svn in a 64bit enviromment, in 
 both trunk and gap-2-2 branch:

That's a problem with the copy of libavcodec that is included with GAP.
You better disable support for libavcodec when configuring gap. For GAP
2.4 we should include a recent version of libavcodec.


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-04 Thread Sven Neumann
Hi,

On Sat, 2007-08-04 at 03:44 -0400, 

 I did notice that the file 'gap/sel-to-anim-img.scm' does not run under
 the TinyScheme-based Script-fu 

Did you also check the other Script-Fu script in the gap subdirectory?


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-03 Thread Sven Neumann
Hi,

On Fri, 2007-08-03 at 04:31 +0400, Alexandre Prokoudine wrote:

 3. I also see actually translated menu items (e.g.
 Image/Video/Layer/Colors/Levels...) in English after replacing
 /usr/share/locale/ru/LC_MESSAGES/gimp20-gap.mo with a new one and
 restarting GIMP.

Are you absolutely sure that you removed the fuzzy marker after
updating the translation?


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-03 Thread Sven Neumann
Hi,

On Thu, 2007-08-02 at 18:40 -0600, Esteban Barahona wrote:

 I can translate to Spanish, how can I submit changes?

The translations for GIMP as well as for GAP are handled by the GNOME
translation project. If you want to help, please contact the Spanish
translation team: http://l10n.gnome.org/languages/es


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-03 Thread Sven Neumann
Hi,

the problems you outlined can't be solved for the GAP 2.2.2 release.
This release is bug-fixes only and it is supposed to run with GIMP 2.2
and GIMP 2.4. So it can't use any new features from the GIMP 2.4 API.

If you want to make sure that the user experience with GAP 2.4 will be
better, then you should help Wolfgang by reporting problems and by
fixing them. He is likely going to do a GAP 2.4 release later this year.


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-03 Thread Alexandre Prokoudine
On 8/3/07, Sven Neumann wrote:

  3. I also see actually translated menu items (e.g.
  Image/Video/Layer/Colors/Levels...) in English after replacing
  /usr/share/locale/ru/LC_MESSAGES/gimp20-gap.mo with a new one and
  restarting GIMP.

 Are you absolutely sure that you removed the fuzzy marker after
 updating the translation?

Yes, I am.

Alexandre
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-03 Thread Sven Neumann
Hi,

On Fri, 2007-08-03 at 04:31 +0400, Alexandre Prokoudine wrote:

 4. Script-Fu menu is created by Selection to AnimImage.

I have now added some code to Script-Fu that maps scripts that attempt
to register in one of the standard GIMP 2.2 submenus to the equivalent
place in the 2.4 menu structure. This code lives in
plug-ins/script-fu/script-fu-scripts.c. It currently only deals with the
submenu used by GAP. More mappings should be added. Someone just needs
to make a more complete list...

 5. Dialogs still show Help button even if it's disabled in GIMP's 
 preferences.

I have fixed that in gimp-gap, both in trunk and gap-2-2. Would be cool
if someone could do some more testing in the gap-2-2 branch before I do
the release...


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-03 Thread Sven Neumann
Hi,

On Fri, 2007-08-03 at 23:54 +0400, Alexandre Prokoudine wrote:

  Are you absolutely sure that you removed the fuzzy marker after
  updating the translation?
 
 Yes, I am.

OK, please try again after updating from SVN. I added some missing calls
to gimp_plugin_domain_register(). That should fix it, but there might be
more places affected that need a similar fix.


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-02 Thread Sven Neumann
Hi,

On Wed, 2007-08-01 at 14:23 +0200, Anke Lange wrote:

 like everybody else, I am very exiting about the release of the Gimp 2.4.
 Though I was wondering, if GAP will be running on the new Gimp.
 
 I tried to install it to the 2.3.19, but as you proberbly would have 
 known, it doesn't work and you just get lots of errors.

There are known problem running GAP 2.2 on GIMP 2.3 and they have been
addressed in the gimp-gap source tree. I will do a gimp-gap 2.2.2
release with these fixes somewhen over the next days.


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-02 Thread Sven Neumann
Hi,

I forgot to say. If anyone wants to update translations for the 2.2.2
release of gimp-gap (http://l10n.gnome.org/module/gimp-gap#gap-2-2),
please do so quickly.


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-02 Thread Alexandre Prokoudine
On 8/2/07, Sven Neumann wrote:

 I forgot to say. If anyone wants to update translations for the 2.2.2
 release of gimp-gap (http://l10n.gnome.org/module/gimp-gap#gap-2-2),
 please do so quickly.

I started looking into it and here is what I've run into so far:

1. Old method of creating menus
(Image/Video/submenu/another_submenu/) is used.

2. As result of the above, I've translated all translatable instances
of Image/Video/, but I still see name of the top level menu
Image/Video/ in English (would be neat having a mnemonic key for
Video, btw).

3. I also see actually translated menu items (e.g.
Image/Video/Layer/Colors/Levels...) in English after replacing
/usr/share/locale/ru/LC_MESSAGES/gimp20-gap.mo with a new one and
restarting GIMP. Updating translations while having this kind of
issues is not much fun :(

4. Script-Fu menu is created by Selection to AnimImage.

5. Dialogs still show Help button even if it's disabled in GIMP's preferences.

Alexandre
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-02 Thread Esteban Barahona
2007/8/2, Sven Neumann [EMAIL PROTECTED]:

 Hi,

 I forgot to say. If anyone wants to update translations for the 2.2.2
 release of gimp-gap (http://l10n.gnome.org/module/gimp-gap#gap-2-2),
 please do so quickly.


 Sven



I can translate to Spanish, how can I submit changes? ...the only time I
helped translation was with Ubuntu, they have a great app for online
translation that separates what has to be changed (
https://launchpad.net/ubuntu/+translations). Is it possible to implement
this for GIMP?
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


[Gimp-developer] GAP

2007-08-01 Thread Anke Lange
Hello

like everybody else, I am very exiting about the release of the Gimp 2.4.
Though I was wondering, if GAP will be running on the new Gimp.

I tried to install it to the 2.3.19, but as you proberbly would have 
known, it doesn't work and you just get lots of errors.

Thanks for any information.

Regards Anke Lange
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP

2007-08-01 Thread David Gowers
On 8/1/07, Anke Lange [EMAIL PROTECTED] wrote:
 Hello

 like everybody else, I am very exiting about the release of the Gimp 2.4.
 Though I was wondering, if GAP will be running on the new Gimp.

 I tried to install it to the 2.3.19, but as you proberbly would have
 known, it doesn't work and you just get lots of errors.

 Thanks for any information.

 Regards Anke Lange

* Works for me - I'm using the latest GIMP and GIMP-GAP from SVN.
* GIMP-GAP is relatively loosely binded to GIMP - it does not depend
on the internal structure of things very much. When GIMP architecture
starts changing significantly to use GEGL, much of GIMP-GAP might
still work unmodified; but such changes to GIMP shall occur after the
2.4 release, not before, if I understand correctly.
* You have omitted some details (What OS? What version of GIMP-GAP?).
It's possible that you simply have a out of date version of GIMP-GAP
or the packages it depends on.
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP translation

2006-01-14 Thread jernej
On Friday, January 13, 2006, 20:52:04, Nathan Summers wrote:

 Are you installing the .po files as well?

It's a problem on Windows.

-- 
 Jernej Simončič  http://deepthought.ena.si/ 

Needs are a function of what other people have.
   -- Jones's Principle

___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


[Gimp-developer] GAP translation

2006-01-13 Thread Fabrizzio Mellerti
Hi:I think I found this bug with the GAP. The menus doesn't translate if the system where is installed is not where orignially was compiled. I'd like to help to fix this bug, but I need someone to point me where to start
thanks.
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP translation

2006-01-13 Thread Nathan Summers
On 1/13/06, Fabrizzio Mellerti [EMAIL PROTECTED] wrote:
 Hi:

 I think I found this bug with the GAP. The menus doesn't translate if the 
 system where is
 installed is not where orignially was compiled. I'd like to help to fix this 
 bug, but I need
 someone to point me where to start

Are you installing the .po files as well?

Rockwalrus
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


[Gimp-developer] GAP Filters

2003-06-24 Thread Joao S. O. Bueno
Hello ...

Where have teh GAP filters gone in the 1.3.x tree?

I've found them in the plug-ins-gap in the 1.2.x,

and I am intending to modify the filter all layers, to do aply another 
filter with variable parameters based on the Value information of a 
mapping drawable.

Easy to do, and powerfull enough to make a lot of cool effects.

Regards,

JS
--


___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP Filters

2003-06-24 Thread Henrik Brix Andersen
On Tue, 2003-06-24 at 19:16, Joao S. O. Bueno wrote:
 Where have teh GAP filters gone in the 1.3.x tree?

GAP has been moved to the gimp-gab cvs module.

Sincerely,
./Brix
-- 
Henrik Brix Andersen [EMAIL PROTECTED]

___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] GAP Filters

2003-06-24 Thread Sven Neumann
Hi,

Henrik Brix Andersen [EMAIL PROTECTED] writes:

 On Tue, 2003-06-24 at 19:16, Joao S. O. Bueno wrote:
 Where have teh GAP filters gone in the 1.3.x tree?

 GAP has been moved to the gimp-gab cvs module.

cvs module gimp-gap of course

There are inofficial CVS snapshots on http://sven.gimp.org/. But
please don't bug me with any problems you might have to compile or run
them...


Sven
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


[Gimp-developer] GAP moved to its own CVS module

2003-03-25 Thread Sven Neumann
Hi,

as announced, Yosh and me moved GAP out of the GIMP CVS tree into its
own CVS module. The files have been moved on the CVS server in order
to keep the revision history intact. I have then added the necessary
setup to build it and I've also merged the translations from gimp-1.2.
The module is called gimp-gap.

I've done some minor changes and now it actually compiles against
GIMP-1.3 and it seems to work basically. I'll leave it up to Wolfgang
to take maintainership of this module (or delegate that to someone
else). Of course I'll help with any problems if I can.


Salut, Sven
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer