what will be the path to ffmpeg on linux server.......

link|improve this question
feedback

migrated from stackoverflow.com Dec 29 '09 at 17:01

This question came from our site for professional and enthusiast programmers.

5 Answers

Try whereis ffmpeg on the command line.

link|improve this answer
+1 because whereis is cool ( linux.about.com/library/cmd/blcmdl1_whereis.htm ). Thought ffmpeg needs to be listed as a command in order for it to work isn't it? – marcgg Dec 29 '09 at 11:15
Yes, but which ffmpeg is faster to just find the path of a binary :-) – Raphink Dec 29 '09 at 17:51
feedback

It might be in the bin, etc... It kinda depends where it got installed.

Use the find function to get it for sure.

link|improve this answer
feedback

On a hosted Linux server, it may not even be installed. Probably depends on your hosting package.

But if it is installed, /usr/bin (for the executable) and /usr/lib (for the libraries) would be the first place I'd look.

Also, locate ffmpeg may be a helpful command to try.

link|improve this answer
feedback

If ffmpeg is in the path, use which ffmpeg to find its path.

If it's not in the path, use locate ffmpeg.

The fact that it's a server should not change the path where it is installed if you installed it with packages, so it should probably be in /usr/bin/ffmpeg.

link|improve this answer
feedback

try 'locate', 'which', or 'whereis' ... If all fails, then 'find / | grep ffmpeg'

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.