Cool. Which version do you recommend? ffmpeg-release-64bit-static.tar.xz ?
Only now, I found some minutes to test the Linux-desktop-file (created with the .pro file). Works perfect here in openSUSE. Thanks for adding.
Great, that you added ffmpeg-static to the sources. I played a bit around in the .pro-file. With this command, I succeded in unpacking only the ffmpeg-bin out of ffmpeg-static and copying it to $HOME/bin. So you don´t need to unpack ffmpeg manually.
linux-g++ {
target.path = $$(HOME)/bin
desktop.path = $$(HOME)/.local/share/applications
desktop.files += mlvapp.desktop
icon512.path = $$(HOME)/.local/share/icons/hicolor/512x512/apps
icon512.files += RetinaIMG/MLVAPP.png
INSTALLS += target desktop icon512
QMAKE_POST_LINK += $$quote(tar -C $$(HOME)/bin -xvJf FFmpeg/ffmpegLinux.tar.xz --strip=1 --wildcards */ffmpeg)
}
I´m not sure, that this is a correct way for doing this. It was only try and error, what I did.
edit:
This one is working, too:
QMAKE_POST_LINK += tar -C $$(HOME)/bin -xvJf FFmpeg/ffmpegLinux.tar.xz --strip=1 --wildcards */ffmpeg