We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 275bbec commit 6cfe66fCopy full SHA for 6cfe66f
README.md
@@ -40,7 +40,7 @@ An example of transfer the coding of a video with an assigned codec:
40
opened = e.FFmpegSetup() # Load the encoder.
41
if opened: # If encoder is not loaded successfully, do not continue.
42
p = True
43
- while p:
+ while p is not None:
44
p = d.ExtractGOP() # Extract current GOP.
45
for i in p: # Select every frame.
46
e.EncodeFrame(i) # Encode current frame.
0 commit comments