From f2aba306746f9795833fd0923c66951d74cf586c Mon Sep 17 00:00:00 2001 From: Harsh <65716674+Harsh-br0@users.noreply.github.com> Date: Sun, 16 May 2021 12:08:48 +0530 Subject: [PATCH] Handling attribute error smh --- ffmpeg/_ffmpeg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg/_ffmpeg.py b/ffmpeg/_ffmpeg.py index eb67e99..0c0ff19 100644 --- a/ffmpeg/_ffmpeg.py +++ b/ffmpeg/_ffmpeg.py @@ -24,7 +24,7 @@ def input(filename, **kwargs): Official documentation: `Main options `__ """ - if isinstance(filename, os.PathLike): + if getattr(os, "PathLike", None) and isinstance(filename, os.PathLike): filename = str(filename) kwargs['filename'] = filename fmt = kwargs.pop('f', None)