I'm afraid it is too late, but still: the Glide library for Android is only able to download video thumbnails from a URI / File, much like images.
So all you have to do is:
Glide.with(Context) .load(videoFile) // or URI/path .into(imageView);
source share