I just did a test and you don't need to modify nona-deshake to use TIFF input files.
I created a set of images called: temp00000001.tif, temp00000002.tif etc... I created a Hugin project using just one of these images, set the crop and output projection, saved as template.pto Ran nona-deshake: nona-deshake -o out template.pto temp*.tif Note that this produces JPEG intermediate files called out00000001.jpg, out00000002.jpg, etc.. If you don't want JPEG here then you *do* need to modify nona-deshake. ffmpeg needs an input file: for FILE in out*.jpg; do echo "file '$FILE'" >> frames.txt; done This produces a frames.txt file that looks like this: file 'out00000001.jpg' file 'out00000002.jpg' file 'out00000003.jpg' [etc..] Then I joined these JPEGs into a video like so: ffmpeg -f concat -i frames.txt output.mp4 -- Bruno On Sat, 8 Oct 2022 at 09:17, Tommy Hughes wrote: > > Hi Bruno, I already have tiffs, and I have tried altering every line with jpg > and changing it to tiff, but the script doesn't run. Do the tiff filenames > need to be in a specific format to work? Is that the webcam%08d? Mine are > name LRT_00001.tif, currently -- A list of frequently asked questions is available at: http://wiki.panotools.org/Hugin_FAQ --- You received this message because you are subscribed to the Google Groups "hugin and other free panoramic software" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/hugin-ptx/CAJV99Zjn7iKr9jdd195XGm_OyK2M%2B67LA9odhQCPaQtD_N_8zA%40mail.gmail.com.
