Ask Your Question

shlem's profile - activity

2021-01-04 17:24:46 -0600 received badge  Notable Question (source)
2018-01-17 02:29:12 -0600 received badge  Popular Question (source)
2016-12-10 19:07:04 -0600 received badge  Taxonomist
2016-08-21 03:35:27 -0600 received badge  Famous Question (source)
2015-10-10 01:51:42 -0600 received badge  Notable Question (source)
2014-07-08 07:28:27 -0600 commented answer How to play UDP multicast transport stream (not RTP!)

This is nice, but my TS contains not jpeg frames, but H264 video

2014-07-07 21:48:31 -0600 received badge  Student (source)
2014-07-07 09:39:17 -0600 asked a question How to play UDP multicast transport stream (not RTP!)

Hi. How to play a live network transport stream by opencv in Windows7?

VideoCapture cap;

cap.open("rtp://234.1.2.3:1234); //works nice

but

cap.open("udp://234.1.2.3:1234); //does not work

2014-06-30 07:02:42 -0600 received badge  Popular Question (source)
2013-01-24 06:13:23 -0600 commented answer how to play live network stream

This SHOULD, but DOES NOT

2013-01-24 05:00:29 -0600 received badge  Editor (source)
2013-01-24 04:58:46 -0600 asked a question how to play live network stream

Hi. How to play a live network stream by opencv in Windows7?
I spent a lot of time, read forums and documentation, tried everything (udp, multicast udp, rtp, even named pipe), but nothing works.

VideoCapture cap; cap.open("udp://:1234); //does not work
cap.open("udp://234.1.2.3:1234); //does not work
cap.open("rtp://:1234); //does not work
cap.open("rtp://@:1234); //does not work
cap.open("rtp://234.1.2.3:1234); //does not work
cap.open("rtp://@234.1.2.3:1234); //does not work
cap.open("\.\pipe\MyPipe); //does not work

Thanks