1

I am looking for the duration of a Video just recorded.

Code:

String file = Capture.captureVideo();
Media m = MediaManager.createMedia(file, true);
m.getDuration();

returns 0 on (PC, IOS, Android)

Thoughts?

Mark Bolduc
  • 165
  • 4

1 Answers1

0

Duration isn't available for most cases until after media playback was started since the media might be streamed this can take time but normally just playing the media will make duration return a valid value.

Shai Almog
  • 51,749
  • 5
  • 35
  • 65