为什么 totem 停止支持 DLNA?

为什么 totem 停止支持 DLNA?

啊,多年来我一直通过网络观看所有视频,现在我该怎么办?

这似乎是一种倒退的举动,因为现在我的新电视也可以播放来自我的 dlna 服务器的视频。

答案1

看看提交删除插件的位置,它似乎被删除了,因为没有人维护它。根据configure此提交中删除的相关脚本位,它仍保留在树中,但被禁用了一段时间:

diff --git a/configure.in b/configure.in
index 9577162..178976d 100644
--- a/configure.in
+++ b/configure.in
@@ -389,11 +389,6 @@ for plugin in ${used_plugins}; do
    add_plugin="1"

    case ${plugin} in
-       coherence_upnp)
-           # The Coherence framework still uses PyGTK, and thus conflicts with the new pygobject introspected bindings
-           plugin_error_or_ignore "the coherence_upnp plugin uses PyGTK and conflicts with the new pygobject bindings"
-           add_plugin="0"
-       ;;
        gromit)
            if test "${have_x11}" != "yes" ; then
                plugin_error_or_ignore "the gromit plugin is not supported on non-X11 targets"

因为没有人将插件移植到 Totem 其余部分正在使用的基于新的 GObject Introspection 的 Python 绑定上。

听起来他们没有发现 DLNA 有什么问题,如果有人站出来维护和更新该插件,他们可能会重新添加该功能。

相关内容