![]() |
Encode image sequences? - Printable Version +- Selur's Little Message Board (https://forum.selur.net) +-- Forum: Hybrid - Support (https://forum.selur.net/forum-1.html) +--- Forum: Problems & Questions (https://forum.selur.net/forum-3.html) +--- Thread: Encode image sequences? (/thread-215.html) |
Encode image sequences? - peterwhittaker - 09.01.2018 Great program Selur thanks! Made a donation a while back. At the moment my workflow involves rendering long image sequences, which I then would like to encode with Hybrid. Would it be possible to add this, if it's not already possible? I see ffmpeg supports it on the CLI. It would mean I could avoid having to create large intermediate movies. RE: Encode image sequences? - Selur - 09.01.2018 Not supported atm. but I will think about it. Cu Selur RE: Encode image sequences? - Selur - 09.01.2018 General question in this regard: What image formats would be useful with this? My first thought would have been jpg and png, but I haven't worked with image sequences for quite some time so no clue what nowadays is used. Cu Selur RE: Encode image sequences? - anana - 10.01.2018 (09.01.2018, 21:05)Selur Wrote: General question in this regard: What image formats would be useful with this? The most common format for it would be png, tga, tiff or tif, and exr. jpg, maybe just for the preview render only in 3d apps/compositor. RE: Encode image sequences? - Selur - 10.01.2018 Okay,.. looks like all of them are supported for processing. ![]() png: ffmpeg, Avisynth(ImageSource), Vapoursynth(vsimagereader) tga: Avisynth(ImageSource), Vapoursynth(vsimagereader) tiff/tif: ffmpeg, Avisynth(ImageSource), Vapoursynth(vsimagereader) exr: ffmpeg, Avisynth(ImageSource), Vapoursynth(vsimagereader) jpg: ffmpeg, Avisynth(ImageSource), Vapoursynth(vsimagereader) Sadly preview with mplayer is only supported for jpeg, png and tga. Thought about it a bit and I might be able to add support for it over the next weekend. Cu Selur Ps.: What OS do you use, so that I can send you a link to a dev version once I'm finished for testing. ![]() RE: Encode image sequences? - Selur - 11.01.2018 small correction Vapoursynth would need ImageMagick Writer-Reader Problem is, unlike Avisynth ImageReader it doesn't have a lastnum/end parameter. ![]() imwri.Read(string[] filename[, int firstnum=0, bint mismatch=False, bint alpha=False, bint float_output = False]) I could work around it, by limiting the frame count through a trim-call is that doesn't pan out. In ffmpeg you also can only set a start frame and limit the frame count with '-frames:v',... => okay seems like 'trim' is the way to go for now,.. ![]() Cu Selur RE: Encode image sequences? - anana - 12.01.2018 By the way, some image sequence could start from minus (-) Example: _-002, _-001, _000, _001, _002 RE: Encode image sequences? - Selur - 12.01.2018 Quote:By the way, some image sequence could start from minus (-)That, I won't support, since I think it's silly. ![]() I also will only support positive numbering and not hexadecimal or similar stuff. ![]() Cu Selur |