Search found 526 matches

by Lukas
29 Nov 2021, 12:30
Forum: Technical Support
Topic: Question about Clips in Standard version
Replies: 4
Views: 5199

Question about Clips in Standard version

Hi everyone,

Is it possible to create multiple clips and play them with the Debut version or is it only possible to play 1 clip at a time?

Thanks!
Lukas
by Lukas
14 Oct 2021, 14:37
Forum: George scripting
Topic: tv_readtextfile reading a line with quotation marks
Replies: 0
Views: 4916

tv_readtextfile reading a line with quotation marks

Is it possible to use tv_readtextfile to read a line with quotation marks somehow? I've tried: tv_readtextfile line '"'sourceFile'"' PARSE result eof a b c d e f g h i j k l m n o p q r s t u v w x y z string = a""b""c""d""e""f""g...
by Lukas
28 Sep 2021, 12:09
Forum: George scripting
Topic: Some TVP 10 scripts don't work in TVP 11
Replies: 43
Views: 24561

Re: Some TVP 10 scripts don't work in TVP 11

Is this an xml exporter Lukas? :D Sorry, only saw the quote-notification just now. Yes it is! It writes an XML file you can import into Premiere keeping TVPaint's timing intact (without rendering duplicate frames). It also labels each clip in alternating colors so you can easily define your shots i...
by Lukas
05 Apr 2021, 10:17
Forum: George scripting
Topic: Some TVP 10 scripts don't work in TVP 11
Replies: 43
Views: 24561

Re: Some TVP 10 scripts don't work in TVP 11

Thanks Svengali!
by Lukas
01 Apr 2021, 15:24
Forum: George scripting
Topic: Some TVP 10 scripts don't work in TVP 11
Replies: 43
Views: 24561

Re: Some TVP 10 scripts don't work in TVP 11

Thanks D.T. Nethery 🙂 The pre-/post- behaviour was simply putting a color layer below the current line-art layer with the same length etc and fill the line art on that new layer on all frames with 1 color with the 'above' function while excluding foreground items. If there's a way to do that with th...
by Lukas
01 Apr 2021, 09:19
Forum: George scripting
Topic: Some TVP 10 scripts don't work in TVP 11
Replies: 43
Views: 24561

Re: Some TVP 10 scripts don't work in TVP 11

Thanks! Can you send me the "include.grg" script that is referenced in your script? Oh, of course, I didn't realise it was being included: // ************************************************************************************************ // *** FIRST PART ARE FUNCTIONS BY LUKAS KREPEL (F...
by Lukas
30 Mar 2021, 19:06
Forum: George scripting
Topic: Some TVP 10 scripts don't work in TVP 11
Replies: 43
Views: 24561

Re: Some TVP 10 scripts don't work in TVP 11

Hi Thierry, Nothing serious in the changelog that I can imagine is breaking the scripts. For some scripts I can imagine some tool settings have changed, but it might be something else. Here's an example script that no longer works: // Fix multiply stuff from non-pro .tvpp files Blendingmode[1] = &qu...
by Lukas
29 Mar 2021, 15:51
Forum: George scripting
Topic: Some TVP 10 scripts don't work in TVP 11
Replies: 43
Views: 24561

Some TVP 10 scripts don't work in TVP 11

I wrote a bunch of George scripts in TVPaint 10 that no longer work in TVPaint 11. Is there a list of changes that I can look into so I know where to start to fix them?
by Lukas
20 Mar 2019, 10:55
Forum: George scripting
Topic: Save 1 frame from camera with George?
Replies: 3
Views: 1077

Re: Save 1 frame from camera with George?

Thank you Svengali!

I needed this part:

Code: Select all

filePath = '"' filePath '"'   // enclose path-filename with (single quote double quote singlequotes)
tv_ProjectSaveSequence filePath CAMERA frame frame
by Lukas
19 Mar 2019, 13:22
Forum: George scripting
Topic: Save 1 frame from camera with George?
Replies: 3
Views: 1077

Save 1 frame from camera with George?

Hi everyone, Is there a way to save a single frame with George and use the camera view instead of the project view ? Right now I'm using (after merging all layers): tv_SaveImage filePath and tv_SaveDisplay filePath But both are rendering the project view... I can not get https://wiki.tvpaint.com/ind...
by Lukas
13 Mar 2019, 14:36
Forum: Feature & Improvement requests
Topic: GEORGE : Merge and Split Scenes
Replies: 5
Views: 18727

Re: GEORGE : Merge and Split Scenes

I realize this is an old thread but I'm looking for the same thing; ...is there a George command that does what the "Separate a Scene into two Scenes" button does?
by Lukas
13 Feb 2019, 12:03
Forum: George scripting
Topic: Transform George command?
Replies: 4
Views: 976

Re: Transform George command?

Thanks again NathanOtano. Here's the code I use now. Works great for our purposes. Doesn't work with a moving camera obviously, but that's ok in this case. //Preparing tv_undoopenstack tv_updateundo tv_lockdisplay "Cropping clip to camera..." //Remembering current layer and frame tv_LayerC...
by Lukas
12 Feb 2019, 17:02
Forum: George scripting
Topic: Transform George command?
Replies: 4
Views: 976

Re: Transform George command?

Thanks NathanOtano, that'll push me in the right direction!

The tv_camerainterpolation command isn't available my version of TVP, but I'll work around it
by Lukas
12 Feb 2019, 14:42
Forum: George scripting
Topic: Transform George command?
Replies: 4
Views: 976

Transform George command?

Is there a George command that acts like the Transform tool? Or is there a way to achieve the same thing? I want to create a script that crops a clip to the camera, without actually cropping or changing the resolution. I would read the camera (which is not animated, just a single camera position) pa...