Skip to main content
deleted 66 characters in body
Source Link
Zombo
  • 1
  • 26
  • 128
  • 167

Newer FFmpeg are compiled with libvo_aacenc, so you can do this

ffmpeg -i in.mp3 -c:a libvo_aacencaac -strict 2 out.aac

or simply

ffmpeg -i in.mp3 out.aac

Newer FFmpeg are compiled with libvo_aacenc, so you can do this

ffmpeg -i in.mp3 -c libvo_aacenc out.aac

or simply

ffmpeg -i in.mp3 out.aac
ffmpeg -i in.mp3 -c:a aac -strict 2 out.aac

or simply

ffmpeg -i in.mp3 out.aac
Rollback to Revision 1
Source Link
Zombo
  • 1
  • 26
  • 128
  • 167

You need to compile it yourself, since the license prevents prebuilt binariesNewer FFmpeg are compiled with libfaac from being distributed.

Youlibvo_aacenc, so you can alternatively use the builtin AAC encoder:do this

ffmpeg -i in.mp3 -c:a aac -strict -2libvo_aacenc out.aac

or simply

ffmpeg -i in.mp3 out.aac

You need to compile it yourself, since the license prevents prebuilt binaries with libfaac from being distributed.

You can alternatively use the builtin AAC encoder:

ffmpeg -i in.mp3 -c:a aac -strict -2 out.aac

or simply

ffmpeg -i in.mp3 out.aac

Newer FFmpeg are compiled with libvo_aacenc, so you can do this

ffmpeg -i in.mp3 -c libvo_aacenc out.aac

or simply

ffmpeg -i in.mp3 out.aac
added 107 characters in body
Source Link
slhck
  • 230.1k
  • 71
  • 621
  • 603

Newer FFmpeg are compiled with libvo_aacencYou need to compile it yourself, so yousince the license prevents prebuilt binaries with libfaac from being distributed.

You can do thisalternatively use the builtin AAC encoder:

ffmpeg -i in.mp3 -c:a libvo_aacencaac -strict -2 out.aac

or simply

ffmpeg -i in.mp3 out.aac

Newer FFmpeg are compiled with libvo_aacenc, so you can do this

ffmpeg -i in.mp3 -c libvo_aacenc out.aac

or simply

ffmpeg -i in.mp3 out.aac

You need to compile it yourself, since the license prevents prebuilt binaries with libfaac from being distributed.

You can alternatively use the builtin AAC encoder:

ffmpeg -i in.mp3 -c:a aac -strict -2 out.aac

or simply

ffmpeg -i in.mp3 out.aac
Source Link
Zombo
  • 1
  • 26
  • 128
  • 167
Loading