错误:OSError:libmediainfo.so.0:无法打开共享对象文件:没有这样的文件或目录

Aka*_*xit 3 python api python-3.x python-requests

当我尝试运行此程序并从系统发送音频文件时,出现此错误。

self._handle = _dlopen(self._name, mode)
OSError: libmediainfo.so.0: cannot open shared object file: No such file or directory

from __future__ import print_function
import time
import deepaffects
from deepaffects.rest import ApiException
from pprint import pprint

# Configure API key authorization: UserSecurity
deepaffects.configuration.api_key['apikey'] = 'xxxxxxxxxxxxxxxxxxxxx'
# create an instance of the API class
api_instance = deepaffects.DenoiseApi()
body = deepaffects.Audio.from_file('final_test1.wav') # Audio | Audio object that needs to be denoised.**Error in this line** 
webhook = 'https://webhook.site/9da66e31-c5cc-4474-8d72-7320eaa7c406' # str | The webhook 
url where result from async resource is posted
#request_id = 'request_id_example' # str | Unique identifier for the request (optional)

try:
    # Denoise an audio file
    api_response = api_instance.async_denoise_audio(body, webhook)
    print(api_response)
except ApiException as e:
    print("Exception when calling DenoiseApi->async_denoise_audio: %s\n" % e)
Run Code Online (Sandbox Code Playgroud)

小智 6

您应该正确安装 libmediainfo-dev,

如果您使用的是 Ubuntu 或 debian,请运行:

sudo apt-get update -y
sudo apt-get install -y libmediainfo-dev
Run Code Online (Sandbox Code Playgroud)

如果您使用的是 redhat、centos 或 fedora,请运行:

yum install libmediainfo
Run Code Online (Sandbox Code Playgroud)