FFMPEg 和 gcc 问题
问题是这样的:我编写了一个使用 FFMPEG 的简单程序。编译如下:
gcc -lavcodec -lavformat -lavutil -c test.c
gcc -lavcodec -lavformat -Lavut -o test test.o
编译没有问题,出现测试文件,但是启动时: 。 / 测试 出现错误:
。 / test:加载共享库时出错:libavcodec.so.53:无法打开共享对象文件:没有这样的文件或目录
ffmpeg 最初构建和安装的位置以及文件 libavcodec.so.53 在那里。问题可能出在什么地方?
The problem is this: I wrote a simple program that uses FFMPEG. compile as follows:
gcc -lavcodec -lavformat -lavutil -c test.c
gcc -lavcodec -lavformat -Lavut -o test test.o
Compiled without problems, test file appears, but when you start:
. / test
An error occurs:
. / test: error while loading shared libraries: libavcodec.so.53: cannot open shared object file: No such file or directory
At what ffmpeg was originally built and installed and the file libavcodec.so.53 there. In what may be the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您似乎正在链接自定义库目录
-Lavut
中的库。检查加载程序在何处查找可执行文件的库:
如果它们中的任何一个位于非标准目录中(并且 ldd 表示无法找到特定库),请将它们附加到 LD_LIBRARY_PATH:
如果您例如,您可以使用
-rpath
链接器选项将库路径硬编码到可执行文件中,例如gcc ... -Wl,-rpath -Wl,/tmp/work/avut
。You appear to be linking against libraries in a custom library directory,
-Lavut
.Check where your loader looks for the executable's libraries:
If any of them are in non-standard directories (and
ldd
indicates that a particular library couldn't be found), append those to the LD_LIBRARY_PATH:If you like, you can hardcode the library path into the executable with the
-rpath
linker option, e.g.gcc ... -Wl,-rpath -Wl,/tmp/work/avut
.