Okay, I now know where the problem lies, I just don't know why it happens and how to work around it atm. :/
Problem is.
Normally for jpeg is reported by MediaInfo as 'Video' (mediainfo "Path to image file")
In example like this:
Video
Format : JPEG
Width : 640 pixels
Height : 352 pixels
Display aspect ratio : 16:9
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Compression mode : Lossy
Stream size : 972 KiB (100%)
which is why Hybrid uses something like:
mediainfo --Language=en "--Inform=Video;%Width%%%Height%%%ColorSpace%%%BitDepth%%%ChromaSubsampling%" "C:\Users\Selur\Desktop\test\2sideshredder0600.jpg"
to get the needed infos, your jpegs however are reported as 'Image'.
Image
Format : JPEG
Width : 1 920 pixels
Height : 1 080 pixels
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Compression mode : Lossy
Stream size : 416 KiB (100%)
which is why Hybrids call doesn't report anything, which later on causes the problems.
Thus Hybrid should use something like:
mediainfo --Language=en "--Inform=Image;%Format%%%Width%%%Height%%%Codec/Family%%%BitDepth%%%ChromaSubsampling%%%ColorSpace%" "C:\Users\Selur\Desktop\test\2sideshredder0600.jpg"
to get the information it needs,..
-> So the question is when does MediaInfo identify/report an Image sequence as Image and when as Video ?
Cu Selur