"The encoder 'aac' is experimental but experimental codecs are not enabled"

Sandeep Nambiar

While converting flv to mp4 conversion using FFMPEG it's showing following error

[aac @ 0x2b4b640] The encoder 'aac' is experimental but experimental codecs are not enabled, add '-strict -2' if you want to use it.
freeseek

Actually it is not enough to add -strict -2 to the command line. It is very important where the -strict -2 is added and unfortunately this is not explained in the error message. It should be just before the last argument, that is, as follows:

ffmpeg -i infile -strict -2 outfile

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Merging Users in Kinvey

From Dev

PostgreSQL: Efficiently split JSON array into rows

From Dev

boost::asio how to read full buffer in right way?

From Dev

GIT SVN: fetching a recreated SVN branch without the wrong merge parent

From Dev

How to find out value of a particular attribute index in core data model iOS

From Dev

iOS - iPad preview in Xcode is missing

From Dev

Java: Method hooking & Finding object instances

From Dev

Using git diff, how can I show the patch from the index to a given commit?

From Dev

Cast for upcasting only

From Dev

How can I multiply or divide value under the cursor by a repeat count?

From Dev

Can`t compile boost spirit word_count_lexer example

From Java

How to make a for loop variable const with the exception of the increment statement?

From Java

Count letters in a text in the Welsh language

From Java

Why does using the ternary operator to return a string generate considerably different code from returning in an equivalent if/else block?

From Java

No Firebase App '[DEFAULT]' has been created - call Firebase.initializeApp() in Flutter and Firebase

From Java

Changes using mutable reference of a field are not reflected after move of the original instance

From Java

Elastic Search indexes gets deleted frequently

From Java

Forgot do in do... while loop

From Java

How to fix "An unexpected error occurred. Please try again later. (7100000)" error in Google Play Console?

From Java

Does C# perform short circuit evaluation of if statements with await?

From Java

Why doesn't Python give any error when quotes around a string do not match?

From Java

Why is this regular expression so slow in Java?

From Java

Why are my two tuples containing strings, created the same way, not equal?

From Java

How to pass array initialization thru custom structure?

From Java

Why does Python code run faster in a function?

From Java

How to set same alignment for these two text

From Java

How to wrap title on to new line react native

From Dev

Run grunt task asynchronously before another task

From Dev

Bootstrap 3: Scroll bars

Related Related

  1. 1

    Merging Users in Kinvey

  2. 2

    PostgreSQL: Efficiently split JSON array into rows

  3. 3

    boost::asio how to read full buffer in right way?

  4. 4

    GIT SVN: fetching a recreated SVN branch without the wrong merge parent

  5. 5

    How to find out value of a particular attribute index in core data model iOS

  6. 6

    iOS - iPad preview in Xcode is missing

  7. 7

    Java: Method hooking & Finding object instances

  8. 8

    Using git diff, how can I show the patch from the index to a given commit?

  9. 9

    Cast for upcasting only

  10. 10

    How can I multiply or divide value under the cursor by a repeat count?

  11. 11

    Can`t compile boost spirit word_count_lexer example

  12. 12

    How to make a for loop variable const with the exception of the increment statement?

  13. 13

    Count letters in a text in the Welsh language

  14. 14

    Why does using the ternary operator to return a string generate considerably different code from returning in an equivalent if/else block?

  15. 15

    No Firebase App '[DEFAULT]' has been created - call Firebase.initializeApp() in Flutter and Firebase

  16. 16

    Changes using mutable reference of a field are not reflected after move of the original instance

  17. 17

    Elastic Search indexes gets deleted frequently

  18. 18

    Forgot do in do... while loop

  19. 19

    How to fix "An unexpected error occurred. Please try again later. (7100000)" error in Google Play Console?

  20. 20

    Does C# perform short circuit evaluation of if statements with await?

  21. 21

    Why doesn't Python give any error when quotes around a string do not match?

  22. 22

    Why is this regular expression so slow in Java?

  23. 23

    Why are my two tuples containing strings, created the same way, not equal?

  24. 24

    How to pass array initialization thru custom structure?

  25. 25

    Why does Python code run faster in a function?

  26. 26

    How to set same alignment for these two text

  27. 27

    How to wrap title on to new line react native

  28. 28

    Run grunt task asynchronously before another task

  29. 29

    Bootstrap 3: Scroll bars

HotTag

Archive