4

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

user31055
  • 151

5 Answers5

9

Try whereis ffmpeg on the command line.

Pekka
  • 2,178
5

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.

raphink
  • 13,027
3

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

Use the find function to get it for sure.

marcgg
  • 161
1

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.

1

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

joet3ch
  • 262