gpt4 book ai didi

ffmpeg - 我可以在我的闭源应用程序中动态调用 LGPL/GPL 软件吗?

转载 作者:行者123 更新时间:2023-12-02 23:55:18 53 4
gpt4 key购买 nike

我想使用 ffmpeg 下的工具 ( GNU Lesser General Public License, version 2.1 ) GNU General Public License (GPL) version 2对于某些组件。

为此,我只在我的软件中这样调用它:

System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo = new System.Diagnostics.ProcessStartInfo("lgplSoftware.exe", myParams);
p.Start();

我不会更改它,我只使用该软件的 Windows 内置版本。

<小时/>

Wikipedia说:

A key dispute related to the GPL is whether or not non-GPL software can be dynamically linked to GPL libraries. The GPL is clear in requiring that all derivative works of code under the GPL must themselves be under the GPL. While it is understood that static linking produces derivative works, it is not clear whether an executable that dynamically links to a GPL code should be considered a derivative work (see Weak Copyleft). The free/open-source software community is split on this issue. The FSF asserts that such an executable is indeed a derivative work if the executable and GPL code "make function calls to each other and share data structures," with certain others agreeing (e.g. Jerry Epplin), while some (e.g. Linus Torvalds) agree that dynamic linking can create derived works but disagree over the circumstances.

<小时/>

我真的对所有这些合法的事情感到困惑。我也会将我的项目制作为 LGPL 并发布源代码,但这不取决于我。

所以问题是:我可以像现在一样使用它吗?还是会被一大群律师处决?

最佳答案

Linking在计算机编程中具有特定的含义。您根本没有链接 GPL 或 LGPL 代码,您只是生成 GPL 或 LGPL 二进制文件,并且 GPL 和 LGPL 允许这样做。您的用户可以自由地将二进制文件用于其作者的预期目的,并且可以自行下载和编译源代码,因此他们的所有自由都得到保留,并且您没有违反 GPL 或 LGPL。 (这就是 GPL FAQ 所说的“保持一定距离的沟通”。)这甚至不违反 LGPL 和 GPL 的精神;他们容忍专有软件的存在,并假设在某些时候专有程序将产生免费程序,反之亦然。 (否则,我们无法在 Windows 下运行任何 GPL 许可的软件。)

GPL 确实要求专有程序和 GPL 程序“不能以有效地使它们成为单个程序的方式组合”。如果您的程序完全依赖于 GPL 的可执行文件,即使它是一个独立的二进制文件,如果没有它们它也无法使用,那么这可能会让您的处境更加不稳定。 (也许是时候咨询你的律师来确定答案了。)

此外,尽管您没有具体询问这一点,但请记住,随您的软件一起分发 GPL 或 LGPL 的软件意味着您需要在安装程序中包含一份许可证副本,并且还需要分发源代码。例如,如果您将应用程序打包在安装程序中,并在安装程序中包含 GPL 或 LGPL 可执行文件的副本,那么您正在分发 LGPL 或 GPL 代码,并且必须提供源代码的副本(在线、通过邮寄报价或通过 CD,具体取决于您分发应用程序的方式)。包含上游项目的链接是不够的(至少对于 GPL 版本 2 而言)。阅读 GPL 和 LGPL 了解具体细节。

关于ffmpeg - 我可以在我的闭源应用程序中动态调用 LGPL/GPL 软件吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1394623/

53 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com