I am successfully build Chromium for iOS and getting it into TestFlight. I build with the command-line autoninja on a MacBook-Pro and it works good on a device.
My question is: how do I also build and include the FFMPEG video codecs into the iOS Chromium project?
I have also worked on the Android Chromium build (on Linux) and to get FFMPEG support included I just changed the
args.gn file and added these parameters:
proprietary_codecs = true
ffmpeg_branding = "Chrome"
media_use_ffmpeg = true
But that doesn't seem to work on the iOS build. What do I need to do?