回答編集履歴

3

refinement

2019/06/18 01:08

投稿

yohhoy
yohhoy

スコア6191

test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
 
5
- [RFC2326 Real Time Streaming Protocol (RTSP)](https://tools.ietf.org/html/rfc2326#page-43) によると、エラーコード 461 は "Unsupported Transport" つまりクライアント(OpenCV/FFmpeg)が要求するネットワークトランスポートが利用できないことを表します。(RTSPでは[下層トランスポート](https://tools.ietf.org/html/rfc2326#section-12.39)にUDP or TCPを選択できます。デフォルトはUDP)
5
+ [RFC2326 Real Time Streaming Protocol (RTSP)](https://tools.ietf.org/html/rfc2326#section-11.3.12) によると、エラーコード 461 は "Unsupported Transport" つまりクライアント(OpenCV/FFmpeg)が要求するネットワークトランスポートが利用できないことを表します。(RTSPでは[下層トランスポート](https://tools.ietf.org/html/rfc2326#section-12.39)にUDP or TCPを選択できます。デフォルトはUDP)
6
6
 
7
7
 
8
8
 

2

update

2019/06/18 01:08

投稿

yohhoy
yohhoy

スコア6191

test CHANGED
@@ -8,4 +8,4 @@
8
8
 
9
9
  [https://github.com/opencv/opencv/issues/8478](https://github.com/opencv/opencv/issues/8478) でも同様事象が報告されていますが、RTSPサーバ側の設定を変更するか、クライアント側の変更・リビルドが必要になる気がします。
10
10
 
11
- > To prevent network glitches / video stream disconnection / etc OpenCV forces TCP transport protocol.
11
+ > To prevent network glitches / video stream disconnection / etc OpenCV forces TCP transport protocol. You should reconfigure your rstp server for TCP support or use non-FFmpeg OpenCV backend (Gstreamer?).

1

update

2019/06/18 01:06

投稿

yohhoy
yohhoy

スコア6191

test CHANGED
@@ -7,3 +7,5 @@
7
7
 
8
8
 
9
9
  [https://github.com/opencv/opencv/issues/8478](https://github.com/opencv/opencv/issues/8478) でも同様事象が報告されていますが、RTSPサーバ側の設定を変更するか、クライアント側の変更・リビルドが必要になる気がします。
10
+
11
+ > To prevent network glitches / video stream disconnection / etc OpenCV forces TCP transport protocol.