0

I am trying to make an Android app where the user will recording a video and, the video automatically uploads to a server frequently(every 5 seconds).

1 Answers1

0

Guess that you are developing video streaming to the server.

Here are some articles you can look at first.

RTMP Protocol: Enable Instant Video Streaming for Android Apps

Which Video Streaming Protocol Should You Use?

Which protocol is best for a video live streaming from a server to an Android: RTSP, RTMP, HTTP or something else?

And a discussion of similar issues can be referenced.

Streaming video from Android camera to server

Last are some open source projects:

https://github.com/begeekmyfriend/yasea

https://github.com/rhedgpeth/Xamarin-Yasea

Junior Jiang
  • 12,430
  • 1
  • 10
  • 30
  • Can i use WebRTC for fetch the video streaming data and store to the server? – varun sanapureddy Mar 18 '19 at 09:56
  • @varunsanapureddy Yeah, you can use WebRTC to do that.(https://webrtc.github.io/samples/) (https://stackoverflow.com/questions/49830268/how-do-record-video-stream-data-as-mp4-in-webrtc-android) If be helpful, please remember to mark it.Thanks! – Junior Jiang Mar 19 '19 at 01:34