摘要:
import operator from numpy import array, tile def create_dataset(): _dataset = array([[1.0, 1.1], [1.0, 1.0], [0, 0], [0, 0.1]]) _labels = ['A', 'A', 阅读全文
摘要:
方法1:命令转码 # 转码 ffmpeg -ac 2 -ar 48000 -f s16le -i input.pcm -acodec libfdk_aac output.aac # 播放 ffplay output.aac 方法2:代码转码 main.c #include "libavutil/lo 阅读全文