Sorry, this is a mistake.
I will change it and resubmit the patch.
发件人: ffmpeg-devel 代表 Michael Niedermayer
发送时间: 2016年9月27日 19:57
收件人: FFmpeg development discussions and patches
主题: Re: [FFmpeg-devel] [PATCH] flv format support mp3 audio with 48khz
On Tue, Se
I have already tried the "mp3_audio_48khz" flv live stream and rtmp live stream
in the adobe flash player.
It supports the format and works well.
发件人: ffmpeg-devel 代表 Yusuke Nakamura
发送时间: 2016年9月27日 21:15
收件人: FFmpeg development discussions and patches
主题: Re
2016-09-27 23:30 GMT+08:00 付 秋平 :
> AAC 48khz has alreay been supported in flv_enc.c file, when the flv with
> audio format is aac
>
> it just set it into:
>
> if (enc->codec_id == AV_CODEC_ID_AAC) // specs force these parameters
> return FLV_CODECID_AAC | FLV_SAMPLERATE_44100HZ |
>
AAC 48khz has alreay been supported in flv_enc.c file, when the flv with audio
format is aac
it just set it into:
if (enc->codec_id == AV_CODEC_ID_AAC) // specs force these parameters
return FLV_CODECID_AAC | FLV_SAMPLERATE_44100HZ |
FLV_SAMPLESSIZE_16BIT | FLV_STEREO;
wh