Handling attribute error smh

This commit is contained in:
Harsh 2021-05-16 12:08:48 +05:30 committed by GitHub
parent 4dfd03dd3b
commit f2aba30674
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ def input(filename, **kwargs):
Official documentation: `Main options <https://ffmpeg.org/ffmpeg.html#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)