after that i use tcpdump to catch packages between my iptv provider and my iptv box
i found the different:
Range: npt=245-\r\n
the 245 is “the number of seconds that elapsed from the start of the stream"
and i use potplayer to play the rtsp stream:
i got
Range: npt=152.909-\r\n
and everything works well.
but kodi send a value that is much larger than the length of the entire stream.
for example:
Range: npt=10889.373-\r\n
and it should be 38.
i dont know who is responsible for transmitting this parameter on the entire playback pipeline.
so i found the original implementation of RTMP_SendSeek
hello, i have report a bug in https://github.com/kodi-pvr/pvr.iptvsimple/issues/655
after that i use tcpdump to catch packages between my iptv provider and my iptv box i found the different:
the 245 is “the number of seconds that elapsed from the start of the stream"
and i use potplayer to play the rtsp stream: i got
and everything works well.
but kodi send a value that is much larger than the length of the entire stream. for example:
and it should be 38.
i dont know who is responsible for transmitting this parameter on the entire playback pipeline. so i found the original implementation of
RTMP_SendSeek
the if found this code:
but i cant find where this code is called.