Skip to content

Commit

Permalink
v1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Lijun-Yu committed Oct 15, 2020
1 parent d9f3897 commit 0975f7f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion avi_r/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def __del__(self):
self._del()

def _init(self, video_stream_id=0):
self._container = av.open(self.path)
self._container = av.open(self.path, metadata_errors='ignore')
self._stream = self._container.streams.video[video_stream_id]
self._frame_gen = self._get_frame_gen()
self.reorder_buffer = []
Expand Down
4 changes: 4 additions & 0 deletions docs/version.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Version History

## AVI-R v1.3.4

* Ignore errors in metadata decoding.

## AVI-R v1.3.3

* Fix seek retry.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setuptools.setup(
name='avi-r',
version='1.3.3',
version='1.3.4',
author='Lijun Yu',
author_email='lijun@lj-y.com',
description='A robust reader for avi videos.',
Expand Down

0 comments on commit 0975f7f

Please sign in to comment.