Raffaella Traniello | 2 Jan 2011 13:02
Picon

Re: [CinCV] Modification shapewipe plugin, add the blur.

On 27/12/10 12:23, yosepkey wrote:
> Modification shapewipe plugin, add the blur.
> video example:
> > http://www.youtube.com/watch?v=cILdkp3Wr0s
> files:
> > http://www.megaupload.com/?d=ULRRTSX7

YosepkeY,
thanks for posting it.

Guys, can it be added to CinelerraCV?
What is the procedure to follow?

Ciao!
Raffaella
Raffaella Traniello | 2 Jan 2011 13:09
Picon

Re: [CinCV] Clips (from Resources folder) not showing

Hi!

Thank you to all the people that replied to my desperate message.
Now that the shock is over I can come back to my problem.

I'm afraid it was all my fault. I think I misunderstood the behaviour of 
the "to clip" button: it doesn't save a selected piece of timeline, but 
rather just the part of selected timeline that is *on armed tracks*.

Ciao
Raffaella
Carlier Johan | 2 Jan 2011 10:51
Picon

[CinCV] How to install cinelerra on max osx snox leopard?

Dear,

How to install cinelerra on max osx snow leopard?

regards,

johan
Sape Sikkema (Telfort | 2 Jan 2011 14:59
Picon
Favicon

[CinCV] Fwd: Jerky movements in rendered movies

Scott,

Thanks for your efforts. I downloaded the mp4 file you made. It looked
promising as I don see jumping cars. But, your project settings were not
correct as I use intelaced PAL 720 x 576 with 25 fps. 

I'm trying to install Cinelerra for grandma with Montgomery's patches
one by one, but I don't know if I'll be successful as there are many
messages saying the patch is not applicable or a file or folder does not
exist. Nevertheless, the compilation process did not halt, I don't see
the correct start-up information but I do see File format FFMPEG in the
resource info window. Then I loaded the clip. Unfortunately, cars are
still jumping.

I'll try the alternative patch method mentioned on crazedmuleproductions
site and see what it brings. Keep you informed.

Best regards,

Sape
Jose Aguilar | 2 Jan 2011 15:41
Picon

Re: [CinCV] About title plugin

Attached patch to use almost all the special keys (áâïôú....), and numbers of keypad

The limit of 1023 characters, you could augmentar, but I do not think it necessary.

sample video:

http://www.youtube.com/watch?v=CVUTh3nG_SE

Yosepkey.


2010/12/28 Johannes Sixt <j6t-FFprn4rPSa4@public.gmane.org>
On Dienstag, 28. Dezember 2010, Tarot Jean-Sébastien wrote:
> This plugin work well. I can selecting a font , changing size, scrolling
> , shadow, and speed.
> It's very usefull.
>
> But i have 2 problems :
>
> when i  write accents caractères not "éàè" but the spécial charactères
> obtain
> by 2 keys or more like ôöûü the caracters don't print correctly  ??

In your video, you copy-pasted the text with accented characters. Does it not
work with the others? Apart from that, it is a known limitation of Cinelerra.

> And when i write "too" text in the box of plugin cinelerra crash. There
> are a limite!! ??

Yes, there is a limit. It is 1023 characters.



-- Hannes

_______________________________________________
Cinelerra mailing list
Cinelerra <at> skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra

Raffaella Traniello | 2 Jan 2011 16:43
Picon

Re: [CinCV] About title plugin

On 02/01/11 15:41, Jose Aguilar wrote:
> Attached patch to use almost all the special keys (áâïôú....), and
> numbersof keypad

In my Cinelerra (plain CinCV) I can add special characters from my 
Italian keyboard with no problems. (àèéìòù).
I can't use the numpad, tough.
I also can't use the Ubuntu characters palette (to copy and paste 
special characters).

> The limit of 1023 characters, you could augmentar, but I do not think it
> necessary.

My credits are *always* longer than 1023 characters and I always need to 
split them in two separate effects.

I hope the CinelerraCV titler can improve!

Ciao
Raffaella
Johannes Sixt | 2 Jan 2011 20:44

Re: [CinCV] About title plugin

On Sonntag, 2. Januar 2011, Jose Aguilar wrote:
> Attached patch to use almost all the special keys (áâïôú....), and numbers
> of keypad

Thanks, but the character codes that you patch generates are latin1 (aren't 
they). How would this work in a koi8-r setup, for example?

>  // number pad
>                                 case XK_KP_Enter:       key_pressed =
> KPENTER;   break; case XK_KP_Add:         key_pressed = KPPLUS;    break;
> -                               case XK_KP_1:
>                                 case XK_KP_End:         key_pressed = KP1;
>       break; -                               case XK_KP_2:
>                                 case XK_KP_Down:        key_pressed = KP2;
>       break; -                               case XK_KP_3:
>                                 case XK_KP_Page_Down:   key_pressed = KP3;
>       break; -                               case XK_KP_4:
>                                 case XK_KP_Left:        key_pressed = KP4;
>       break; -                               case XK_KP_5:
>                                 case XK_KP_Begin:       key_pressed = KP5;
>       break; -                               case XK_KP_6:
>                                 case XK_KP_Right:       key_pressed = KP6;
>       break; -                               case XK_KP_0:
>                                 case XK_KP_Insert:      key_pressed =
> KPINS;     break; -                               case XK_KP_Decimal:
>                                 case XK_KP_Delete:      key_pressed =
> KPDEL;     break; +                               case
> XK_KP_0:                   key_pressed = 0x30;              break;
> +                               case XK_KP_1:                   key_pressed
> = 0x31;              break; +                               case
> XK_KP_2:                   key_pressed = 0x32;              break;
> +                               case XK_KP_3:                   key_pressed
> = 0x33;              break; +                               case
> XK_KP_4:                   key_pressed = 0x34;              break;
> +                               case XK_KP_5:                   key_pressed
> = 0x35;              break; +                               case
> XK_KP_6:                   key_pressed = 0x36;              break;
> +                               case XK_KP_7:                   key_pressed
> = 0x37;              break; +                               case
> XK_KP_8:                   key_pressed = 0x38;              break;
> +                               case XK_KP_9:                   key_pressed
> = 0x39;      break; +                               case XK_KP_Decimal:    
> key_pressed = 0x2E;              break;
> +                               case XK_KP_Multiply:    key_pressed = 0x2A;
>      break; +                               case XK_KP_Divide:    
>  key_pressed = 0x2F;      break;

This part of the patch does not seem to be essential to claimed fix, right?

-- Hannes
Johannes Sixt | 2 Jan 2011 20:56

Re: [CinCV] About title plugin

On Sonntag, 2. Januar 2011, Raffaella Traniello wrote:
> On 02/01/11 15:41, Jose Aguilar wrote:
> > Attached patch to use almost all the special keys (áâïôú....), and
> > numbersof keypad
>
> In my Cinelerra (plain CinCV) I can add special characters from my
> Italian keyboard with no problems. (àèéìòù).

So, what's the deal? Why does one party need a patch, the other doesn't? Do 
you use dead-keys to enter these characters, or do you have them using some 
Alt-key?

> I can't use the numpad, tough.

What do you mean by "can't"? "It does not work as expected"? "I need the 
numpad for something else"?

-- Hannes
Raffaella Traniello | 2 Jan 2011 21:55
Picon

Re: [CinCV] About title plugin

On 02/01/11 20:56, Johannes Sixt wrote:
> On Sonntag, 2. Januar 2011, Raffaella Traniello wrote:
>> In my Cinelerra (plain CinCV) I can add special characters from my
>> Italian keyboard with no problems. (àèéìòù).

> So, what's the deal? Why does one party need a patch, the other
> doesn't?

No idea. I just found it quite surprising.

> Do you use dead-keys to enter these characters, or do you
> have them using some Alt-key?

I have a dedicated key for each of them on my Italian keyboard.
No modifiers at all.

>> I can't use the numpad, tough.

Pressing the numpad keys doesn't have any effect on the titler. I can't 
give any input to the titler using the numpad.

But, as I said, I do have problems with special characters that are not 
on my keyboards. With other programs I use the character palette, but 
that has no effect on Cinelerra.

Thanks, Hannes.

Ciao!
Raffaella
ito | 2 Jan 2011 22:47
Picon

Re: [CinCV] About title plugin



2011/1/2 Johannes Sixt <j6t-FFprn4rPSa4@public.gmane.org>
On Sonntag, 2. Januar 2011, Jose Aguilar wrote:
> Attached patch to use almost all the special keys (áâïôú....), and numbers
> of keypad

Thanks, but the character codes that you patch generates are latin1 (aren't
they). How would this work in a koi8-r setup, for example?
 
I do not know program. but I think that can only be put extended ascii

http://www.ascii-code.com/




>  // number pad
>                                 case XK_KP_Enter:       key_pressed =
> KPENTER;   break; case XK_KP_Add:         key_pressed = KPPLUS;    break;
> -                               case XK_KP_1:
>                                 case XK_KP_End:         key_pressed = KP1;
>       break; -                               case XK_KP_2:
>                                 case XK_KP_Down:        key_pressed = KP2;
>       break; -                               case XK_KP_3:
>                                 case XK_KP_Page_Down:   key_pressed = KP3;
>       break; -                               case XK_KP_4:
>                                 case XK_KP_Left:        key_pressed = KP4;
>       break; -                               case XK_KP_5:
>                                 case XK_KP_Begin:       key_pressed = KP5;
>       break; -                               case XK_KP_6:
>                                 case XK_KP_Right:       key_pressed = KP6;
>       break; -                               case XK_KP_0:
>                                 case XK_KP_Insert:      key_pressed =
> KPINS;     break; -                               case XK_KP_Decimal:
>                                 case XK_KP_Delete:      key_pressed =
> KPDEL;     break; +                               case
> XK_KP_0:                   key_pressed = 0x30;              break;
> +                               case XK_KP_1:                   key_pressed
> = 0x31;              break; +                               case
> XK_KP_2:                   key_pressed = 0x32;              break;
> +                               case XK_KP_3:                   key_pressed
> = 0x33;              break; +                               case
> XK_KP_4:                   key_pressed = 0x34;              break;
> +                               case XK_KP_5:                   key_pressed
> = 0x35;              break; +                               case
> XK_KP_6:                   key_pressed = 0x36;              break;
> +                               case XK_KP_7:                   key_pressed
> = 0x37;              break; +                               case
> XK_KP_8:                   key_pressed = 0x38;              break;
> +                               case XK_KP_9:                   key_pressed
> = 0x39;      break; +                               case XK_KP_Decimal:
> key_pressed = 0x2E;              break;
> +                               case XK_KP_Multiply:    key_pressed = 0x2A;
>      break; +                               case XK_KP_Divide:
>  key_pressed = 0x2F;      break;

This part of the patch does not seem to be essential to claimed fix, right?

-- Hannes

I think it's important because it gives you speed and comfort, and because it is very easy to implement.




--
--------------------------------------------------------------
Me he cansado de ver tanto windows 7 al final de cada correo, que voy a poner el mio......

Millones de personas no conocen ubuntu, millones de personas siguen sin abrir los ojos. (gratis, seguro y facil de usar)

http://www.youtube.com/watch?v=_CMunYjqtvE

http://www.ubuntu.com/

Gmane