Code: Select all
libvlc_media_new_path(libvlc, url);
Code: Select all
"rtsp:\\169.254.102.233\h264"
Now with version 2.1.3 it assumes that the url is a file.
Because It logs the following:
libdvdnav: Using dvdnav version 5.0.0
libdvdread: Could not open C:\prj\MyProject\rtsp:\\169.254.102.233\h264 with libdvdcss.
libdvdread: Can't open C:\prj\MyProject\rtsp:\\169.254.102.233\h264 for reading
libdvdnav: vm: failed to open/read the DVD
[06666f34] filesystem access error: cannot open file C:\prj\MyProject\rtsp:\\169.254.102.233\h264 (Invalid argument)
[06666f34] main access error: File reading failed
So, it is using the current working directory and then concatenating url contents. Prior versions were using just url contents.
So my question to the board is if you people think that this is an error to be reported or if you think that I am making a bad use of the function.
Thanks.