当我试图运行这个错误并从系统发送一个音频文件时,我得到了这个错误。
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)发布于 2020-03-17 10:51:50
您应该正确安装libmediainfo-dev,
如果您正在使用Ubuntu或debian,请运行:
sudo apt-get update -y
sudo apt-get install -y libmediainfo-dev如果你使用的是红帽,圆点或软呢帽跑:
yum install libmediainfohttps://stackoverflow.com/questions/60720282
复制相似问题