what will be the path to ffmpeg on linux server.......
|
feedback
|
migrated from stackoverflow.com Dec 29 '09 at 17:01
This question came from our site for professional and enthusiast programmers.
|
Try | |||||
feedback
|
|
It might be in the bin, etc... It kinda depends where it got installed. Use the find function to get it for sure. | |||
|
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, | |||
|
feedback
|
|
If ffmpeg is in the path, use If it's not in the path, use 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 | |||
|
feedback
|
|
try 'locate', 'which', or 'whereis' ... If all fails, then 'find / | grep ffmpeg' | |||
|
feedback
|