android-transcoder
android-transcoder copied to clipboard
Allow video with no audio stream present to be transcoded
Related to #23.
@ypresto Can you approve/merge this? It will be very useful to allow transcoding videos without audio, right now it throws an exception.
When will this be released? It doesn't work with 0.3.0?
Btw, is there a way to add an implementation in Android Studio Gradle for this exact comment supporting videos without audio? Tried to find a way, but found nothing.
Again, please release this version, today many people do drone videos or time lapse without audio.
In case somebody need to have this change right now (until author will merge it):
You can get it via JitPack:
- Add JitPack as repo:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
- And add dependency
dependencies {
implementation 'com.github.AlexTrotsenko:android-transcoder:aa7dc58615'
}
In more details:
- I have merged master of this repo (which is not released, btw) and this PR: https://github.com/AlexTrotsenko/android-transcoder/commits/2020_04_noaudiostreamfix
- Use JitPack to build and deliver result of my merge.
- I have also send MR to the author of original MR to be up-to-date with current master: https://github.com/coryjthompson/android-transcoder/pull/1
The code for transcoding video with no audio is not working. Please look into it.