Has Firebase a library to download videos that are on Firebase Storage? I want to put the video inside a VideoView. I mean a library like Picasso for images but in this case for videos.
As an example:
with images is -> Picasso.with(ctx).load(imageUri).into(ImageView);
exist something like:
Library.with(ctx).load(videoUri or videoURL).into(VideoView); ?
and if answer is yes, how can I get the thumbnail of that video?
PD. I have the URL of the video in Database as a value of a child("video") and uploaded it with taskSnapshot.getDownloadUrl();
Sorry for my english and thx for every help!