Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
VIZ.H2V
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘龙飞
VIZ.H2V
Commits
09cc38e2
Commit
09cc38e2
authored
Dec 30, 2022
by
liulongfei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
支持输出UDP IP 配置
parent
343a7e94
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
9 deletions
+14
-9
VIZ.H2V.ClipTestTool/ViewModel/MainViewModel.cs
+1
-1
VIZ.H2V.Module/NDIView/View/NDIView.xaml
+3
-3
VIZ.H2V.Storage/CSV/Clip/ClipSystem.cs
+5
-0
VIZ.H2V/config/clip_system.csv
+5
-5
No files found.
VIZ.H2V.ClipTestTool/ViewModel/MainViewModel.cs
View file @
09cc38e2
...
@@ -223,7 +223,7 @@ namespace VIZ.H2V.ClipTestTool
...
@@ -223,7 +223,7 @@ namespace VIZ.H2V.ClipTestTool
if
(
clipSystem
==
null
)
if
(
clipSystem
==
null
)
return
;
return
;
UdpEndpointManager
manager
=
new
UdpEndpointManager
(
"UDP"
,
"127.0.0.1"
,
clipSystem
.
UDP_PORT
);
UdpEndpointManager
manager
=
new
UdpEndpointManager
(
"UDP"
,
clipSystem
.
UDP_IP
,
clipSystem
.
UDP_PORT
);
conn
.
AddEndpointManager
(
manager
);
conn
.
AddEndpointManager
(
manager
);
}
}
...
...
VIZ.H2V.Module/NDIView/View/NDIView.xaml
View file @
09cc38e2
...
@@ -122,15 +122,15 @@
...
@@ -122,15 +122,15 @@
</behaviors:Interaction.Triggers>
</behaviors:Interaction.Triggers>
<!-- 信号1 -->
<!-- 信号1 -->
<Rectangle HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
<Rectangle HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
MinWidth="300"
Visibility="{Binding Path=TallyPartViewModel.Tally1.PinValue,Converter={StaticResource Bool2VisibilityConverter}}"
Visibility="{Binding Path=TallyPartViewModel.Tally1.PinValue,Converter={StaticResource Bool2VisibilityConverter}}"
Fill="{Binding Path=TallyPartViewModel.Color1,Converter={StaticResource Color2SolidColorBrushConverter}}"></Rectangle>
Fill="{Binding Path=TallyPartViewModel.Color1,Converter={StaticResource Color2SolidColorBrushConverter}}"></Rectangle>
<TextBlock Text="{Binding Path=DisplayName,Mode=OneWay}"
<TextBlock Text="{Binding Path=DisplayName,Mode=OneWay}"
HorizontalAlignment="Center"
ToolTip="{Binding Path=DisplayName,Mode=OneWay}"
ToolTip="{Binding Path=DisplayName,Mode=OneWay}"
Margin="60,5,60,5" Foreground="White" FontSize="18"
Margin="60,5,60,5" Foreground="White" FontSize="18"
TextWrapping="NoWrap" TextTrimming="CharacterEllipsis"
TextWrapping="NoWrap" TextTrimming="CharacterEllipsis"
MaxWidth="
3
00"></TextBlock>
MaxWidth="
6
00"></TextBlock>
</Grid>
</Grid>
<!-- 算法 -->
<!-- 算法 -->
<Grid Grid.RowSpan="2" Margin="0,16,-6,0">
<Grid Grid.RowSpan="2" Margin="0,16,-6,0">
...
...
VIZ.H2V.Storage/CSV/Clip/ClipSystem.cs
View file @
09cc38e2
...
@@ -22,6 +22,11 @@ namespace VIZ.H2V.Storage
...
@@ -22,6 +22,11 @@ namespace VIZ.H2V.Storage
public
string
NDI_NAME
{
get
;
set
;
}
public
string
NDI_NAME
{
get
;
set
;
}
/// <summary>
/// <summary>
/// UDP IP
/// </summary>
public
string
UDP_IP
{
get
;
set
;
}
/// <summary>
/// UDP端口
/// UDP端口
/// </summary>
/// </summary>
public
int
UDP_PORT
{
get
;
set
;
}
public
int
UDP_PORT
{
get
;
set
;
}
...
...
VIZ.H2V/config/clip_system.csv
View file @
09cc38e2
ID,NDI_NAME,UDP_
PORT,
ID,NDI_NAME,UDP_
IP,UDP_PORT
1,NDIOutput1,
5001,
1,NDIOutput1,
127.0.0.1,5001
2,NDIOutput2,
5002,
2,NDIOutput2,
127.0.0.1,5002
3,NDIOutput3,
5003,
3,NDIOutput3,
127.0.0.1,5003
4,NDIOutput4,
5004,
4,NDIOutput4,
127.0.0.1,5004
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment