Reputation: 11
The audio file format must meet the following requirements.
How to achieve this from web page? Can't find any resources:(
Upvotes: 1
Views: 129
Reputation: 146
Use ffmpeg (See the FFmpeg wiki, or the man page with man ffmpeg
)
This command will change any audio or video to
-acodec pcm_s16le
)-ar 16000
)-ac 1
)ffmpeg -i input.any -acodec pcm_s16le -ac 1 -ar 16000 output.wav
For web, there are multiple options here are 2
Upvotes: 0