FFMPEg 和 gcc 问题

发布于 2024-11-16 14:14:37 字数 331 浏览 4 评论 0原文

问题是这样的:我编写了一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北方的巷 2024-11-23 14:14:37

您似乎正在链接自定义库目录 -Lavut 中的库。

检查加载程序在何处查找可执行文件的库:

ldd ./test

如果它们中的任何一个位于非标准目录中(并且 ldd 表示无法找到特定库),请将它们附加到 LD_LIBRARY_PATH:

LD_LIBRARY_PATH=/tmp/work/avut ./test

如果您例如,您可以使用 -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:

ldd ./test

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:

LD_LIBRARY_PATH=/tmp/work/avut ./test

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文