From 4dfd03dd3bfef5569e89265a06faa5b105d34fbd Mon Sep 17 00:00:00 2001 From: Harsh <65716674+Harsh-br0@users.noreply.github.com> Date: Sun, 16 May 2021 11:53:08 +0530 Subject: [PATCH 1/2] Support path-like objects as well --- ffmpeg/_ffmpeg.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ffmpeg/_ffmpeg.py b/ffmpeg/_ffmpeg.py index 31e2b90..eb67e99 100644 --- a/ffmpeg/_ffmpeg.py +++ b/ffmpeg/_ffmpeg.py @@ -2,6 +2,7 @@ from __future__ import unicode_literals from past.builtins import basestring from ._utils import basestring +import os from .nodes import ( filter_operator, @@ -23,6 +24,8 @@ def input(filename, **kwargs): Official documentation: `Main options `__ """ + if isinstance(filename, os.PathLike): + filename = str(filename) kwargs['filename'] = filename fmt = kwargs.pop('f', None) if fmt: 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 2/2] 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)