python
audiobuffer
不积跬步,无以至千里。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python之打印到文档
记录一下,将数组打印到txt文件中 import numpy as np text_file = open("test.txt", "w") print("test\n", file=text_file) print("test", file=text_file)原创 2021-05-08 08:41:08 · 261 阅读 · 0 评论 -
解决方案之AttributeError: module ‘lib‘ has no attribute ‘Cryptography_HAS_SSL_ST‘
问题描述: $ pip3 Traceback (most recent call last): File "/usr/local/bin/pip3", line 7, in <module> from pip._internal import main File "/usr/local/lib/python3.5/dist-packages/pip/_internal/...原创 2018-12-21 16:24:24 · 3637 阅读 · 2 评论 -
ValueError: Unexpected end of file.
问题描述: 使用scipy.io的wavfile.read()读取音频,出现ValueError: Unexpected end of file.问题。 问题原因: 目前暂时确定是因为音频文件的尾部有问题。具体什么问题,欢迎大家补充~ 解决方法: 使用任意音频软件打开该文件,再重新保存一下就可以了。 参考链接: https://stackoverflow.com/questions/4741983...原创 2018-12-28 14:51:26 · 1398 阅读 · 0 评论
分享