Skip to content

Commit

Permalink
Fix codec typo of v8 instead of vp8
Browse files Browse the repository at this point in the history
  • Loading branch information
laggykiller committed Jan 30, 2024
1 parent 03d3959 commit 084598e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sticker_convert/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def frames_import_imageio(self):
if metadata.get('alpha_mode') != '1':
frame_format = 'rgb24'
if metadata.get('codec') == 'vp8':
context = CodecContext.create('v8', 'r')
context = CodecContext.create('vp8', 'r')
elif metadata.get('codec') == 'vp9':
context = CodecContext.create('libvpx-vp9', 'r')

Expand Down

0 comments on commit 084598e

Please sign in to comment.