how to make thumbnails with php

前端 未结 8 705
情话喂你
情话喂你 2020-12-11 10:55

I was just wondering how I can make thumbnails of images stored in hdd and use them in an html page, also I need the thumbnails to be able to enlarge (to their original size

8条回答
  •  长情又很酷
    2020-12-11 11:06

    its so simple,if you have any queries mail at karthid@in.com

    $ffmpeg = "ffmpeg Installed path"
    
    $flvfile = "source video file with root path"
    
    $png_path " "Destination video file with root path and file type"
    
    exec("$ffmpeg -y -i $flvfile -vframes 1 -ss 00:01:60 -an -vcodec png -f rawvideo -s 110x90 $png_path");
    

    all the best....

提交回复
热议问题