Qtav
-
Where is your Android build of ffmpeg ?
-
includes in Qt includes files
libs in Qt libs
bin in Qt bin folder i copied ffmpeg libs,includes and bin to qt installed folder
-
Why did you put them there ?
You really should have a place for your third party content that's clearly labeled and separated between architectures. The moment you update your Qt installation for a new version, you will have to move again all your third party stuff because nothing will be found anymore.
-
i am giving ffmpeg lib and include path in environment variable i am getting
this errorProject ERROR: avutil is required, but compiler can not find it
so i copied in qt installation directory
-
What environment variable ?
That's the kind of information your have to put in your .pro file.
-
INCLUDEPATH += $$PWD/ffmpeg/include
LIBS += -L$$PWD/ffmpeg/libin pro file i included like this but i am getting error
Project ERROR: avutil is required, but compiler can not find it
-
You have ffmpeg libraries in your application sources now ?
You just wrote that you have put them in your Qt installation. -
previous i put into QT installation directory you has given suggestion to put
That's the kind of information your have to put in your .pro file.
i has changed to put in library
INCLUDEPATH += $$PWD/ffmpeg/include
LIBS += -L$$PWD/ffmpeg/liband ffmpeg folder is in pro folder
-
previous i put into QT installation directory you has given suggestion to put
That's the kind of information your have to put in your .pro file.
i has changed to put in library
INCLUDEPATH += $$PWD/ffmpeg/include
LIBS += -L$$PWD/ffmpeg/liband ffmpeg folder is in pro folder
@satyanarayana143 said in Qtav:
previous i put into QT installation directory you has given suggestion to put
I never suggested that you put anything in your Qt installation.
What exactly does
$$PWD/ffmpeg/lib
contain ? -
That's the kind of information your have to put in your .pro file.
you has written like this
-
That's the kind of information your have to put in your .pro file.
you has written like this
@satyanarayana143 said in Qtav:
That's the kind of information your have to put in your .pro file.
You need to put the information where to find ffmpeg headers/libs into your pro file, NOT ffmpeg itself!
Please read more carefully!