
librosa
农民小飞侠
如果放弃了,那还谈什么理想
展开
-
python 判断音频的是否为空
今天在处理音频的时候,需要判断音频是否为空,我分享一下我的python代码:import librosadef check_audio_durations(file_name): """ check whether the audio file is empty """ len_file=os.path.getsize(file_name) if(len_file==0): return False time = librosa.g原创 2020-05-18 15:23:30 · 1753 阅读 · 3 评论 -
ubuntu 安装librosa的时候出现No matching distribution found for pytest-runner
今天在安装librosa的时候出现了下面的错误:wugaosheng@s206:~$ pip3 install librosaCollecting librosa Downloading http://mirrors.aliyun.com/pypi/packages/77/b5/1817862d64a7c231afd15419d8418ae1f000742cac275e85c74b21...原创 2020-03-10 18:25:50 · 5393 阅读 · 0 评论