• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Video recording and uploading at same time on server using android

santoshug

Lurker
Hello

I want to do video recording and uploading functionality in android application.
Video recording and uploading need to be done on same time.

When user click on Record button , video recording need to be started and once user stops the recording , then recorded video need to be uploaded on remote server.

Can any one have idea how to implement this functionality.
Please help me :banghead:.I m totally new in android developement

Thanks,
SAntosh
 
Your best bet is to just use an Intent to start the user's default video recording app, then start the intent using startActivityForResult(). When the result (the recoreded data) is returned to your activity, you can then upload it to your server.
 
Back
Top Bottom