-3

I need to uploaded video convert into mp4 and also create thumbnail image. I am try with ffmpeg but many hosting provide not intalled ffmpeg. So now i need to that features without using ffmpeg i want do it. Any know ? How can i do without ffmpeg ?

Hussy Borad
  • 626
  • 5
  • 20

1 Answers1

1

You don't need to "install" ffmpeg in the traditional sense.

Just download an already compiled static build of ffmpeg then point to it in your script using the full path.

A basic, unscripted thumbnail command:

ffmpeg -ss 30 -i input -vf scale=120:-1 -frames:v 1 -q:v 4 output.jpg

Also see:

llogan
  • 121,796
  • 28
  • 232
  • 243