Izzat Bahadirov

Results 112 comments of Izzat Bahadirov

Audio track encoding has to be compatible with H.264/AVC encoding. That is why AAC works and MP3 doesn't. You can transcode to AAC by passing correct `MediaFormat` in `setTargetFormat` for...

This is an excellent suggestion! I have been thinking about writing some helper methods for `MediaFormat` creation - things like typical resolutions/aspect ratios, etc. But I didn't think about exposing...

I think demo app should be helpful. Listener is a very standard listener that calls back with progress and status updates. Usually you would use it to display progress/status of...

Thank you for reporting this! We will look into it.

Yes, I am planning to use a `FileDescriptor` as well.

There is a PR in flight, that should help. We already use `FileDescriptor` in `MediaMuxerTarget` but it was not exposed via `transform` method. It is now: https://github.com/linkedin/LiTr/pull/182 Let me know...

Yes. We are preparing a new release. Meanwhile, you can try a snapshot release by adding following to your gradle build files (I didn't try it myself yet): `repositories {...

Version 1.5.0 is being released now. Let me know if it fixes your issue.

Technically we should already support this. VPx support is available on many devices via MediaCodec API which LiTr uses. The trick is to figure out correct `MediaMuxerMediaTarget` and `MediaCodecDecoder` parameters....

Can you describe your use case? Are you trying to transcode a WEBM with transparent video into MP4 with some effects? Or are you trying to create a WEBM with...