博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用ffmpeg录音
阅读量:6494 次
发布时间:2019-06-24

本文共 1578 字,大约阅读时间需要 5 分钟。

官方教程:

录音方法:

开始找到了这个方法,但是不行呀,好像是没有这个oss吧。

oss 是linux 下的声音相关的东西,与alsa 一样,不过oss 是商业的, 而/dev/dsp 是oss 用到的麦克的设备吧

ffmpeg -f oss -i /dev/dsp wheer.mp3ffmpeg -f oss -i /dev/dsp -ar 8000 -ab 10200 wheer.amr

 

采用 alsa-oss 录制,就可以啦

ffmpeg -f alsa -ac 2 -i hw:0,0 out.mp3ffmpeg -f alsa -ac 2 -i hw:0,0 out.wav

科大讯飞的合成或者识别,保存成的音频文件格式是16k或者8k,16bit,单声道pcm格式的音频。采用以下方式录音

ffmpeg -f alsa  -ar 16000 -ac 1 -i hw:0 lib.wav

q——停止

但是 我使用以上命令时,提示说

cannot set channel count to 1 (Invalid argument)hw:0: Input/output error

最后查阅资料,发现以下参数设置:

-ab bitrate 设置音频码率-ar freq 设置音频采样率-ac channels 设置通道 缺省为1-an 不使能音频纪录-acodec codec 使用codec编解码

如此按理说,去掉 -ac通道设置即可,运行以下命令:

ffmpeg -f alsa  -ar 16000 -i hw:0 lib.wav
-acodec pcm_s16le 但还是无法识别,最后问了一下,是这样录音的:
ffmpeg -y -f alsa -i pluse -t 00:00:06 -ar 16000 -ac 1 lib.wav

其中

-y (global)  Overwrite output files without asking.-f fmt (input/output)   Force input or output file format. The format is normally auto detected for input files and guessed from the file extension   for output files, so this option is not needed in most cases.-i url (input)   input file url-t duration (input/output)   When used as an input option (before -i), limit the duration of data read from the input file.   When used as an output option (before an output url), stop writing the output after its duration reaches duration.   duration must be a time duration specification, see (ffmpeg-utils)the Time duration section in the ffmpeg-utils(1) manual.   -to and -t are mutually exclusive and -t has priority.

 

//试试改改他的用法ffmpeg -y -f alsa -i hw:0 -t 00:00:06 -ar 16000 -ac 1 lib.wav

 这个可以了。

感谢

转载地址:http://cqkyo.baihongyu.com/

你可能感兴趣的文章
下面简要介绍软件工程的七条原理
查看>>
java POI实现excel实现表格导出
查看>>
Hadoop 新 MapReduce 框架 Yarn 详解
查看>>
Lua(三)——语句
查看>>
TensorFlow的基本运算01
查看>>
怎么看电脑有没有安装USB3.0驱动
查看>>
overflow清除浮动的原理
查看>>
Spring Boot 使用parent方式引用时 获取值属性方式默认@
查看>>
Elasticsearch之中文分词器插件es-ik(博主推荐)
查看>>
解决maven下载jar慢的问题(如何更换Maven下载源)
查看>>
linux安装gitLab
查看>>
concurrent包的实现示意图
查看>>
详解Java中的clone方法 -- 原型模式
查看>>
golang os.Args
查看>>
Linux常用命令
查看>>
【重磅】云栖社区2017年度内容特辑
查看>>
Java WEB开发时struts标签 显示set内容
查看>>
spring-data-elasticsearch 概述及入门(二)
查看>>
Solr启动和结束命令
查看>>
thymeleaf 知多少
查看>>