Skip to content Skip to sidebar Skip to footer

How To Get Video Thumbnail (frame) From Live Video Url

I have video uploaded on server. which is trailer of movie. I can play this video direct to my videoView with the help of live url. My question: is there any method in android whic

Solution 1:

Getting thumbnails without download the complete video is not possible until now (API Level 22) i´m pretty sure that the application that you describe load thumbnails that were created previously.

the current option would be using the class:

import android.provider.MediaStore.Video.Thumbnails;

or create the thumbnails in a separated process.

Post a Comment for "How To Get Video Thumbnail (frame) From Live Video Url"