3
我正在嘗試使用Cling Java庫編寫DLNA應用程序。我可以搜索DLNA網絡中的所有媒體服務器並播放內容。但我需要搜索網絡中可用的媒體渲染器並播放其中的內容。就像UPnPlay一樣。搜索用於remoteplayback的DLNA(Upnp)媒體渲染器
在此先感謝。
我正在嘗試使用Cling Java庫編寫DLNA應用程序。我可以搜索DLNA網絡中的所有媒體服務器並播放內容。但我需要搜索網絡中可用的媒體渲染器並播放其中的內容。就像UPnPlay一樣。搜索用於remoteplayback的DLNA(Upnp)媒體渲染器
在此先感謝。
public class MyUpnpService extends AndroidUpnpServiceImpl {
@Override
protected AndroidUpnpServiceConfiguration createConfiguration(WifiManager wifiManager) {
return new AndroidUpnpServiceConfiguration(wifiManager) {
@Override
public ServiceType[] getExclusiveServiceTypes() {
return new ServiceType[] {
new UDAServiceType("AVTransport")
};
}
};
}
}
搜索與「服務的AVTransport」功能的設備解決了搜索媒體渲染器遠程回放的問題。對於遠程回放,我發現從this
足夠documnetation