I 'm not able to play recoded video via open network bridge

I want to play my video from 2022-03-04 11:11:11 via open network bridge

​So, I tried Range: ntp 20000- and Range: clock=20220304T111111.000Z-

The First is working well and the second is not working.

This is second request . (I have to use that..)

Request :

DESCRIBE rtsp://192.168.182.22:554/vod/DDC940D3-E6F1-450C-B331-294E397657DA RTSP/1.0

CSeq: 3

Authorization: Digest username=“onvif”, realm=“RtspServerLibrary”, nonce=“vycZShao9oNfCJfEPuJHM6SkoybmXUdw”, uri=“rtsp://192.168.x.x:554/vod/DDC940D3-E6F1-450C-B331-294E397657DA”, response=“f548e80d9562f67719fc704cad6046cb”

Accept: application/sdp

User-Agent: Lavf58.20.100

SETUP rtsp://192.168.x.x:554/vod/DDC940D3-E6F1-450C-B331-294E397657DA/streamid=0 RTSP/1.0

CSeq: 4

Authorization: Digest username=“onvif”, realm=“RtspServerLibrary”, nonce=“vycZShao9oNfCJfEPuJHM6SkoybmXUdw”, uri=“rtsp://192.168.182.22:554/vod/DDC940D3-E6F1-450C-B331-294E397657DA/streamid=0”, response=“dc01630d210fc5399509e55f146fb124”

Transport: RTP/AVP/TCP;unicast;interleaved=0-1

User-Agent: Lavf58.20.100

PLAY rtsp://192.168.182.22:554/vod/DDC940D3-E6F1-450C-B331-294E397657DA RTSP/1.0

CSeq: 5

Authorization: Digest username=“onvif”, realm=“RtspServerLibrary”, nonce=“vycZShao9oNfCJfEPuJHM6SkoybmXUdw”, uri=“rtsp://192.168.182.22:554/vod/DDC940D3-E6F1-450C-B331-294E397657DA”, response=“d247da56a0dbd33576cb212a4ed6130b”

Require: onvif-replay

User-Agent: Lavf58.20.100

Session: 17B32501

Range: clock:20220304T111111.000Z-

Rate-Control: no

Frames: all

I expected a video from 11:11:11, but the live video was played.

So, I found the latest rtsp log.

Plase tell me what I need to fix. ​

Thank you!

Hi Kim,

What I see on “prima-vista” is that (according to the RTSP spec) you need to change

Range: clock:20220304T111111.000Z-

to

Range: clock=20220304T111111.000Z-

Also please bear in mind that the provided timestamp is in UTC time (not a local one).

Thank you for your answer.

Then, How can I ​synchronize with the local time?

Hi Kim,

You need to convert your local time to the UTC (GMT).

For example if are in time zone UTC- 7, and you need to navigate to 11:11:11 (local time), you should send seek time as 18:11:11.

Opposite, if you are in UTC+7, you need to send 04:11:11.

Thank you!