home-assistant / core

:house_with_garden: Open source home automation that puts local control and privacy first.
https://www.home-assistant.io
Apache License 2.0
71.59k stars 29.91k forks source link

DLNA Renderer - sending an image file fails on every second attempt #126293

Open csimonosian opened 2 hours ago

csimonosian commented 2 hours ago

The problem

I want to send an image to a DLNA Renderer. It works...the first time. Then the second time, whatever software/device is the renderer and is receiving the image, goes either to a blank screen or to its home page. The third time, it works. This is a predictable pattern. Every alternate image that is sent fails. In fact, it's not even different images that are sent. It can be the same image, but every alternate time it's sent, it fails.

I've tried it with the following DLNA renderers:

WDTV Live SMP streaming box JRiver Media Center running on an x86 Linux PC OpenPHT running as the native OS on two different x86 PCs BubbleUPnP running on an Android tablet

Whatever renderer is used, the symptom is the same.

I've tried sending images to these renderers with another DLNA control point (JRiver) and that works correctly.

An example action in an automation I'm using to send a file to a renderer is as follows, which is the simple result of selecting a Media Player-Play Media action then selecting the image file from my Media folder:

action: media_player.play_media
target:
  entity_id: media_player.openpht_embedded
data:
  media_content_id: media-source://media_source/local/p3.jpg
  media_content_type: image/jpeg
metadata:
  title: p3.jpg
  thumbnail: null
  media_class: image
  children_media_class: null
  navigateIds:
    - {}
    - media_content_type: app
      media_content_id: media-source://media_source

I can do the same thing from the Developer Tools Actions facility, which results in YAML like this:

action: media_player.play_media
target:
  device_id: 3f647a404142d224824a6367ad0fbdb5
data:
  media_content_id: media-source://media_source/local/p3.jpg
  media_content_type: image/jpeg

Regardless of whether this is done via an automation or Devloper Tools, the failure every second attempt occurs.

Another way of sending an image is calling the JRiver API to return cover art of its currently playing track (which I identify via a sensor):

action: media_player.play_media
target:
  entity_id: media_player.wdtvlivesmp
data:
  media_content_id: >-
    http://192.168.1.101:52199/{{states('sensor.channel_1_cover_art')
    }}&Type=Full
  media_content_type: image
metadata: {}

The API call returns a valid image which, again, only works on every second attempt.

What version of Home Assistant Core has the issue?

core-2024.9.2

What was the last working version of Home Assistant Core?

No response

What type of installation are you running?

Home Assistant OS

Integration causing the issue

DLNA Digital Media Renderer

Link to integration documentation on our website

https://www.home-assistant.io/integrations/dlna_dmr/

Diagnostics information

No response

Example YAML snippet

action: media_player.play_media
target:
  device_id: 3f647a404142d224824a6367ad0fbdb5
data:
  media_content_id: media-source://media_source/local/p3.jpg
  media_content_type: image/jpeg

action: media_player.play_media
target:
  entity_id: media_player.openpht_embedded
data:
  media_content_id: media-source://media_source/local/p3.jpg
  media_content_type: image/jpeg
metadata:
  title: p3.jpg
  thumbnail: null
  media_class: image
  children_media_class: null
  navigateIds:
    - {}
    - media_content_type: app
      media_content_id: media-source://media_source

Anything in the logs that might be useful for us?

<?xml version="1.0" encoding="UTF-8"?>
<e:propertyset xmlns:e="urn:schemas-upnp-org:event-1-0"><e:property><LastChange>&lt;Event xmlns="urn:schemas-upnp-org:metadata-1-0/AVT/"&gt;&lt;InstanceID val="0"&gt;&lt;AVTransportURI val="http://192.168.1.107:8123/media/local/p3.jpg?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOWU3NDYwNDMyY2M0N2QxODE5ZTYwZDJhZmMyMGYyNyIsInBhdGgiOiIvbWVkaWEvbG9jYWwvcDMuanBnIiwicGFyYW1zIjpbXSwiaWF0IjoxNzI2NzgxNTg3LCJleHAiOjE3MjY4Njc5ODd9.zrirduHusA3R2JgPzJniGm1kHvo98zqNgV6qbbu0AFI"/&gt;&lt;AVTransportURIMetaData val="&amp;lt;DIDL-Lite xmlns=&amp;quot;urn:schemas-upnp-org:metadata-1-0/DIDL-Lite/&amp;quot; xmlns:dc=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot; xmlns:upnp=&amp;quot;urn:schemas-upnp-org:metadata-1-0/upnp/&amp;quot; xmlns:sec=&amp;quot;http://www.sec.co.kr/&amp;quot;&gt;&amp;lt;item id=&amp;quot;0&amp;quot; parentID=&amp;quot;-1&amp;quot; restricted=&amp;quot;false&amp;quot;&gt;&amp;lt;dc:title&gt;Home Assistant&amp;lt;/dc:title&gt;&amp;lt;upnp:class&gt;object.item.imageItem&amp;lt;/upnp:class&gt;&amp;lt;res protocolInfo=&amp;quot;http-get:*:image/jpeg:*&amp;quot;&gt;http://192.168.1.107:8123/media/local/p3.jpg?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOWU3NDYwNDMyY2M0N2QxODE5ZTYwZDJhZmMyMGYyNyIsInBhdGgiOiIvbWVkaWEvbG9jYWwvcDMuanBnIiwicGFyYW1zIjpbXSwiaWF0IjoxNzI2NzgxNTg3LCJleHAiOjE3MjY4Njc5ODd9.zrirduHusA3R2JgPzJniGm1kHvo98zqNgV6qbbu0AFI&amp;lt;/res&gt;&amp;lt;/item&gt;&amp;lt;/DIDL-Lite&gt;"/&gt;&lt;TransportState val="STOPPED"/&gt;&lt;TransportStatus val="ERROR_OCCURRED"/&gt;&lt;/InstanceID&gt;&lt;/Event&gt;</LastChange></e:property></e:propertyset>
2024-09-19 22:33:07.783 DEBUG (MainThread) [async_upnp_client.aiohttp] NOTIFY response status: 200
2024-09-19 22:33:07.785 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Sending response: 200
2024-09-19 22:33:08.381 DEBUG (MainThread) [async_upnp_client.aiohttp] Received request: <BaseRequest NOTIFY /notify >
2024-09-19 22:33:08.381 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Incoming request:
NOTIFY
NT: upnp:event
NTS: upnp:propchange
SID: uuid:0e88f785-8860-ca0b-a566-e6db6f217897
SEQ: 60
User-Agent: Neptune/1.1.3
Connection: close
Host: 192.168.1.107:32909
Content-Length: 510
Content-Type: text/xml; charset="utf-8"

<?xml version="1.0" encoding="UTF-8"?>
<e:propertyset xmlns:e="urn:schemas-upnp-org:event-1-0"><e:property><LastChange>&lt;Event xmlns="urn:schemas-upnp-org:metadata-1-0/AVT/"&gt;&lt;InstanceID val="0"&gt;&lt;TransportStatus val="OK"/&gt;&lt;TransportState val="PLAYING"/&gt;&lt;AVTransportURI val=""/&gt;&lt;CurrentTrackURI val=""/&gt;&lt;NumberOfTracks val="1"/&gt;&lt;CurrentTrack val="1"/&gt;&lt;AVTransportURIMetaData val=""/&gt;&lt;/InstanceID&gt;&lt;/Event&gt;</LastChange></e:property></e:propertyset>
2024-09-19 22:33:08.382 DEBUG (MainThread) [async_upnp_client.client] Calling action: GetPositionInfo, args: {'InstanceID': 0}
2024-09-19 22:33:08.382 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Sending request:
POST http://192.168.1.100:1638/AVTransport/c4eef64c-6dae-6fb7-2902-1fbf99204240/control.xml
SOAPAction: "urn:schemas-upnp-org:service:AVTransport:1#GetPositionInfo"
Host: 192.168.1.100:1638
Content-Type: text/xml; charset="utf-8"
<?xml version="1.0"?><s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body><u:GetPositionInfo xmlns:u="urn:schemas-upnp-org:service:AVTransport:1"><InstanceID>0</InstanceID></u:GetPositionInfo></s:Body></s:Envelope>

2024-09-19 22:33:08.383 DEBUG (MainThread) [async_upnp_client.aiohttp] NOTIFY response status: 200
2024-09-19 22:33:08.383 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Sending response: 200
2024-09-19 22:33:08.388 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Got response from POST http://192.168.1.100:1638/AVTransport/c4eef64c-6dae-6fb7-2902-1fbf99204240/control.xml:
200
Ext: 
Date: Thu, 19 Sep 2024 21:33:08 GMT
Content-Length: 525
Content-Type: text/xml; charset="utf-8"
Server: UPnP/1.0 DLNADOC/1.50 Platinum/0.6.9.1

b'<?xml version="1.0" encoding="UTF-8"?>\r\n<s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body><u:GetPositionInfoResponse xmlns:u="urn:schemas-upnp-org:service:AVTransport:1"><Track>1</Track><TrackDuration>00:00:00</TrackDuration><TrackMetaData></TrackMetaData><TrackURI></TrackURI><RelTime>00:00:00</RelTime><AbsTime>00:00:00</AbsTime><RelCount>2147483647</RelCount><AbsCount>2147483647</AbsCount></u:GetPositionInfoResponse></s:Body></s:Envelope>'
2024-09-19 22:33:08.389 DEBUG (MainThread) [async_upnp_client.client] Called action: GetPositionInfo, args: {'InstanceID': 0}, response_args: {'Track': 1, 'TrackDuration': '00:00:00', 'TrackMetaData': '', 'TrackURI': '', 'RelTime': '00:00:00', 'AbsTime': '00:00:00', 'RelCount': 2147483647, 'AbsCount': 2147483647}
2024-09-19 22:33:08.419 DEBUG (MainThread) [async_upnp_client.server] Announcing
2024-09-19 22:33:08.419 DEBUG (MainThread) [async_upnp_client.server] Sending advertisement, NTS: ssdp:alive, NT: upnp:rootdevice, USN: UUID:A7DE67AA-EC4F-43C2-B71E-B4B8C16AB911::upnp:rootdevice
2024-09-19 22:33:08.419 DEBUG (MainThread) [async_upnp_client.ssdp] Sending SSDP packet, transport: <_SelectorDatagramTransport fd=61 read=polling write=<idle, bufsize=0>>, socket: <asyncio.TransportSocket fd=61, family=2, type=2, proto=0, laddr=('0.0.0.0', 37515)>, target: ('239.255.255.250', 1900)
2024-09-19 22:33:08.420 DEBUG (MainThread) [async_upnp_client.traffic.ssdp] Sending SSDP packet, target: ('239.255.255.250', 1900), data: b'NOTIFY * HTTP/1.1\r\nNTS:ssdp:alive\r\nHOST:239.255.255.250:1900\r\nCACHE-CONTROL:max-age=1800\r\nSERVER:async-upnp-client/0.40.0 UPnP/2.0 Server/1.0\r\nBOOTID.UPNP.ORG:1726520036\r\nCONFIGID.UPNP.ORG:1\r\nLOCATION:http://192.168.1.107:40000/device.xml\r\nNT:upnp:rootdevice\r\nUSN:UUID:A7DE67AA-EC4F-43C2-B71E-B4B8C16AB911::upnp:rootdevice\r\n\r\n'
2024-09-19 22:33:08.420 DEBUG (MainThread) [async_upnp_client.server] Announcing
2024-09-19 22:33:08.421 DEBUG (MainThread) [async_upnp_client.server] Sending advertisement, NTS: ssdp:alive, NT: upnp:rootdevice, USN: UUID:A7DE67AA-EC4F-43C2-B71E-B4B8C16AB911::upnp:rootdevice
2024-09-19 22:33:08.421 DEBUG (MainThread) [async_upnp_client.ssdp] Sending SSDP packet, transport: <_SelectorDatagramTransport fd=66 read=polling write=<idle, bufsize=0>>, socket: <asyncio.TransportSocket fd=66, family=10, type=2, proto=0, laddr=('::', 34114, 0, 0)>, target: ('FF02::C', 1900, 0, 2)
2024-09-19 22:33:08.421 DEBUG (MainThread) [async_upnp_client.traffic.ssdp] Sending SSDP packet, target: ('FF02::C', 1900, 0, 2), data: b'NOTIFY * HTTP/1.1\r\nNTS:ssdp:alive\r\nHOST:[FF02::C]:1900\r\nCACHE-CONTROL:max-age=1800\r\nSERVER:async-upnp-client/0.40.0 UPnP/2.0 Server/1.0\r\nBOOTID.UPNP.ORG:1726520036\r\nCONFIGID.UPNP.ORG:1\r\nLOCATION:http://[fe80::bd4f:bf1:3422:2f6f]:40000/device.xml\r\nNT:upnp:rootdevice\r\nUSN:UUID:A7DE67AA-EC4F-43C2-B71E-B4B8C16AB911::upnp:rootdevice\r\n\r\n'
2024-09-19 22:33:08.421 DEBUG (MainThread) [async_upnp_client.traffic.ssdp] Received packet from ('192.168.1.107', 37515): b'NOTIFY * HTTP/1.1\r\nNTS:ssdp:alive\r\nHOST:239.255.255.250:1900\r\nCACHE-CONTROL:max-age=1800\r\nSERVER:async-upnp-client/0.40.0 UPnP/2.0 Server/1.0\r\nBOOTID.UPNP.ORG:1726520036\r\nCONFIGID.UPNP.ORG:1\r\nLOCATION:http://192.168.1.107:40000/device.xml\r\nNT:upnp:rootdevice\r\nUSN:UUID:A7DE67AA-EC4F-43C2-B71E-B4B8C16AB911::upnp:rootdevice\r\n\r\n'
2024-09-19 22:33:08.422 DEBUG (MainThread) [async_upnp_client.advertisement] Received advertisement, _remote_addr: ('192.168.1.107', 37515), NT: upnp:rootdevice, NTS: ssdp:alive, USN: UUID:A7DE67AA-EC4F-43C2-B71E-B4B8C16AB911::upnp:rootdevice, location: http://192.168.1.107:40000/device.xml
2024-09-19 22:33:08.422 DEBUG (MainThread) [async_upnp_client.traffic.ssdp] Received packet from ('192.168.1.107', 37515): b'NOTIFY * HTTP/1.1\r\nNTS:ssdp:alive\r\nHOST:239.255.255.250:1900\r\nCACHE-CONTROL:max-age=1800\r\nSERVER:async-upnp-client/0.40.0 UPnP/2.0 Server/1.0\r\nBOOTID.UPNP.ORG:1726520036\r\nCONFIGID.UPNP.ORG:1\r\nLOCATION:http://192.168.1.107:40000/device.xml\r\nNT:upnp:rootdevice\r\nUSN:UUID:A7DE67AA-EC4F-43C2-B71E-B4B8C16AB911::upnp:rootdevice\r\n\r\n'
2024-09-19 22:33:08.422 DEBUG (MainThread) [async_upnp_client.traffic.ssdp] Received packet from ('fe80::bd4f:bf1:3422:2f6f', 34114, 0, 2): b'NOTIFY * HTTP/1.1\r\nNTS:ssdp:alive\r\nHOST:[FF02::C]:1900\r\nCACHE-CONTROL:max-age=1800\r\nSERVER:async-upnp-client/0.40.0 UPnP/2.0 Server/1.0\r\nBOOTID.UPNP.ORG:1726520036\r\nCONFIGID.UPNP.ORG:1\r\nLOCATION:http://[fe80::bd4f:bf1:3422:2f6f]:40000/device.xml\r\nNT:upnp:rootdevice\r\nUSN:UUID:A7DE67AA-EC4F-43C2-B71E-B4B8C16AB911::upnp:rootdevice\r\n\r\n'
2024-09-19 22:33:08.423 DEBUG (MainThread) [async_upnp_client.traffic.ssdp] Received packet from ('fe80::bd4f:bf1:3422:2f6f', 34114, 0, 2): b'NOTIFY * HTTP/1.1\r\nNTS:ssdp:alive\r\nHOST:[FF02::C]:1900\r\nCACHE-CONTROL:max-age=1800\r\nSERVER:async-upnp-client/0.40.0 UPnP/2.0 Server/1.0\r\nBOOTID.UPNP.ORG:1726520036\r\nCONFIGID.UPNP.ORG:1\r\nLOCATION:http://[fe80::bd4f:bf1:3422:2f6f]:40000/device.xml\r\nNT:upnp:rootdevice\r\nUSN:UUID:A7DE67AA-EC4F-43C2-B71E-B4B8C16AB911::upnp:rootdevice\r\n\r\n'
2024-09-19 22:33:08.423 DEBUG (MainThread) [async_upnp_client.advertisement] Received advertisement, _remote_addr: ('fe80::bd4f:bf1:3422:2f6f', 34114, 0, 2), NT: upnp:rootdevice, NTS: ssdp:alive, USN: UUID:A7DE67AA-EC4F-43C2-B71E-B4B8C16AB911::upnp:rootdevice, location: http://[fe80::bd4f:bf1:3422:2f6f%2]:40000/device.xml
2024-09-19 22:33:08.881 DEBUG (MainThread) [async_upnp_client.aiohttp] Received request: <BaseRequest NOTIFY /notify >
2024-09-19 22:33:08.882 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Incoming request:
NOTIFY
NT: upnp:event
NTS: upnp:propchange
SID: uuid:0e88f785-8860-ca0b-a566-e6db6f217897
SEQ: 61
User-Agent: Neptune/1.1.3
Connection: close
Host: 192.168.1.107:32909
Content-Length: 418
Content-Type: text/xml; charset="utf-8"

<?xml version="1.0" encoding="UTF-8"?>
<e:propertyset xmlns:e="urn:schemas-upnp-org:event-1-0"><e:property><LastChange>&lt;Event xmlns="urn:schemas-upnp-org:metadata-1-0/AVT/"&gt;&lt;InstanceID val="0"&gt;&lt;AVTransportURI val="http://192.168.1.107:8123/media/local/"/&gt;&lt;CurrentTrackURI val="http://192.168.1.107:8123/media/local/"/&gt;&lt;/InstanceID&gt;&lt;/Event&gt;</LastChange></e:property></e:propertyset>
2024-09-19 22:33:08.884 DEBUG (MainThread) [async_upnp_client.aiohttp] NOTIFY response status: 200
2024-09-19 22:33:08.884 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Sending response: 200
2024-09-19 22:33:14.225 DEBUG (MainThread) [homeassistant.components.dlna_dmr] Playing media: image/jpeg, media-source://media_source/local/p3.jpg, {'extra': {}}
2024-09-19 22:33:14.226 DEBUG (MainThread) [homeassistant.components.dlna_dmr] sourced_media is PlayMedia(url='/media/local/p3.jpg', mime_type='image/jpeg')
2024-09-19 22:33:14.227 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Sending request:
HEAD http://192.168.1.107:8123/media/local/p3.jpg?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOWU3NDYwNDMyY2M0N2QxODE5ZTYwZDJhZmMyMGYyNyIsInBhdGgiOiIvbWVkaWEvbG9jYWwvcDMuanBnIiwicGFyYW1zIjpbXSwiaWF0IjoxNzI2NzgxNTk0LCJleHAiOjE3MjY4Njc5OTR9.X5DgleeBxQ-0L4qGO92dtTLR7kNHRVGi8TurUJoAsm0
GetContentFeatures.dlna.org: 1

2024-09-19 22:33:14.231 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Got response from HEAD http://192.168.1.107:8123/media/local/p3.jpg?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOWU3NDYwNDMyY2M0N2QxODE5ZTYwZDJhZmMyMGYyNyIsInBhdGgiOiIvbWVkaWEvbG9jYWwvcDMuanBnIiwicGFyYW1zIjpbXSwiaWF0IjoxNzI2NzgxNTk0LCJleHAiOjE3MjY4Njc5OTR9.X5DgleeBxQ-0L4qGO92dtTLR7kNHRVGi8TurUJoAsm0:
405
Content-Type: text/plain; charset=utf-8
Allow: GET,OPTIONS
Referrer-Policy: no-referrer
X-Content-Type-Options: nosniff
Server: 
X-Frame-Options: SAMEORIGIN
Content-Length: 23
Date: Thu, 19 Sep 2024 21:33:14 GMT

b''
2024-09-19 22:33:14.231 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Sending request:
GET http://192.168.1.107:8123/media/local/p3.jpg?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOWU3NDYwNDMyY2M0N2QxODE5ZTYwZDJhZmMyMGYyNyIsInBhdGgiOiIvbWVkaWEvbG9jYWwvcDMuanBnIiwicGFyYW1zIjpbXSwiaWF0IjoxNzI2NzgxNTk0LCJleHAiOjE3MjY4Njc5OTR9.X5DgleeBxQ-0L4qGO92dtTLR7kNHRVGi8TurUJoAsm0
GetContentFeatures.dlna.org: 1
Range: bytes=0-0

2024-09-19 22:33:14.236 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Got response from GET http://192.168.1.107:8123/media/local/p3.jpg?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOWU3NDYwNDMyY2M0N2QxODE5ZTYwZDJhZmMyMGYyNyIsInBhdGgiOiIvbWVkaWEvbG9jYWwvcDMuanBnIiwicGFyYW1zIjpbXSwiaWF0IjoxNzI2NzgxNTk0LCJleHAiOjE3MjY4Njc5OTR9.X5DgleeBxQ-0L4qGO92dtTLR7kNHRVGi8TurUJoAsm0:
206
Referrer-Policy: no-referrer
X-Content-Type-Options: nosniff
Server: 
X-Frame-Options: SAMEORIGIN
Content-Type: image/jpeg
Etag: "12d7c3a269a47e00-ec90"
Last-Modified: Wed, 09 Jan 2013 22:01:55 GMT
Content-Length: 1
Accept-Ranges: bytes
Content-Range: bytes 0-0/60560
Date: Thu, 19 Sep 2024 21:33:14 GMT

b'\xff'
2024-09-19 22:33:14.238 DEBUG (MainThread) [async_upnp_client.client] Calling action: Stop, args: {'InstanceID': 0}
2024-09-19 22:33:14.238 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Sending request:
POST http://192.168.1.100:1638/AVTransport/c4eef64c-6dae-6fb7-2902-1fbf99204240/control.xml
SOAPAction: "urn:schemas-upnp-org:service:AVTransport:1#Stop"
Host: 192.168.1.100:1638
Content-Type: text/xml; charset="utf-8"
<?xml version="1.0"?><s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body><u:Stop xmlns:u="urn:schemas-upnp-org:service:AVTransport:1"><InstanceID>0</InstanceID></u:Stop></s:Body></s:Envelope>

2024-09-19 22:33:14.355 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Got response from POST http://192.168.1.100:1638/AVTransport/c4eef64c-6dae-6fb7-2902-1fbf99204240/control.xml:
200
Ext: 
Date: Thu, 19 Sep 2024 21:33:14 GMT
Content-Length: 264
Content-Type: text/xml; charset="utf-8"
Server: UPnP/1.0 DLNADOC/1.50 Platinum/0.6.9.1

b'<?xml version="1.0" encoding="UTF-8"?>\r\n<s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body><u:StopResponse xmlns:u="urn:schemas-upnp-org:service:AVTransport:1"/></s:Body></s:Envelope>'
2024-09-19 22:33:14.356 DEBUG (MainThread) [async_upnp_client.client] Called action: Stop, args: {'InstanceID': 0}, response_args: {}
2024-09-19 22:33:14.356 DEBUG (MainThread) [async_upnp_client.profiles.dlna] Set transport uri: http://192.168.1.107:8123/media/local/p3.jpg?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOWU3NDYwNDMyY2M0N2QxODE5ZTYwZDJhZmMyMGYyNyIsInBhdGgiOiIvbWVkaWEvbG9jYWwvcDMuanBnIiwicGFyYW1zIjpbXSwiaWF0IjoxNzI2NzgxNTk0LCJleHAiOjE3MjY4Njc5OTR9.X5DgleeBxQ-0L4qGO92dtTLR7kNHRVGi8TurUJoAsm0
2024-09-19 22:33:14.356 DEBUG (MainThread) [async_upnp_client.client] Calling action: SetAVTransportURI, args: {'InstanceID': 0, 'CurrentURI': 'http://192.168.1.107:8123/media/local/p3.jpg?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOWU3NDYwNDMyY2M0N2QxODE5ZTYwZDJhZmMyMGYyNyIsInBhdGgiOiIvbWVkaWEvbG9jYWwvcDMuanBnIiwicGFyYW1zIjpbXSwiaWF0IjoxNzI2NzgxNTk0LCJleHAiOjE3MjY4Njc5OTR9.X5DgleeBxQ-0L4qGO92dtTLR7kNHRVGi8TurUJoAsm0', 'CurrentURIMetaData': '<DIDL-Lite xmlns="urn:schemas-upnp-org:metadata-1-0/DIDL-Lite/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:upnp="urn:schemas-upnp-org:metadata-1-0/upnp/" xmlns:sec="http://www.sec.co.kr/"><item id="0" parentID="-1" restricted="false"><dc:title>Home Assistant</dc:title><upnp:class>object.item.imageItem</upnp:class><res protocolInfo="http-get:*:image/jpeg:*">http://192.168.1.107:8123/media/local/p3.jpg?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOWU3NDYwNDMyY2M0N2QxODE5ZTYwZDJhZmMyMGYyNyIsInBhdGgiOiIvbWVkaWEvbG9jYWwvcDMuanBnIiwicGFyYW1zIjpbXSwiaWF0IjoxNzI2NzgxNTk0LCJleHAiOjE3MjY4Njc5OTR9.X5DgleeBxQ-0L4qGO92dtTLR7kNHRVGi8TurUJoAsm0</res></item></DIDL-Lite>'}
2024-09-19 22:33:14.356 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Sending request:
POST http://192.168.1.100:1638/AVTransport/c4eef64c-6dae-6fb7-2902-1fbf99204240/control.xml
SOAPAction: "urn:schemas-upnp-org:service:AVTransport:1#SetAVTransportURI"
Host: 192.168.1.100:1638
Content-Type: text/xml; charset="utf-8"
<?xml version="1.0"?><s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body><u:SetAVTransportURI xmlns:u="urn:schemas-upnp-org:service:AVTransport:1"><InstanceID>0</InstanceID>
<CurrentURI>http://192.168.1.107:8123/media/local/p3.jpg?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOWU3NDYwNDMyY2M0N2QxODE5ZTYwZDJhZmMyMGYyNyIsInBhdGgiOiIvbWVkaWEvbG9jYWwvcDMuanBnIiwicGFyYW1zIjpbXSwiaWF0IjoxNzI2NzgxNTk0LCJleHAiOjE3MjY4Njc5OTR9.X5DgleeBxQ-0L4qGO92dtTLR7kNHRVGi8TurUJoAsm0</CurrentURI>
<CurrentURIMetaData>&lt;DIDL-Lite xmlns="urn:schemas-upnp-org:metadata-1-0/DIDL-Lite/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:upnp="urn:schemas-upnp-org:metadata-1-0/upnp/" xmlns:sec="http://www.sec.co.kr/"&gt;&lt;item id="0" parentID="-1" restricted="false"&gt;&lt;dc:title&gt;Home Assistant&lt;/dc:title&gt;&lt;upnp:class&gt;object.item.imageItem&lt;/upnp:class&gt;&lt;res protocolInfo="http-get:*:image/jpeg:*"&gt;http://192.168.1.107:8123/media/local/p3.jpg?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOWU3NDYwNDMyY2M0N2QxODE5ZTYwZDJhZmMyMGYyNyIsInBhdGgiOiIvbWVkaWEvbG9jYWwvcDMuanBnIiwicGFyYW1zIjpbXSwiaWF0IjoxNzI2NzgxNTk0LCJleHAiOjE3MjY4Njc5OTR9.X5DgleeBxQ-0L4qGO92dtTLR7kNHRVGi8TurUJoAsm0&lt;/res&gt;&lt;/item&gt;&lt;/DIDL-Lite&gt;</CurrentURIMetaData></u:SetAVTransportURI></s:Body></s:Envelope>

2024-09-19 22:33:14.359 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Got response from POST http://192.168.1.100:1638/AVTransport/c4eef64c-6dae-6fb7-2902-1fbf99204240/control.xml:
200
Ext: 
Date: Thu, 19 Sep 2024 21:33:14 GMT
Content-Length: 277
Content-Type: text/xml; charset="utf-8"
Server: UPnP/1.0 DLNADOC/1.50 Platinum/0.6.9.1

b'<?xml version="1.0" encoding="UTF-8"?>\r\n<s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body><u:SetAVTransportURIResponse xmlns:u="urn:schemas-upnp-org:service:AVTransport:1"/></s:Body></s:Envelope>'
2024-09-19 22:33:14.359 DEBUG (MainThread) [async_upnp_client.client] Called action: SetAVTransportURI, args: {'InstanceID': 0, 'CurrentURI': 'http://192.168.1.107:8123/media/local/p3.jpg?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOWU3NDYwNDMyY2M0N2QxODE5ZTYwZDJhZmMyMGYyNyIsInBhdGgiOiIvbWVkaWEvbG9jYWwvcDMuanBnIiwicGFyYW1zIjpbXSwiaWF0IjoxNzI2NzgxNTk0LCJleHAiOjE3MjY4Njc5OTR9.X5DgleeBxQ-0L4qGO92dtTLR7kNHRVGi8TurUJoAsm0', 'CurrentURIMetaData': '<DIDL-Lite xmlns="urn:schemas-upnp-org:metadata-1-0/DIDL-Lite/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:upnp="urn:schemas-upnp-org:metadata-1-0/upnp/" xmlns:sec="http://www.sec.co.kr/"><item id="0" parentID="-1" restricted="false"><dc:title>Home Assistant</dc:title><upnp:class>object.item.imageItem</upnp:class><res protocolInfo="http-get:*:image/jpeg:*">http://192.168.1.107:8123/media/local/p3.jpg?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOWU3NDYwNDMyY2M0N2QxODE5ZTYwZDJhZmMyMGYyNyIsInBhdGgiOiIvbWVkaWEvbG9jYWwvcDMuanBnIiwicGFyYW1zIjpbXSwiaWF0IjoxNzI2NzgxNTk0LCJleHAiOjE3MjY4Njc5OTR9.X5DgleeBxQ-0L4qGO92dtTLR7kNHRVGi8TurUJoAsm0</res></item></DIDL-Lite>'}, response_args: {}
2024-09-19 22:33:14.360 DEBUG (MainThread) [async_upnp_client.client] Calling action: GetPositionInfo, args: {'InstanceID': 0}
2024-09-19 22:33:14.360 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Sending request:
POST http://192.168.1.100:1638/AVTransport/c4eef64c-6dae-6fb7-2902-1fbf99204240/control.xml
SOAPAction: "urn:schemas-upnp-org:service:AVTransport:1#GetPositionInfo"
Host: 192.168.1.100:1638
Content-Type: text/xml; charset="utf-8"
<?xml version="1.0"?><s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body><u:GetPositionInfo xmlns:u="urn:schemas-upnp-org:service:AVTransport:1"><InstanceID>0</InstanceID></u:GetPositionInfo></s:Body></s:Envelope>

2024-09-19 22:33:14.363 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Got response from POST http://192.168.1.100:1638/AVTransport/c4eef64c-6dae-6fb7-2902-1fbf99204240/control.xml:
200
Ext: 
Date: Thu, 19 Sep 2024 21:33:14 GMT
Content-Length: 563
Content-Type: text/xml; charset="utf-8"
Server: UPnP/1.0 DLNADOC/1.50 Platinum/0.6.9.1

b'<?xml version="1.0" encoding="UTF-8"?>\r\n<s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body><u:GetPositionInfoResponse xmlns:u="urn:schemas-upnp-org:service:AVTransport:1"><Track>1</Track><TrackDuration>00:00:00</TrackDuration><TrackMetaData></TrackMetaData><TrackURI>http://192.168.1.107:8123/media/local/</TrackURI><RelTime>00:00:00</RelTime><AbsTime>00:00:00</AbsTime><RelCount>2147483647</RelCount><AbsCount>2147483647</AbsCount></u:GetPositionInfoResponse></s:Body></s:Envelope>'
2024-09-19 22:33:14.364 DEBUG (MainThread) [async_upnp_client.client] Called action: GetPositionInfo, args: {'InstanceID': 0}, response_args: {'Track': 1, 'TrackDuration': '00:00:00', 'TrackMetaData': '', 'TrackURI': 'http://192.168.1.107:8123/media/local/', 'RelTime': '00:00:00', 'AbsTime': '00:00:00', 'RelCount': 2147483647, 'AbsCount': 2147483647}
2024-09-19 22:33:14.386 DEBUG (MainThread) [async_upnp_client.aiohttp] Received request: <BaseRequest NOTIFY /notify >
2024-09-19 22:33:14.386 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Incoming request:
NOTIFY
NT: upnp:event
NTS: upnp:propchange
SID: uuid:0e88f785-8860-ca0b-a566-e6db6f217897
SEQ: 62
User-Agent: Neptune/1.1.3
Connection: close
Host: 192.168.1.107:32909
Content-Length: 1601
Content-Type: text/xml; charset="utf-8"

<?xml version="1.0" encoding="UTF-8"?>
<e:propertyset xmlns:e="urn:schemas-upnp-org:event-1-0"><e:property><LastChange>&lt;Event xmlns="urn:schemas-upnp-org:metadata-1-0/AVT/"&gt;&lt;InstanceID val="0"&gt;&lt;TransportState val="STOPPED"/&gt;&lt;AVTransportURI val="http://192.168.1.107:8123/media/local/p3.jpg?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOWU3NDYwNDMyY2M0N2QxODE5ZTYwZDJhZmMyMGYyNyIsInBhdGgiOiIvbWVkaWEvbG9jYWwvcDMuanBnIiwicGFyYW1zIjpbXSwiaWF0IjoxNzI2NzgxNTk0LCJleHAiOjE3MjY4Njc5OTR9.X5DgleeBxQ-0L4qGO92dtTLR7kNHRVGi8TurUJoAsm0"/&gt;&lt;AVTransportURIMetaData val="&amp;lt;DIDL-Lite xmlns=&amp;quot;urn:schemas-upnp-org:metadata-1-0/DIDL-Lite/&amp;quot; xmlns:dc=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot; xmlns:upnp=&amp;quot;urn:schemas-upnp-org:metadata-1-0/upnp/&amp;quot; xmlns:sec=&amp;quot;http://www.sec.co.kr/&amp;quot;&gt;&amp;lt;item id=&amp;quot;0&amp;quot; parentID=&amp;quot;-1&amp;quot; restricted=&amp;quot;false&amp;quot;&gt;&amp;lt;dc:title&gt;Home Assistant&amp;lt;/dc:title&gt;&amp;lt;upnp:class&gt;object.item.imageItem&amp;lt;/upnp:class&gt;&amp;lt;res protocolInfo=&amp;quot;http-get:*:image/jpeg:*&amp;quot;&gt;http://192.168.1.107:8123/media/local/p3.jpg?authSig=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIxOWU3NDYwNDMyY2M0N2QxODE5ZTYwZDJhZmMyMGYyNyIsInBhdGgiOiIvbWVkaWEvbG9jYWwvcDMuanBnIiwicGFyYW1zIjpbXSwiaWF0IjoxNzI2NzgxNTk0LCJleHAiOjE3MjY4Njc5OTR9.X5DgleeBxQ-0L4qGO92dtTLR7kNHRVGi8TurUJoAsm0&amp;lt;/res&gt;&amp;lt;/item&gt;&amp;lt;/DIDL-Lite&gt;"/&gt;&lt;/InstanceID&gt;&lt;/Event&gt;</LastChange></e:property></e:propertyset>
2024-09-19 22:33:14.389 DEBUG (MainThread) [async_upnp_client.aiohttp] NOTIFY response status: 200
2024-09-19 22:33:14.389 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Sending response: 200
2024-09-19 22:33:14.586 DEBUG (MainThread) [async_upnp_client.aiohttp] Received request: <BaseRequest NOTIFY /notify >
2024-09-19 22:33:14.587 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Incoming request:
NOTIFY
NT: upnp:event
NTS: upnp:propchange
SID: uuid:0e88f785-8860-ca0b-a566-e6db6f217897
SEQ: 63
User-Agent: Neptune/1.1.3
Connection: close
Host: 192.168.1.107:32909
Content-Length: 341
Content-Type: text/xml; charset="utf-8"

<?xml version="1.0" encoding="UTF-8"?>
<e:propertyset xmlns:e="urn:schemas-upnp-org:event-1-0"><e:property><LastChange>&lt;Event xmlns="urn:schemas-upnp-org:metadata-1-0/AVT/"&gt;&lt;InstanceID val="0"&gt;&lt;NumberOfTracks val="0"/&gt;&lt;CurrentTrack val="0"/&gt;&lt;/InstanceID&gt;&lt;/Event&gt;</LastChange></e:property></e:propertyset>
2024-09-19 22:33:14.588 DEBUG (MainThread) [async_upnp_client.aiohttp] NOTIFY response status: 200
2024-09-19 22:33:14.589 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Sending response: 200
2024-09-19 22:33:14.637 DEBUG (MainThread) [async_upnp_client.client] Calling action: GetPositionInfo, args: {'InstanceID': 0}
2024-09-19 22:33:14.637 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Sending request:
POST http://192.168.1.4:58645/dev/5d211d62-5c50-e20c-0000-000071536209/svc/upnp-org/AVTransport/action
SOAPAction: "urn:schemas-upnp-org:service:AVTransport:1#GetPositionInfo"
Host: 192.168.1.4:58645
Content-Type: text/xml; charset="utf-8"
<?xml version="1.0"?><s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body><u:GetPositionInfo xmlns:u="urn:schemas-upnp-org:service:AVTransport:1"><InstanceID>0</InstanceID></u:GetPositionInfo></s:Body></s:Envelope>

2024-09-19 22:33:14.703 DEBUG (MainThread) [async_upnp_client.traffic.upnp] Got response from POST http://192.168.1.4:58645/dev/5d211d62-5c50-e20c-0000-000071536209/svc/upnp-org/AVTransport/action:
200
Ext: 
Server: Linux/3.18.0-gdb545c65d56 UPnP/1.0 BubbleUPnP/4.4.5
Content-Type: text/xml;charset=utf-8
Connection: close
Date: Thu, 19 Sep 2024 21:33:13 GMT+00:00
Content-Length: 2550

b'<?xml version="1.0" encoding="utf-8" standalone="yes"?><s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body><u:GetPositionInfoResponse xmlns:u="urn:schemas-upnp-org:service:AVTransport:1"><Track>1</Track><TrackDuration>00:00:00</TrackDuration><TrackMetaData>&lt;DIDL-Lite xmlns="urn:schemas-upnp-org:metadata-1-0/DIDL-Lite/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:upnp="urn:schemas-upnp-org:metadata-1-0/upnp/" xmlns:dlna="urn:schemas-dlna-org:device-1-0" xmlns:av="urn:schemas-sony-com:av" xmlns:pv="http://www.pv.com/pvns/" xmlns:jriver="urn:schemas-jriver-com:jriver"&gt;\n&lt;item id="F4129414" parentID="0" restricted="1"&gt;\n&lt;dc:title&gt;firefox-hicolor&lt;/dc:title&gt;\n&lt;upnp:class&gt;object.item.imageItem.photo&lt;/upnp:class&gt;\n&lt;upnp:album&gt;22/09/2022&lt;/upnp:album&gt;\n&lt;dc:date&gt;2022-09-22T15:41:58&lt;/dc:date&gt;\n&lt;pv:lastPlayedTime/&gt;\n&lt;pv:addedTime&gt;1726780237&lt;/pv:addedTime&gt;\n&lt;pv:modificationTime&gt;1663857718&lt;/pv:modificationTime&gt;\n&lt;upnp:albumArtURI dlna:profileID="JPEG_LRG"&gt;http://192.168.1.101:52100/AArl/4129414.jpg&lt;/upnp:albumArtURI&gt;\n&lt;upnp:albumArtURI dlna:profileID="JPEG_MED"&gt;http://192.168.1.101:52100/AArm/4129414.jpg&lt;/upnp:albumArtURI&gt;\n&lt;upnp:albumArtURI dlna:profileID="JPEG_SM"&gt;http://192.168.1.101:52100/AArs/4129414.jpg&lt;/upnp:albumArtURI&gt;\n&lt;upnp:albumArtURI dlna:profileID="JPEG_TN"&gt;http://192.168.1.101:52100/AArt/4129414.jpg&lt;/upnp:albumArtURI&gt;\n&lt;res protocolInfo="http-get:*:image/png:DLNA.ORG_PN=PNG_SM;;DLNA.ORG_CI=0;DLNA.ORG_FLAGS=00F00000000000000000000000000000" size="3448" resolution="48x48"&gt;http://192.168.1.101:52100/Image/F4129414.png&lt;/res&gt;\n&lt;res protocolInfo="http-get:*:image/jpeg:DLNA.ORG_PN=JPEG_LRG"&gt;http://192.168.1.101:52100/ARrl/4129414.jpg&lt;/res&gt;\n&lt;res protocolInfo="http-get:*:image/jpeg:DLNA.ORG_PN=JPEG_MED"&gt;http://192.168.1.101:52100/ARrm/4129414.jpg&lt;/res&gt;\n&lt;res protocolInfo="http-get:*:image/jpeg:DLNA.ORG_PN=JPEG_SM;"&gt;http://192.168.1.101:52100/ARrs/4129414.jpg&lt;/res&gt;\n&lt;res protocolInfo="http-get:*:image/jpeg:DLNA.ORG_PN=JPEG_TN"&gt;http://192.168.1.101:52100/ARrt/4129414.jpg&lt;/res&gt;\n&lt;/item&gt;\n&lt;/DIDL-Lite&gt;\n</TrackMetaData><TrackURI>http://192.168.1.101:52100/Image/F4129414.png</TrackURI><RelTime>00:00:00</RelTime><AbsTime>00:00:00</AbsTime><RelCount>2147483647</RelCount><AbsCount>2147483647</AbsCount></u:GetPositionInfoResponse></s:Body></s:Envelope>'
2024-09-19 22:33:14.704 DEBUG (MainThread) [async_upnp_client.client] Called action: GetPositionInfo, args: {'InstanceID': 0}, response_args: {'Track': 1, 'TrackDuration': '00:00:00', 'TrackMetaData': '<DIDL-Lite xmlns="urn:schemas-upnp-org:metadata-1-0/DIDL-Lite/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:upnp="urn:schemas-upnp-org:metadata-1-0/upnp/" xmlns:dlna="urn:schemas-dlna-org:device-1-0" xmlns:av="urn:schemas-sony-com:av" xmlns:pv="http://www.pv.com/pvns/" xmlns:jriver="urn:schemas-jriver-com:jriver">\n<item id="F4129414" parentID="0" restricted="1">\n<dc:title>firefox-hicolor</dc:title>\n<upnp:class>object.item.imageItem.photo</upnp:class>\n<upnp:album>22/09/2022</upnp:album>\n<dc:date>2022-09-22T15:41:58</dc:date>\n<pv:lastPlayedTime/>\n<pv:addedTime>1726780237</pv:addedTime>\n<pv:modificationTime>1663857718</pv:modificationTime>\n<upnp:albumArtURI dlna:profileID="JPEG_LRG">http://192.168.1.101:52100/AArl/4129414.jpg</upnp:albumArtURI>\n<upnp:albumArtURI dlna:profileID="JPEG_MED">http://192.168.1.101:52100/AArm/4129414.jpg</upnp:albumArtURI>\n<upnp:albumArtURI dlna:profileID="JPEG_SM">http://192.168.1.101:52100/AArs/4129414.jpg</upnp:albumArtURI>\n<upnp:albumArtURI dlna:profileID="JPEG_TN">http://192.168.1.101:52100/AArt/4129414.jpg</upnp:albumArtURI>\n<res protocolInfo="http-get:*:image/png:DLNA.ORG_PN=PNG_SM;;DLNA.ORG_CI=0;DLNA.ORG_FLAGS=00F00000000000000000000000000000" size="3448" resolution="48x48">http://192.168.1.101:52100/Image/F4129414.png</res>\n<res protocolInfo="http-get:*:image/jpeg:DLNA.ORG_PN=JPEG_LRG">http://192.168.1.101:52100/ARrl/4129414.jpg</res>\n<res protocolInfo="http-get:*:image/jpeg:DLNA.ORG_PN=JPEG_MED">http://192.168.1.101:52100/ARrm/4129414.jpg</res>\n<res protocolInfo="http-get:*:image/jpeg:DLNA.ORG_PN=JPEG_SM;">http://192.168.1.101:52100/ARrs/4129414.jpg</res>\n<res protocolInfo="http-get:*:image/jpeg:DLNA.ORG_PN=JPEG_TN">http://192.168.1.101:52100/ARrt/4129414.jpg</res>\n</item>\n</DIDL-Lite>\n', 'TrackURI': 'http://192.168.1.101:52100/Image/F4129414.png', 'RelTime': '00:00:00', 'AbsTime': '00:00:00', 'RelCount': 2147483647, 'AbsCount': 2147483647}
2024-09-19 22:33:15.297 DEBUG (MainThread) [async_upnp_client.profiles.dlna] Got no value for PresetNameList

Additional information

For this test, I sent an image twice to the renderer via the Developer Tools Actions screen, at around 22:33. The first one displayed the image correctly on the renderer, the second one caused the renderer to go back to its home screen.

There were no new entries in the general Core log, however I turned on the integration debug logging for this test and what I've pasted in the logs box here is the result of that.

home-assistant[bot] commented 2 hours ago

Hey there @chishm, mind taking a look at this issue as it has been labeled with an integration (dlna_dmr) you are listed as a code owner for? Thanks!

Code owner commands Code owners of `dlna_dmr` can trigger bot actions by commenting: - `@home-assistant close` Closes the issue. - `@home-assistant rename Awesome new title` Renames the issue. - `@home-assistant reopen` Reopen the issue. - `@home-assistant unassign dlna_dmr` Removes the current integration label and assignees on the issue, add the integration domain after the command. - `@home-assistant add-label needs-more-information` Add a label (needs-more-information, problem in dependency, problem in custom component) to the issue. - `@home-assistant remove-label needs-more-information` Remove a label (needs-more-information, problem in dependency, problem in custom component) on the issue.

(message by CodeOwnersMention)


dlna_dmr documentation dlna_dmr source (message by IssueLinks)