I need to know how I can play a file that is in the firebase, for the moment I only know how to do that with "Glide" but that only serves for photos. The point is that with a "Dialog" the videos are uploaded to the Firebase, and then I do not know how to "rescue" them in a video view in my recyclerView as I do with "Glide"
This is how I do it with Glide but only works with photos:
StorageReference storageReference = FirebaseStorage.getInstance()
.getReference(model.getPostImageUrl());
Glide.with(getActivity())
.using(new FirebaseImageLoader())
.load(storageReference).into(viewHolder.postDisplayImageView);
And I do not know how to do it with videos
Thank you for your attention