我在哪里可以找到 libdvdread?

我在哪里可以找到 libdvdread?

我正在尝试安装 DVD 编辑工具 Bombono,自述文件告诉我使用 scons 来构建它,但 scons 却用以下警告阻止了我:

scons: Reading SConscript files ...
Creating new config file: config.opts
Checking whether we are using the GNU C compiler ... yes
Checking whether we are using the Clang compiler ... no
Checking for pkg-config ... yes
Checking for C header file sys/types.h... yes
Checking for C header file sys/stat.h... yes
Checking for C header file stdlib.h... yes
Checking for C header file string.h... yes
Checking for C header file memory.h... yes
Checking for C header file strings.h... yes
Checking for C header file inttypes.h... yes
Checking for C header file stdint.h... yes
Checking for C header file unistd.h... yes
Checking for C header file dlfcn.h... yes
Checking for C header file sys/timeb.h... yes
Checking for C header file sys/time.h... yes
Checking for C header file time.h... yes
Checking for C header file io.h... no
Checking for struct timeval ... yes
Checking for C function ftime()... yes
Checking for C function gettimeofday()... yes
Checking maximum supported data alignment ... no
Checking whether compiler understands __builtin_expect ... yes
Checking return type of signal handlers ... void
Checking for inline ... yes ('inline')
Checking for restrict ... yes ('restrict')
Checking for DVDOpenFile() in C library dvdread... no

****************************************************
Can't find library libdvdread!
****************************************************

研究了一下这个问题,尝试了几次下载,其中一个是更新 gstreamer,但似乎解决方案已经过时了

答案1

正常的做法是

sudo apt-get update
sudo apt-get install libdvdread-dev

适用于 16.04。

答案2

我最终在 Videolan 网站上找到了它。https://download.videolan.org/pub/videolan/libdvdread/

相关内容