Hey,
I was wondering whether its possible to run the george command "tv_writetextfile" without the permission dialog appearing and blocking execution?
Search found 19 matches
- 30 Sep 2021, 19:36
- Forum: George scripting
- Topic: tv_writetextfile without dialog
- Replies: 4
- Views: 10777
- 03 Aug 2016, 15:53
- Forum: Packs, Plugins, Third Party
- Topic: TVPaint Publishing Pipeline
- Replies: 8
- Views: 72442
Re: TVPaint Publishing Pipeline
I'm maybe asking too much, but would you mind sharing your scripts with the community ? The pipeline is currently very tied to Ftrack, so a directly usage on other projects using other tools, wouldn't work. I'm going to work on separating the two into a Pyblish extension so everyone can pick it up ...
- 03 Aug 2016, 10:20
- Forum: Packs, Plugins, Third Party
- Topic: TVPaint Publishing Pipeline
- Replies: 8
- Views: 72442
Re: TVPaint Publishing Pipeline
I know that Ethel and Ernest's production used Hobsoft too. What is precisely the difference between both ? Short answer is preference:) Ftrack was used internally at Cloth Cat Animation, where the painting, compositing and CG was done. Hobsoft was used at Lupus and external vendors. We got the tv ...
- 02 Aug 2016, 15:27
- Forum: Packs, Plugins, Third Party
- Topic: TVPaint Publishing Pipeline
- Replies: 8
- Views: 72442
Re: TVPaint Publishing Pipeline
Ahh, yes, good point :D I've updated the video with subtitles about the specifics about what is happening. Outside what is shown in the video, the publishing will also update Ftrack with the rendered frames and notify the user that the render was complete. The pipeline was used extensively on the pa...
- 31 Jul 2016, 00:16
- Forum: Packs, Plugins, Third Party
- Topic: TVPaint Publishing Pipeline
- Replies: 8
- Views: 72442
TVPaint Publishing Pipeline
Hey, Wanted to share the pipeline we used at Cloth Cat Animation, developed by me using George( http://wiki.tvpaint.com/index.php?title=George ), Python( https://www.python.org/ ), Ftrack( https://www.ftrack.com/ ) and Pyblish(http://pyblish.com/" onclick="window.open(this.href);return fal...
- 11 Jan 2016, 07:35
- Forum: Feature & Improvement requests
- Topic: Having two (or more) TvPaint windows open at the same time.
- Replies: 20
- Views: 55289
Re: Having two (or more) TvPaint windows open at the same ti
Thanks Elodie for clarifying.
Are there any plans to support this feature? Either export in the background while being able to work, or having two sessions of tvp open?
Are there any plans to support this feature? Either export in the background while being able to work, or having two sessions of tvp open?
- 08 Jan 2016, 23:32
- Forum: Feature & Improvement requests
- Topic: Having two (or more) TvPaint windows open at the same time.
- Replies: 20
- Views: 55289
Re: Having two (or more) TvPaint windows open at the same ti
Maybe a minimal headless (no ui) command line tool, that can export the images.
All other software I have encountered offer render licenses either included with a workstation licence or sold separately.
All other software I have encountered offer render licenses either included with a workstation licence or sold separately.
- 08 Jan 2016, 14:21
- Forum: Feature & Improvement requests
- Topic: Having two (or more) TvPaint windows open at the same time.
- Replies: 20
- Views: 55289
Re: Having two (or more) TvPaint windows open at the same ti
Sorry, I was using "render" wrongly here. I meant exporting images. We would like to export images and work at the same time. We having a lot of artists using the dongle licenses, and we don't want the artists to have to wait while exporting. We currently use Deadline to export images, on ...
- 07 Jan 2016, 12:24
- Forum: Feature & Improvement requests
- Topic: Having two (or more) TvPaint windows open at the same time.
- Replies: 20
- Views: 55289
Re: Having two (or more) TvPaint windows open at the same ti
Is there no way of getting two instances of TVP running on the same machine? We currently have a lot of dongle licenses, that is being used by artists during the day. We don't want them to stop working to render. I tried with virtual machines, but the usb can't be shared simultanously between the ho...
- 10 Sep 2015, 10:07
- Forum: George scripting
- Topic: Execute command line with TVP
- Replies: 21
- Views: 10129
Re: Execute command line with TVP
Then another of working around this problem would be to have the ability to pass arguments to scripts. Is this possible with george script?Well, I tried to find a way to manage them, but finally it's a limitation of george scripts -_-
- 01 Sep 2015, 11:16
- Forum: George scripting
- Topic: Execute command line with TVP
- Replies: 21
- Views: 10129
Re: Execute command line with TVP
More to this. The problem actually seems to be with whitespace before or after the quotation marks.
Code: Select all
script = 'xxx bla "bla"bla xx'
PRINT script
tv_WriteTextFile "Create" "C:\Users\toke.jepsen\Desktop\temp.txt" script
- 28 Aug 2015, 13:59
- Forum: George scripting
- Topic: Execute command line with TVP
- Replies: 21
- Views: 10129
Re: Execute command line with TVP
Thanks Mike:)
Your code works, but the problem is when you have the quotation marks at the beginning of the string;
Your code works, but the problem is when you have the quotation marks at the beginning of the string;
Code: Select all
script = '"bla" bla xx'
PRINT script
tv_WriteTextFile "Create" "C:\Users\toke.jepsen\Desktop\temp.txt" script
- 24 Aug 2015, 10:05
- Forum: George scripting
- Topic: Execute command line with TVP
- Replies: 21
- Views: 10129
Re: Execute command line with TVP
Thanks Sven:) I tried setting the quotation marks before, but it just seems to ignore it when writing to disk. Here a test case; script = 'somethingInQuotes' script = '"'script'"' PRINT script tv_WriteTextFile "Create" "C:\Users\toke.jepsen\Desktop\temp.txt" script It p...
- 24 Aug 2015, 09:21
- Forum: George scripting
- Topic: Execute command line with TVP
- Replies: 21
- Views: 10129
Re: Execute command line with TVP
You probably could, else you could run a bat file that runs the python script:)Maybe it also could run Python Scripts?
- 24 Aug 2015, 08:45
- Forum: George scripting
- Topic: Execute command line with TVP
- Replies: 21
- Views: 10129
Re: Execute command line with TVP
Thank you Mads:) That worked a treat! So what I'm having a some trouble with now, is how to write double quotation marks. The current workflow is to write a temporary bat file, and run it. This way I can add arguments to the bat file and "tv_runscript" to run the bat file. I'm passing in t...