web-dev-qa-db-ja.com

トーテムがDLNAのサポートを停止したのはなぜですか?

ああ、私は何年にもわたって自分のネットワーク上ですべての動画を視聴してきましたが、どうすればよいですか?

新しいTVでもdlnaサーバーからビデオを再生できるようになったため、後方に移動したように見えます。

2
johndrinkwater

プラグインが削除された場所のコミット を見ると、誰もそれを管理していないため、削除されたようです。このコミットで削除された関連する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"

プラグインを新しいGObject IntrospectionベースのPythonバインディングに移植して他のトーテムが使用していた)に誰もステップアップしていないため。

DLNAで何か問題があるように見えたようには思えません。プラグインを保守および更新するために誰かが立ち上がった場合、機能を再度追加する可能性があります。

4