Hi. I want to try speeding things up by using MeGUI 'workers' but can't get my head around it and nor can I find a good tutorial.
My first question is: how many scripts do I need? Say I have a movie that I'm going to edit into 3 scenes, I'd have a script like this which I'd run 3 times (changing the hashes):
LoadPlugin("E:\MeGUI\tools\lsmash\LSMASHSource.dll ")
a=LSMASHVideoSource("F:\....mp4")
b=LSMASHAudioSource("F:\....mp4")
audiodub(a,b)
trim(240,5600)
#trim(6000,16000)
#trim(18000,25487)
With workers, could I just remove the hashes? Or would I make 2 extra copies of the script, give them new names and include just one 'trim' in each?
Now the main question, how to get a second worker going. Do you begin one job as normal and then add the other – if so, how exactly? Or is there another method?
Any assistance GREATLY appreciated.
My first question is: how many scripts do I need? Say I have a movie that I'm going to edit into 3 scenes, I'd have a script like this which I'd run 3 times (changing the hashes):
LoadPlugin("E:\MeGUI\tools\lsmash\LSMASHSource.dll ")
a=LSMASHVideoSource("F:\....mp4")
b=LSMASHAudioSource("F:\....mp4")
audiodub(a,b)
trim(240,5600)
#trim(6000,16000)
#trim(18000,25487)
With workers, could I just remove the hashes? Or would I make 2 extra copies of the script, give them new names and include just one 'trim' in each?
Now the main question, how to get a second worker going. Do you begin one job as normal and then add the other – if so, how exactly? Or is there another method?
Any assistance GREATLY appreciated.