sopel39 / audioconverter.js

Emscripten audio FFMPEG port with lame, vorbis/ogg, fdk-aac
quick-apps.com/audio
Other
107 stars 25 forks source link

ADTS (aac extension) format not supported #13

Open voxsoftware opened 7 years ago

voxsoftware commented 7 years ago

When I try use format ADTS with -f adts or simply using output/filename.aac says that format not supported

JohnWeisz commented 3 years ago

Super-late, but try:

ffmpegArguments.push("-acodec", "libfdk_aac", "-profile:a", "aac_low", "-vbr", "3", "out.mp4");

ffmpeg_run({
    ...
    arguments: ffmpegArguments
});

Granted this is using an mp4 container.