IP Camera RTSP Streaming

Discussions about product bugs & problems!
Note: This is no replacement for the Official ETM Support!
Search

Post Reply
3 posts • Page 1 of 1
jonred
Posts: 36
Joined: Mon Mar 06, 2017 10:24 am

IP Camera RTSP Streaming

Post by jonred »

Hi,

I’m trying to stream an IP camera over RTSP using VLC ActiveX but I’m no table to achieve it. However, If I stream over HTTP, using the same configuration, it works. I have changed the MRL extended parameter only in both cases.
If I try to connect over RTSP using VLC out of WinCC OA, it works. I don’t know if some extra steps are needed to configure the connection through RTSP with the VLC ActiveX in WinCC OA. There are no log files reporting the error.
It is possible to connecto through RSTP using this method?

Thank you,

User avatar
adaneau
Posts: 310
Joined: Tue Feb 21, 2012 9:49 am

Re: IP Camera RTSP Streaming

Post by adaneau »

Hey,

I did that 10 years ago with 3,11 :D . It worked fine with siemens camera in RTSP. Here is how I did it:

Code: Select all

int item=VideoLAN_VLCPlugin.playlist.add("rtsp://1.2.3.4:555");
VideoLAN_VLCPlugin.playlist.playItem(item);
Don't forget to clear playlist if you are gonna use another stream:

Code: Select all

VideoLAN_VLCPlugin.playlist.stop();
VideoLAN_VLCPlugin.playlist.clear();
¨

I hope it will help you.

BR
Alex

User avatar
leoknipp
Posts: 2926
Joined: Tue Aug 24, 2010 7:28 pm

Re: IP Camera RTSP Streaming

Post by leoknipp »

If you want to show video streams in WinCC OA you can use the WinCC OA Video AddOn.
For details please have a look at the documentation:
https://www.winccoa.com/documentation/W ... video.html

Best Regards
Leopold Knipp
Senior Support Specialist

Post Reply
3 posts • Page 1 of 1