hawkeye camera support(not tested)
This commit is contained in:
16
framework/Inspectron.HawkEye/RTSP/RTSPUtils.cs
Normal file
16
framework/Inspectron.HawkEye/RTSP/RTSPUtils.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace Inspectron.HawkEye.RTSP
|
||||
{
|
||||
public static class RtspUtils
|
||||
{
|
||||
/// <summary>
|
||||
/// Registers the URI.
|
||||
/// </summary>
|
||||
public static void RegisterUri()
|
||||
{
|
||||
if (!UriParser.IsKnownScheme("rtsp"))
|
||||
UriParser.Register(new HttpStyleUriParser(), "rtsp", 554);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user