Thumbnail is a term used by graphic designers and photographers for a small image representation of a larger image, usually intended to make it easier and faster to look at or manage a group of larger images.
Questions tagged [video-thumbnails]
231 questions
7
votes
4 answers
Creating thumbnail from video file returns null bitmap
I send an intent to launch the video camera
PackageManager pm = getPackageManager();
if(pm.hasSystemFeature(PackageManager.FEATURE_CAMERA)){
Intent video = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
File tempDir= new…

tyczj
- 71,600
- 54
- 194
- 296
6
votes
4 answers
How do I get thumbnail of a video in android
I want some help in creating thumbnail of a video being recorded from my android phone and I got this code from this Link, and I modified this part of the code to generate the thumbnail but somehow the thumbnail is not being generated, so any help…

Vipul Singh
- 163
- 1
- 3
- 13
6
votes
2 answers
FFmpegPHP get thumbnail from external URL
I'm trying to create thumbnails from external videos, mostly MP4s and FLVs. I'm using FFmpegPHP. I already have the thumbnail generation working fine, however, I need to load the video entirely on my server first. Would it be possible to stream only…

jValdron
- 3,408
- 1
- 28
- 44
5
votes
1 answer
How to create a video thumbnail in flutter web
For performance reasons I've been trying to create a thumbnail for a list of videos I upload to the Firebase Firestore.
I thought of different ways to solve this. But I haven't found an actual working solution. The one solution that gave me the most…

Neifen
- 2,546
- 3
- 19
- 31
5
votes
1 answer
thumbnails video react-native-image-picker
Currently I'm playing with react-native-image-picker to launch camera either for capture photo or video and display on the thumnbails.
For photo, thumbnails is working just fine but for the video it's only appear a white space.
Here is my code…

Hazim Ali
- 1,077
- 4
- 17
- 28
5
votes
3 answers
Google Drive API thumbnail parameters
I'm using Google Drive API (v3) with Google's PHP api client to list and display videos from my Drive, where I'm also displaying thumbnails for said videos. I have difficulties getting thumbnail urls back from the API, although I enabled…

boogysi
- 51
- 5
5
votes
1 answer
iOS Swift: video thumbnail error
I'm creating video thumbnails with the following code and it works in most cases. However sometimes it throws an error and the thumbnail is not created. I can't figure out why it does not work sometimes.
Here is how I create video thumbnail:
let…

Sam
- 1,101
- 2
- 13
- 26
5
votes
2 answers
What the best way or lib for creating thumbnail from memory stream (video) in C#?
I have to create multiple thumbnails and save on amazon s3 in c#. I don't find library which can create thumbnail from memory stream only from source file. But can't have file source, I have only the stream from the upload and I don't want save…

Yvan
- 1,081
- 2
- 20
- 27
5
votes
3 answers
How to get Online Video Thumbnail without download in android
I need to get the thumbnail of an online video file without downloading the file.
Is it possible ?
Is it possible with Universal Image Loader ?

Hossein Kurd
- 3,184
- 3
- 41
- 71
5
votes
1 answer
AVAssetImageGenerator random failings in iOS7
I have an AVComposition and a AVVideoComposition that I generate thumbs for every half second or so of the video. I use the animation tool for some overlays. I execute the call on an operation Queue and it triggers after certain types of edits. …

JADurham909
- 221
- 2
- 7
5
votes
1 answer
Making a css play button on video thumbnail
I have a site that generates related video's to a topic. I have 4 thumbnails and I want to add a css play button on the thumbnails, which can be done with this code: ► | It will be like this: http://i47.tinypic.com/250qis9.png
Here is a demo:…

user1717526
- 131
- 1
- 2
- 14
4
votes
2 answers
Is there any way to create thumbnail from video URL?
Want to create tumbnails from url from any sites.
I am using following code
Bitmap bmThumbnail;
bmThumbnail = ThumbnailUtils.createVideoThumbnail(videoLink,
MediaStore.Video.Thumbnails.MICRO_KIND);
But its not working,please suggest any other ways…

sushma1008
- 125
- 5
- 14
4
votes
0 answers
Android Video thumbnail from URL
I'm trying to get thumbnail from instagram video by using the following method but it loads very slow. Is there another way I can get thumbnail from video url in efficient manner -
public Bitmap retriveVideoFrameFromVideo(String videoPath)
…

zek54
- 415
- 3
- 20
4
votes
3 answers
create thumbnail from video URL in C#
I want to generate thumbnail from a video URL in C#. I have searched a lot to find a neat way but no success. I have used Nreco and MediaToolKit but none of them extract thumbnail image. using ffmpeg also has mumbo jumbos which didn't worked!
using…

Hashem Aboonajmi
- 13,077
- 8
- 66
- 75
4
votes
1 answer
Android duplicate thumbnail issue
I am creating a custom image and video gallery just like Whatsapp have to allow user to select multiple image/video,so far i am populating and showing thumbnails on gridview.But the result is,on some devices the images sometimes got shown duplicated…

hardik9850
- 581
- 1
- 9
- 26