What are some common C libraries in Linux to use a CD burning device? [closed]

随声附和 提交于 2020-05-14 11:27:51

问题


I am interested in creating software that uses a CD burning device. I will be writing this code in C under Linux and compiling using GCC.


回答1:


libburn as the name suggests ;) (and other friend-libraries from the same site). It's used in brasero (GNOME), xfburn (xfce) and cdw.

And well, that's it. Really, I'm not aware of any more libraries.

In fact, it was more common to wrap command-line cdrecord (from cdrtools or cdrkit) but they never provided a shared library; it was just an old unix practice on running external executables (and then parsing their output, ugly). AFAIK it's still used in k3b and a few minor tools but the general trend is migration towards libburn.



来源:https://stackoverflow.com/questions/12133670/what-are-some-common-c-libraries-in-linux-to-use-a-cd-burning-device

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!