mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Handling attribute error smh
This commit is contained in:
parent
4dfd03dd3b
commit
f2aba30674
@ -24,7 +24,7 @@ def input(filename, **kwargs):
|
|||||||
|
|
||||||
Official documentation: `Main options <https://ffmpeg.org/ffmpeg.html#Main-options>`__
|
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)
|
filename = str(filename)
|
||||||
kwargs['filename'] = filename
|
kwargs['filename'] = filename
|
||||||
fmt = kwargs.pop('f', None)
|
fmt = kwargs.pop('f', None)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user