如何使用AAC编解码器格式的麦克风录制音频

时间:2011-07-15 19:51:04

标签: audio audio-streaming gstreamer

如何使用gstreamer在mp4文件中使用AAC编解码器格式的麦克风录制音频?

请回复管道信息。 提前谢谢。

1 个答案:

答案 0 :(得分:3)

如果您的默认音频源是麦克风,则可以尝试

gst-launch autoaudiosrc ! audioconvert ! faac ! mp4mux ! filesink location=aac_audio.mp4

但是,如果您有多个音频源且麦克风不是默认音频源,则必须指定麦克风输入的设备标识符。此外,您需要知道您是否有ALSA或OSS驱动程序。 我的建议是尝试

gst-launch alsa-src device=<device identifier for mic input> ! audioconvert ! faac ! mp4mux ! filesink location=aac_audio.mp4

gst-launch oss-src device=<device identifier for mic input> ! audioconvert ! faac ! mp4mux ! filesink location=aac_audio.mp4

取决于您拥有的驱动程序。