Skip to content

Commit

Permalink
Fixed bug with encoder codec option
Browse files Browse the repository at this point in the history
  • Loading branch information
YuvalNirkin committed Apr 24, 2020
1 parent 5e61edb commit 15efc29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/video_renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self, display=False, verbose=0, verbose_size=None, output_crop=Fals
self._running = True
self._input_queue = mp.Queue()
self._reply_queue = mp.Queue()
self._fourcc = cv2.VideoWriter_fourcc(*'encoder_codec')
self._fourcc = cv2.VideoWriter_fourcc(*encoder_codec)
self._in_vid = None
self._out_vid = None
self._seq = None
Expand Down

0 comments on commit 15efc29

Please sign in to comment.