You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while extract from video with typical format, like mkv, it can't show precise progress. Like shown in the code:
defget_progress(self, pos):
container=self._get_av_container()
# Not for all containers return real valuestream=container.streams.video[0]
returnpos/stream.durationifstream.durationelseNone
VideoStream object may not have a real duration value.
Expected Behaviour
But we can find duration information from metadata of VideoStream object, then we can calculate precise progress instead of showing "Images are being compressed |/-\"
The text was updated successfully, but these errors were encountered:
My actions before raising this issue
while extract from video with typical format, like mkv, it can't show precise progress. Like shown in the code:
VideoStream object may not have a real duration value.
Expected Behaviour
But we can find duration information from metadata of VideoStream object, then we can calculate precise progress instead of showing "Images are being compressed |/-\"
The text was updated successfully, but these errors were encountered: