Another bug what I found is that when MediaInfo=true/exclusive, some AVI (DivX/XviD) files can't be played at all, others with some delay (half sec it is buffered on TV, then it started to play) but FF/RW doesn't work.
Files worked before so I found a root cause and it is that it worked with
MediaInfo=false.
When
FALSE, PMS is using "
protocolInfo="http-get:*:video/divx:DLNA.ORG_OP=01"". When
MediaInfo is true/exclusive,
OP=10/11 is used and this settings is not compatible in all cases as with
OP=01.
Older PMS versions used "
protocolInfo="http-get:*:video/divx:DLNA.ORG_PN=AVI;DLNA.ORG_OP=01"" for PS3. I tried it for Panasonic TV and it it works same way as when
_PN part is omitted. It doesn't have influence also when
OP=10 or 11 is used so it seems this part is mandatory only for PS3.
Regarding
viewtopic.php?f=2&t=2908&p=12550#p12856 it seems
OP=01 is "only" valid value for streamed video. My tests approve it.
OP=10 or 11 is not well compatible with my TV and probably also with other non-PS3 renderers.
Also I thought that when
MediaInfo=false is used, "
Supported=" lines are ignored but it is not true. I was able to change
mime type in this line also when
MediaInfo=false.
Similar thing, but opposite, is reported here:
viewtopic.php?f=6&t=15972&p=76111&hilit=it+is+a+bug#p76111EDIT:In my custom version I changed
https://github.com/ps3mediaserver/ps3me ... java#L1384 to "01" and it works without any problem on PS3 and PanTV. Seems all renderers should use "01" instead of "11" including PS3.