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 ?
Asked
Active
Viewed 1,536 times
-3
-
You can ask for ffmpeg installation from your hosting provider or else you have ssh access then you can install ffmpeg manually. – Sathishkumar Rakkiyasamy Feb 15 '18 at 12:14
-
1Answer the questions or leave it. Please not give down vote. Because Goddady server not providing ffmpeg setup so i am facing this issue... – Hussy Borad Feb 15 '18 at 12:15
-
@Sathishkumar Rakkiasamy for that i need purchase Private Hosting it was too costly. And That is last option. Before why not try other solutions if have – Hussy Borad Feb 15 '18 at 12:16
-
6How do you know I am one who down voted in this question?. I just tried to help you. – Sathishkumar Rakkiyasamy Feb 15 '18 at 12:17
1 Answers
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