I'm not much of a scripter, nor programmer it would seem. The syntax just falls apart in my mind.
I'm attempting to deinterlace a 25 FPS mpeg2 stream. I have all the proper project files, and I'm using GTGMC. I can't figure how to have it write to a file after processing frames. This is what I have so far. It works, it just dumps the frames after calculating, instead of writing them to disk.
SetMTMode (5, 16)
MPEG2Source ("C:\Users\--\Desktop\Blood+\Full\Blood1.d2v")
Filename = "C:\users\--\Desktop\Blood.m2v"
WriteFile(filename, "current_frame")
SetMTMode (2)
QTGMC ( Preset="Placebo", Edithreads=4 )
WriteFileStart(filename, """ "This is the header" """)
WriteFileEnd(filename, """ "Now the script was closed" """)
I'm fine with using "Placebo" for an initial test. I plan to compare it against other settings when it's actually working.
I suppose I'm imagining this running sequentially for every frame, and it makes sense. But it doesn't work, so it probably doesn't really make sense at all.
Anyone see the issue?
I'm attempting to deinterlace a 25 FPS mpeg2 stream. I have all the proper project files, and I'm using GTGMC. I can't figure how to have it write to a file after processing frames. This is what I have so far. It works, it just dumps the frames after calculating, instead of writing them to disk.
SetMTMode (5, 16)
MPEG2Source ("C:\Users\--\Desktop\Blood+\Full\Blood1.d2v")
Filename = "C:\users\--\Desktop\Blood.m2v"
WriteFile(filename, "current_frame")
SetMTMode (2)
QTGMC ( Preset="Placebo", Edithreads=4 )
WriteFileStart(filename, """ "This is the header" """)
WriteFileEnd(filename, """ "Now the script was closed" """)
I'm fine with using "Placebo" for an initial test. I plan to compare it against other settings when it's actually working.
I suppose I'm imagining this running sequentially for every frame, and it makes sense. But it doesn't work, so it probably doesn't really make sense at all.
Anyone see the issue?