我跟着这些说明从源代码编译 ffmpeg。现在我有一个名为 /home/hilarie/bin 的文件夹,里面有东西
$ which ffmpeg
/home/hilarie/bin/ffmpeg
$ /home/hilarie/bin/ffmpeg
ffmpeg version N-87132-g1dc33c1 Copyright (c) 2000-2017 the FFmpeg developers
built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.4) 20160609
configuration: --prefix=/home/hilarie/ffmpeg_build --pkg-config-flags=--static --extra-cflags=-I/home/hilarie/ffmpeg_build/include --extra-ldflags=-L/home/hilarie/ffmpeg_build/lib --bindir=/home/hilarie/bin --enable-gpl --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-nonfree
libavutil 55. 74.100 / 55. 74.100
libavcodec 57.104.100 / 57.104.100
libavformat 57. 79.100 / 57. 79.100
libavdevice 57. 8.100 / 57. 8.100
libavfilter 6.101.100 / 6.101.100
libswscale 4. 7.103 / 4. 7.103
libswresample 2. 8.100 / 2. 8.100
libpostproc 54. 6.100 / 54. 6.100
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...
Use -h to get full help or, even better, run 'man ffmpeg'
它似乎安装正确,但我该怎么做才能将它从我的主目录中移出,以免我意外删除它或其他东西。
答案1
下次编译时,您可以使用以下命令设置位置:
./configure --prefix=/custom/location
要修复您的情况,只需使用mv
命令并将其移动到/usr/local/bin
:
sudo mv /home/hilarie/bin/ffmpeg /usr/local/bin
但我建议你uninstall
从现在的位置开始,
make uninstall
然后重新编译并安装:
./configure --prefix=/custom/location
sudo make install
这将确保如果您希望删除它,就可以找到它。