Skip to content

Commit

Permalink
Merge branch 'SharpRTSP-exploration'
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/AzureEventGridML.Net.sln
  • Loading branch information
KiwiBryn committed May 19, 2024
2 parents 00814cf + 513a839 commit 5d2129f
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/AzureEventGridML.Net.sln
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ML.NetObjectDetection", "ML
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ML.Net", "ML.Net", "{204F0DD7-374B-48A3-9A04-68EDD77843BA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SecurityCamera.Video.SharpRTSP.VideoStream", "SecurityCamera.Video.SharpRTSP.VideoStream\SecurityCamera.Video.SharpRTSP.VideoStream.csproj", "{7FD5A138-C620-4DA7-A38B-E9EFC0A0A574}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "YoloV8.Pose.Image", "YoloV8.Pose.Image\YoloV8.Pose.Image.csproj", "{C8E744CE-62F6-4206-BD7A-BABBD2BC862A}"
EndProject
Global
Expand Down
19 changes: 19 additions & 0 deletions src/SecurityCamera.Video.SharpRTSP.VideoStream/Model.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//---------------------------------------------------------------------------------
// Copyright (c) March 2023, devMobile Software
//
// http:https://www.apache.org/licenses/LICENSE-2.0
//
//---------------------------------------------------------------------------------
using System;

namespace devMobile.IoT.SecurityCamera.Video.SharpRtsp.VideoStream.Model
{
public class ApplicationSettings
{
public string RtspCameraUrl { get; set; }

public string WebCameraDeviceName { get; set; }

public string ImageFilepathLocal { get; set; }
}
}
10 changes: 10 additions & 0 deletions src/SecurityCamera.Video.SharpRTSP.VideoStream/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
namespace SecurityCamera.Video.SharpRTSP.VideoStream
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UserSecretsId>0346735a-940e-4b21-ab01-d68d262a8752</UserSecretsId>
</PropertyGroup>

<ItemGroup>
<None Remove="appsettings.json" />
</ItemGroup>

<ItemGroup>
<Content Include="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="6.0.1" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"ApplicationSettings": {

"ImageFilepathLocal": "Images",

"WebCameraDeviceName": "Microsoft® LifeCam HD-3000",
"RtspCameraUrl": ""
}
}

0 comments on commit 5d2129f

Please sign in to comment.