Intel® Collaboration Suite for WebRTC
Community support and discussions on the Intel® Collaboration Suite for WebRTC (Intel® CS for WebRTC).

Android Customize Audio Input with AAC

lee__wenyuan
ビギナー
1,244件の閲覧回数

sdk v3.5

Android Customize Audio Input with AAC audio,

Implement com.intel.webrtc.base.WoogeenAudioRecord.AudioFrameGeneratorInterface and Override generateFramesForNext10Ms.

But there are 1024 sample in one aac frame, Samplerate is 44100Hz,so one frame is 1024*1000/44100= 22.32ms, So how do i make 10ms data?

thanks!

0 件の賞賛
1 解決策
He_Z_Intel
従業員
1,244件の閲覧回数

Those are formats that audio encoder could (depends on the devices) encode the PCM data to.

Customized audio input allows you using an alternative audio input instead of the device microphone, but it requires the input data is raw format which is PCM. The data will ultimately be encoded to one of those formats/codecs mentioned above.

To answer your question:

yes the generateFramesForNext10Ms() expects PCM data.

元の投稿で解決策を見る

4 返答(返信)
He_Z_Intel
従業員
1,244件の閲覧回数

Hi Wenyuan, currently customized audio input supports raw audio data (PCM) only.

lee__wenyuan
ビギナー
1,244件の閲覧回数

Thank you for your reply!

But I have read the documents about android sdk, it said AudioCodec contains PCMU,OPUS,PCMA,ISAC, and AAC in sdk v3.5.

And as you said, I should generate 10ms  PCM data, right?

lee__wenyuan
ビギナー
1,244件の閲覧回数

Hank Zhang (Intel) wrote:

Hi Wenyuan, currently customized audio input supports raw audio data (PCM) only.

 

Thank you for your reply!

But I have read the documents about android sdk, it said AudioCodec contains PCMU,OPUS,PCMA,ISAC, and AAC in sdk v3.5.

And as you said, I should generate 10ms  PCM data, right?

He_Z_Intel
従業員
1,245件の閲覧回数

Those are formats that audio encoder could (depends on the devices) encode the PCM data to.

Customized audio input allows you using an alternative audio input instead of the device microphone, but it requires the input data is raw format which is PCM. The data will ultimately be encoded to one of those formats/codecs mentioned above.

To answer your question:

yes the generateFramesForNext10Ms() expects PCM data.

返信