0

I wanted to make a Video Editor application for Android. But I am not sure whether only FFMPEG is enough or not. In this application I want to add features like Trim, Split, Filter, Speed, Rotation, Transition, Text, Music etc. I think only FFMPEG is not enough, some other Library or Domain I have to know. Can any one help on this ?

Mahfuz
  • 63
  • 6

1 Answers1

0

ffmpeg can do all of these:

llogan
  • 121,796
  • 28
  • 232
  • 243
  • @Ilogan, thank you. After covering all those areas of FFMPEG, do u think I also need to have knowledge on Android's MediaCodec or VideoCodec ? – Mahfuz Apr 23 '20 at 07:46
  • @Mahfuz Probably, if it can do any of the above you should prefer MediaCodec over ffmpeg as it may be faster. But I have no experience with that. ffmpeg can use MediaCodec for decoding, but not yet for encoding. – llogan Apr 23 '20 at 17:24