Oleksandr Berezhnyi

Results 45 comments of Oleksandr Berezhnyi

Can't see any relevant details and a meaningful problem description. And most importantly - the politeness. Try again.

Here is a [branch](https://github.com/Javernaut/ffmpeg-android-maker/tree/feature/component_name_sanitizing) where the names of libraries are sanitized in order to export variables like 'fdk_aac' for 'fdk-aac' library. So you should be ok adding a 'libfdk-aac' as...

Such a message usually is posted if any failure happens during the FFmpeg's checking of a given library. Most probably a compilation error happens: FFmpeg tries to compile a test...

What exact library are you trying to integrate? It's just you mentioned 2 already. It would also be helpful if you could provide a fork repo with a branch with...

Hello @petermg According to FFmpeg's [configure](https://git.ffmpeg.org/gitweb/ffmpeg.git/blob_plain/083443d67cb159ce469e5d902346b8d0c2cd1c93:/configure) script: > ffplay_deps="avcodec avformat avfilter swscale swresample sdl2" I believe it expects `sdl2` library to be provided (prebuilt for Android).

When you simply do `clean, ./configure, make`, then you compile FFmpeg for your host machine, not for Android. This project tries to make the cross-compilation easier (building for Android specifically)....

> Does this mean I have to enable sdl2 in the build script or ? I think so, yes. The SDL2 has to be accessible (and assessible) by FFmpeg's configure...

The original idea was to leverage the filtration made by the system. In recent version of Andriod OS it even shows a bottom sheet for video files. Indeed it filters...

@ingshtrom No, I didn't enable it. I literally did no configuration of the repositories.

Additional note. I also tried executing the docker commands on CI directly for building, logging in and pushing instead of using the actions. So the implementation of these actions shouldn't...