How to create thumbnails or preview for videos?

前端 未结 3 860
清歌不尽
清歌不尽 2020-12-03 01:54

i want to display thumbnails or preview panels for videos listed on my site, i want to fetch a single frame from a video (from a particular time i.e get a frame of exactly a

相关标签:
3条回答
  • 2020-12-03 02:42

    In modern browsers you can also use the video tag and canvas to capture a frame and save it as an image.

    see How can we get the screenshot of the video in html5 using canvas

    0 讨论(0)
  • 2020-12-03 02:47

    Adding to how to use the ffmpeg answer, this is the parameters you're looking for:

    ffmpeg  -itsoffset -4  -i test.avi -vcodec mjpeg -vframes 1 -an -f rawvideo -s 320x240 test.jpg
    
    0 讨论(0)
  • 2020-12-03 02:52

    Take a look at the ffmpeg-php library. It's the only simple way to manipulate videos of different formats in PHP.

    There's also a wrapper called PHP Video Toolkit, you can find it here: http://sourceforge.net/projects/phpvideotoolkit/

    0 讨论(0)
提交回复
热议问题