mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-20 06:57:28 -08:00
Bug: https://github.com/deepjyoti30/ytmdl/issues/222 Signed-off-by: Maciej Barć <xgqt@gentoo.org>
13 lines
507 B
Diff
13 lines
507 B
Diff
index afc504d..bf43c06 100644
|
|
--- a/ffmpeg/_run.py
|
|
+++ b/ffmpeg/_run.py
|
|
@@ -137,7 +137,7 @@ def _get_output_args(node, stream_name_map):
|
|
if 'video_size' in kwargs:
|
|
video_size = kwargs.pop('video_size')
|
|
if not isinstance(video_size, basestring) and isinstance(
|
|
- video_size, collections.Iterable
|
|
+ video_size, collections.abc.Iterable
|
|
):
|
|
video_size = '{}x{}'.format(video_size[0], video_size[1])
|
|
args += ['-video_size', video_size]
|