Hi Heribert,
Due to problem with many file with their indicated start-time, and end-time,
pyffmpeg currently tries to read until there is no more packet to be read in the file,
and it raise an Exception when it cannot find anymore any packet.
This is the exception that you are seeing.
Thus you had just type the three lines indicated, pyffmpeg has
read the entire video file (, doing nothing, as you did not specify any callback),
until it crashed because the end of the file has been reached.
As the error returned may depend on the codec, or may also due
to malformed files, I have currently let this exception been raised as this.
It is still possible to determine the nature of the reason why the exception
was raised by comparing the PTS of the last packet with the duration
of the file.
Bertrand