ffmpeg-android-java
ffmpeg-android-java copied to clipboard
APK size - Google note
Hi !
i have this import in mu project and nothing more..and everything is ok!
compile 'com.writingminds:FFmpegAndroid:0.3.2'
but my apk increase 20mb... how google said im publish app bundle.... so i have one question.. when i publish a new bundle now with ffmpeg.. they give the right apk for the right user?
because the libs is in assets..
If you publish your app to Google Play, you should build and upload an Android App Bundle. When you do so, Google Play automatically generates and serves optimized APKs for each user’s device configuration, so they download only the code and resources they need to run your app. Publishing multiple APKs is useful if you are not publishing to Google Play, but you must build, sign, and manage each APK yourself.
Maybe you need this
Thanks i will check it out!
Em ter, 8 de out de 2019 às 11:50, equationl [email protected] escreveu:
Maybe you need this https://github.com/equationl/FFmpeg-Android
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/WritingMinds/ffmpeg-android-java/issues/344?email_source=notifications&email_token=AGXVDFTVGPGPRG7ZODAYFYTQNSM4FA5CNFSM4I3HIBW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEAUOGFQ#issuecomment-539550486, or mute the thread https://github.com/notifications/unsubscribe-auth/AGXVDFREMVXGWHHRMBNCK53QNSM4FANCNFSM4I3HIBWQ .
@equationl I have used your repo but I am unable to figure out how to download FFMPEG and how to set the download file. Your document shows ffmpeg.setFFmpegFile(downfile);
but I am unable to find the method.
@equationl I have used your repo but I am unable to figure out how to download FFMPEG and how to set the download file. Your document shows
ffmpeg.setFFmpegFile(downfile);
but I am unable to find the method.
You need to implement the download ffmpeg file by yourself. Then set ffmpeg file by call ffmpeg.setFFmpegFile(yourOwnFfmpegFile). You can find all ffmpeg file at https://github.com/formatBCE/FFmpeg-Android/tree/master/android-ffmpeg/src/main/assets
Thanks, @equationl your library was very much useful and I owe you a cup of coffee. Thank you so much.