Search found 31 matches

by jeremyb
16 May 2022, 16:45
Forum: George scripting
Topic: tv_writetextfile without dialog
Replies: 4
Views: 4417

Re: tv_writetextfile without dialog

Okay,
switching back to keep always [...] and Open [...], seems to reset somethings...because is working
unknown.png
unknown.png (24.38 KiB) Viewed 4338 times
by jeremyb
16 May 2022, 10:56
Forum: George scripting
Topic: tv_writetextfile without dialog
Replies: 4
Views: 4417

Re: tv_writetextfile without dialog

Hi,
i've got same issue here.
No matter what, checked or not, after restart tvpaint checkbox always checked.
Capffture.PNG
Capffture.PNG (4.24 KiB) Viewed 4348 times
if i modify

Code: Select all

config.ini
after close tvpaint, file is reset and i lost modification.
There is no other way, to uncheck this box ?
by jeremyb
16 May 2022, 09:34
Forum: George scripting
Topic: formatting file paths
Replies: 4
Views: 4353

Re: formatting file paths

hi,
When i want to output movie, isn't problem strangly... But when i want to save tvpaint file i've got error.
by jeremyb
13 May 2022, 08:51
Forum: George scripting
Topic: formatting file paths
Replies: 4
Views: 4353

Re: formatting file paths

Hi, thank you for your feedback after trying, it's the same problem, nohtin append. tv_ReadUserString "VfxConfig" "ProjectFullPath" "" projectFullPath = '"result"' // << ' " result " ' , double qote simple quote tv_saveproject projectFullPath but if ...
by jeremyb
12 May 2022, 17:27
Forum: George scripting
Topic: integer or string
Replies: 0
Views: 3978

integer or string

hi, If i want to export movie, working as expected like this : tv_firstimage frame_in = result tv_lastimage frame_out = result tv_LockDisplay "Export MOV..." tv_SaveMode "Mode=1015" tv_SaveSequence playblastFullPath frame_in frame_out tv_UnLockDisplay BUT if i get frame_in, frame...
by jeremyb
12 May 2022, 16:38
Forum: George scripting
Topic: formatting file paths
Replies: 4
Views: 4353

formatting file paths

Hi, I am trying to understand why I have this difference formatting file paths between tv_loadsequence and tv_saveproject . Note : the .grg script part are from the script : tvp_test.grg tv_saveproject cmdline : "C:\Program Files\[...] Animation 11.5 Pro (64bits).exe" "cmd=tv_WriteUse...
by jeremyb
19 Apr 2022, 21:11
Forum: George scripting
Topic: Saving project in quicktime compressed format?
Replies: 20
Views: 11353

Re: Saving project in quicktime compressed format?

I don't think this is doable in George at all, because as I've said previously in this topic, Mov/MP4 export was never made possible in George: FUNCTION exportMov() //init tv_LockDisplay "Export Mov..." tv_SaveMode "Mode=1015" // MOV(FFmpeg) movPath = vfxPreviewPath"/"...
by jeremyb
19 Apr 2022, 20:58
Forum: George scripting
Topic: Optimize loop trought layer export
Replies: 14
Views: 11397

Re: Optimize loop trought layer export

Yes I had also tried without ffmpeg, the problem remains the same.
After trying everything, and I spent a while there. I decided to switch part of the workflow to Blender.
by jeremyb
03 Feb 2022, 18:31
Forum: George scripting
Topic: Saving project in quicktime compressed format?
Replies: 20
Views: 11353

Re: Saving project in quicktime compressed format?

Code: Select all

tv_SaveMode "Mode=1010"
made a .dip file, not mov
by jeremyb
03 Feb 2022, 10:34
Forum: George scripting
Topic: Command line issue
Replies: 2
Views: 3696

Re: Command line issue

On windows command line sended must be : "cmd=tv_loadproject filepath" On linux command line sended must be : cmd="tv_loadproject filepath" Quotation marks are positioned differently, and this is specific to the platform. I think... because if you switch it doesn't work. Is there...
by jeremyb
03 Feb 2022, 10:23
Forum: George scripting
Topic: Saving project in quicktime compressed format?
Replies: 20
Views: 11353

Re: Saving project in quicktime compressed format?

hum, not at all...still a question...because if i run this script i've got en .mov but is totaly white or black with NaN value...
same with mode=1015
by jeremyb
28 Jan 2022, 23:59
Forum: George scripting
Topic: Optimize loop trought layer export
Replies: 14
Views: 11397

Re: Optimize loop trought layer export

can there be problems if ffmpeg is already installed on the machine?
or LVA filter
https://github.com/Nevcairiel/LAVFilters/releases

I'm trying to find out, because apparently...I'm the only one with this problem
by jeremyb
28 Jan 2022, 17:13
Forum: George scripting
Topic: Optimize loop trought layer export
Replies: 14
Views: 11397

Re: Optimize loop trought layer export

i'm back again :D I thought they was a problem with tv_lockdisplay , so i remove tv_lockdisplay and tv_unlockdisplay . The issue, came back ! And if i re-write tv_lockdisplay and tv_unlockdisplay the issue still ! I'm really stuck, and I don't understand why... Find if we are a tvpaint support on ou...
by jeremyb
28 Jan 2022, 11:34
Forum: George scripting
Topic: Command line issue
Replies: 2
Views: 3696

Command line issue

Hello, I want to output an MP4 from tvpaint via the command line. When I execute the george script via the command line, the script works, but generates a mp4 of some Kb. it is not usable. When I execute a part of this script via the custom panel (inside tvpaint) it works and I have a working MP4. H...
by jeremyb
28 Jan 2022, 10:06
Forum: George scripting
Topic: Saving project in quicktime compressed format?
Replies: 20
Views: 11353

Re: Saving project in quicktime compressed format?

If i want to transpose this export settings tempsnip.png to george code, should be : FUNCTION exportMp4() tv_LockDisplay "Export..." tv_SaveMode tv_SaveMode "Mode=1016" tv_SaveMode tv_ProjectSaveSequence playblastPath frameIn frameOut tv_UnLockDisplay END In other way, tv_Project...