0

I have an iOS and Android app that allows users to capture videos and post on our server, then allows them to email the videos to other members.

Problem is videos taken from iOS devices do not play on Android devices, I think the reverse is not a problem.

Does anyone know any server side video transcoding tools that are pretty easy to set up so that i can convert all videos into a common format that will play on any device?

Hutch
  • 10,392
  • 1
  • 22
  • 18

1 Answers1

0

Take a look at FFMPEG.

You can use it in your back-end system. This task should be asynchronous as it can be time consuming. Also you need to limit the size of the media about to be transcoded, and their number, as this kind of tasks can rapidly cause important performance issues.

On the other hand, the Android user may play the media shared by an iOS user with many of the free FFMPEG enabled players on the Play Store such as MXPLayer. So using or building a whole server side transcoding system might be an important overhead.

Halim Qarroum
  • 13,985
  • 4
  • 46
  • 71