how do i load an image sequence into avisynth+ and can i use QTGMC on it ?
1
for up scaling
2
deintrlacing
.
+ Reply to Thread
Results 1 to 6 of 6
-
-
Depends on the image names. Something like:
Code:ImageSource("pic%05d.png")
You can use QTGMC() but your images may have screwed up chroma from when you saved as images.
Upscale as you would any video. -
The image sequence names don't have to have 5 digits or leading zeors. And the images don't have to start at zero, they can start at 1 or any other number. See the ImageSource docs for details.
-
After 20 other threads on imagesequence this post got me on the right track. Though this method does seem to require the first image to start with 0, otherwise it fails. And yes I read the imagesource docs but couldn't get other methods to work. So I ended up duplicating the first frame, renaming it 000000.png, then used the trim function to remove it for the encode. This is for an image sequence with 6 digits. Without the "end" it'll only load 1000 images by default. Hope this helps someone in the future.
LoadPlugin("H:\VideoStuff\VirtualDub\plugins\ImageSequence.dll")
ImageSource("I:\upscale\hibrawzoom%06d.png", end = 093412)
AssumeFPS(24000, 1001)
lanczos4resize(1920, 1080)
__film = last
__t0 = __film.trim(1, 93412)
__t0 -
This should have worked without creating a frame 0:
Code:ImageSource("I:\upscale\hibrawzoom%06d.png", start=1, end=93412) AssumeFPS(24000, 1001) lanczos4resize(1920, 1080)
Code:ImageSource("I:\upscale\hibrawzoom%06d.png", end = 093412) AssumeFPS(24000, 1001) lanczos4resize(1920, 1080) Trim(1,0) # start with frame 1 (ie discard frame 0), keep all frames until the end of the video
Similar Threads
-
QTGMC/IVTC issues on AVISynth/AvspMod
By Fraugster in forum RestorationReplies: 33Last Post: 7th Aug 2019, 07:55 -
Multithreading QTGMC with AviSynth+
By ZetaStax in forum Video ConversionReplies: 5Last Post: 16th May 2019, 07:23 -
AviSynth ImageSource Requiring Image 0 in Sequence Even With 'Start' Set
By koberulz in forum Newbie / General discussionsReplies: 2Last Post: 29th Dec 2017, 11:06 -
How to load QTGMC for use with megui
By pooksahib in forum Video ConversionReplies: 24Last Post: 2nd May 2017, 13:49 -
QTGMC difficulties with AviSynth
By chconnor in forum Video ConversionReplies: 2Last Post: 19th Feb 2017, 22:01