Commit 38f633e8 by 鲁志-悦动

修复Replay滑动条最大值动态生成滑块少一个的缺陷

parent d2cafa6e
...@@ -811,7 +811,7 @@ ...@@ -811,7 +811,7 @@
Foreground="Black" Foreground="Black"
IsEnabled="False" IsEnabled="False"
Style="{StaticResource TextBoxStyle}" Style="{StaticResource TextBoxStyle}"
Text="{Binding AutoSendCount}" />--> Text="{Binding AutoSendCount, Mode=TwoWay}" />-->
<TextBlock <TextBlock
Width="30" Width="30"
Height="30" Height="30"
...@@ -822,7 +822,7 @@ ...@@ -822,7 +822,7 @@
FontSize="14" FontSize="14"
Foreground="Black" Foreground="Black"
IsEnabled="False" IsEnabled="False"
Text="{Binding AutoSendCount}" Text="{Binding AutoSendCount, Mode=TwoWay}"
TextAlignment="Center" /> TextAlignment="Center" />
</StackPanel> </StackPanel>
</Border> </Border>
......
...@@ -107,7 +107,8 @@ namespace VIZ.FGOUT.Module ...@@ -107,7 +107,8 @@ namespace VIZ.FGOUT.Module
private void InitStreamCachedTime() private void InitStreamCachedTime()
{ {
int STREAM_CACHEED_TIME = ApplicationDomain.IniStorage.GetValue<StreamConfig, int>(p => p.STREAM_CACHEED_TIME); int STREAM_CACHEED_TIME = ApplicationDomain.IniStorage.GetValue<StreamConfig, int>(p => p.STREAM_CACHEED_TIME);
SliderMaxValue = STREAM_CACHEED_TIME * 50; //SliderEndValue = SliderMaxValue = STREAM_CACHEED_TIME * 50;
SliderMaximum = STREAM_CACHEED_TIME * 50;
} }
/// <summary> /// <summary>
...@@ -136,7 +137,7 @@ namespace VIZ.FGOUT.Module ...@@ -136,7 +137,7 @@ namespace VIZ.FGOUT.Module
this.ReplayCommand = new VCommand(this.Replay); this.ReplayCommand = new VCommand(this.Replay);
this.ReplayCheckedCommand = new VCommand(this.ReplayChecked); this.ReplayCheckedCommand = new VCommand(this.ReplayChecked);
this.ReplayUncheckedCommand = new VCommand(this.ReplayUnchecked); this.ReplayUncheckedCommand = new VCommand(this.ReplayUnchecked);
this.SliderValueChangedCommand = new VCommand(this.SliderValueChanged); //this.SliderValueChangedCommand = new VCommand(this.SliderValueChanged);
//Replay Start //Replay Start
this.ReplayStartCommand = new VCommand(this.ReplayStart); this.ReplayStartCommand = new VCommand(this.ReplayStart);
//Replay Stop //Replay Stop
...@@ -963,17 +964,17 @@ namespace VIZ.FGOUT.Module ...@@ -963,17 +964,17 @@ namespace VIZ.FGOUT.Module
//ApplicationDomainEx.MessageManager.Send(replayModel); //ApplicationDomainEx.MessageManager.Send(replayModel);
} }
public VCommand SliderValueChangedCommand { get; set; } //public VCommand SliderValueChangedCommand { get; set; }
private int _initialValue = 150; //private int _initialValue = 150;
private void SliderValueChanged() //private void SliderValueChanged()
{ //{
if (_initialValue != SliderValue) // if (_initialValue != SliderValue)
{ // {
_initialValue = SliderValue; // _initialValue = SliderValue;
var replayModel = new ReplayModel() { IsReplay = true, IsSliderValueChanged = true, SliderValue = SliderValue }; // var replayModel = new ReplayModel() { IsReplay = true, IsSliderValueChanged = true, SliderValue = SliderValue };
ApplicationDomain.MessageManager.Send(replayModel); // ApplicationDomain.MessageManager.Send(replayModel);
} // }
} //}
private bool _replayIsChecked = false; private bool _replayIsChecked = false;
public bool ReplayIsChecked public bool ReplayIsChecked
...@@ -992,7 +993,7 @@ namespace VIZ.FGOUT.Module ...@@ -992,7 +993,7 @@ namespace VIZ.FGOUT.Module
{ {
ReplaySendVisibility = Visibility.Visible; ReplaySendVisibility = Visibility.Visible;
SliderVisibility = Visibility.Visible; SliderVisibility = Visibility.Visible;
SliderValue = SliderMaxValue; //SliderValue = SliderMaxValue;
var replayModel = new ReplayModel(); var replayModel = new ReplayModel();
replayModel.IsReplay = true; replayModel.IsReplay = true;
replayModel.IsReplayStarted = true; replayModel.IsReplayStarted = true;
...@@ -1038,7 +1039,7 @@ namespace VIZ.FGOUT.Module ...@@ -1038,7 +1039,7 @@ namespace VIZ.FGOUT.Module
SliderVisibility = Visibility.Hidden; SliderVisibility = Visibility.Hidden;
var replayModel = new ReplayModel() { IsReplay = false }; var replayModel = new ReplayModel() { IsReplay = false };
ApplicationDomain.MessageManager.Send(replayModel); ApplicationDomain.MessageManager.Send(replayModel);
_initialValue = SliderMaxValue; //_initialValue = SliderMaxValue;
StartTime = 0; StartTime = 0;
EndTime = 0; EndTime = 0;
...@@ -1577,12 +1578,12 @@ namespace VIZ.FGOUT.Module ...@@ -1577,12 +1578,12 @@ namespace VIZ.FGOUT.Module
set { _sliderVisibility = value; this.RaisePropertyChanged(nameof(SliderVisibility)); } set { _sliderVisibility = value; this.RaisePropertyChanged(nameof(SliderVisibility)); }
} }
private int _sliderValue; //private int _sliderValue;
public int SliderValue //public int SliderValue
{ //{
get => (int)_sliderValue; // get => (int)_sliderValue;
set { _sliderValue = value; this.RaisePropertyChanged(nameof(SliderValue)); } // set { _sliderValue = value; this.RaisePropertyChanged(nameof(SliderValue)); }
} //}
private int _sliderStartValue = 0; private int _sliderStartValue = 0;
public int SliderStartValue public int SliderStartValue
...@@ -1651,13 +1652,12 @@ namespace VIZ.FGOUT.Module ...@@ -1651,13 +1652,12 @@ namespace VIZ.FGOUT.Module
set { _sliderValue2 = value; this.RaisePropertyChanged(nameof(SliderValue2)); } set { _sliderValue2 = value; this.RaisePropertyChanged(nameof(SliderValue2)); }
} }
private int _sliderMaxValue = 500; //private int _sliderMaxValue = 500;
public int SliderMaxValue //public int SliderMaxValue
{ //{
get => (int)_sliderMaxValue; // get => (int)_sliderMaxValue;
set { _sliderMaxValue = value; this.RaisePropertyChanged(nameof(SliderMaxValue)); } // set { _sliderMaxValue = value; this.RaisePropertyChanged(nameof(SliderMaxValue)); }
} //}
private bool _startIsChecked; private bool _startIsChecked;
/// <summary> /// <summary>
......
...@@ -379,8 +379,7 @@ namespace VIZ.FGOUT.Module ...@@ -379,8 +379,7 @@ namespace VIZ.FGOUT.Module
info.DrawingBorderColor = this.TRACKING_BOX_BORDER_COLOR; info.DrawingBorderColor = this.TRACKING_BOX_BORDER_COLOR;
//把选中框的信息也加到这个集合里 //把选中框的信息也加到这个集合里
_cam3Infos.Add(info); _cam3Infos.Add(info);
//_cam3Infos.Add(view3.saveInfo); //view3.video.UpdateTrackingBox(new List<TrackingBoxInfo>(){ info });
view3.video.UpdateTrackingBox(new List<TrackingBoxInfo>(){ info });
} }
} }
//先清除跟踪框 //先清除跟踪框
...@@ -537,6 +536,8 @@ namespace VIZ.FGOUT.Module ...@@ -537,6 +536,8 @@ namespace VIZ.FGOUT.Module
public class FrameBuffer public class FrameBuffer
{ {
#region 注释的代码
//private Queue<Mat> buffer; //private Queue<Mat> buffer;
//private int bufferSize; //private int bufferSize;
//private TimeSpan bufferDuration; //private TimeSpan bufferDuration;
...@@ -563,6 +564,8 @@ namespace VIZ.FGOUT.Module ...@@ -563,6 +564,8 @@ namespace VIZ.FGOUT.Module
// return buffer; // return buffer;
//} //}
#endregion
private Queue<MatExtend> buffer; private Queue<MatExtend> buffer;
private int bufferSize; private int bufferSize;
private TimeSpan bufferDuration; private TimeSpan bufferDuration;
...@@ -597,6 +600,8 @@ namespace VIZ.FGOUT.Module ...@@ -597,6 +600,8 @@ namespace VIZ.FGOUT.Module
public long TimeStamp { get; set; } public long TimeStamp { get; set; }
} }
#region 注释的代码
//public class FrameBuffer //public class FrameBuffer
//{ //{
// private Queue<DataStreamExtend> buffer; // private Queue<DataStreamExtend> buffer;
...@@ -625,4 +630,6 @@ namespace VIZ.FGOUT.Module ...@@ -625,4 +630,6 @@ namespace VIZ.FGOUT.Module
// return buffer; // return buffer;
// } // }
//} //}
#endregion
} }
...@@ -100,7 +100,7 @@ namespace VIZ.FGOUT.Module ...@@ -100,7 +100,7 @@ namespace VIZ.FGOUT.Module
DependencyProperty.Register(nameof(Minimum), typeof(int), typeof(SliderArrange), new PropertyMetadata(_min)); DependencyProperty.Register(nameof(Minimum), typeof(int), typeof(SliderArrange), new PropertyMetadata(_min));
/// <summary> /// <summary>
/// 最大值,默认为100 /// 最大值,默认为500
/// </summary> /// </summary>
public int Maximum public int Maximum
{ {
...@@ -121,7 +121,7 @@ namespace VIZ.FGOUT.Module ...@@ -121,7 +121,7 @@ namespace VIZ.FGOUT.Module
DependencyProperty.Register(nameof(StartValue), typeof(int), typeof(SliderArrange)); DependencyProperty.Register(nameof(StartValue), typeof(int), typeof(SliderArrange));
/// <summary> /// <summary>
/// 选中结束值,默认为100 /// 选中结束值,默认为500
/// </summary> /// </summary>
public int EndValue public int EndValue
{ {
......
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9CB04D08D8547EFF26DD2E9EA28C48C8E4D8A6BC58D64B84670B83011A002669" #pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "17FE220AD980A726BEEBAB4819C71DFB53C9A7CAAE07A0EF18ACDBB808871D30"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// 此代码由工具生成。 // 此代码由工具生成。
......
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9CB04D08D8547EFF26DD2E9EA28C48C8E4D8A6BC58D64B84670B83011A002669" #pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "17FE220AD980A726BEEBAB4819C71DFB53C9A7CAAE07A0EF18ACDBB808871D30"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// 此代码由工具生成。 // 此代码由工具生成。
......
This source diff could not be displayed because it is too large. You can view the blob instead.
2024-04-01 14:48:11,560 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"signal":"auto_Place","start":[],"end":[],"ignore":[],"timecode":0} 2024-04-02 17:24:49,147 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-04-02 17:24:49,329 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-04-02 17:24:49,566 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + Alt + A
2024-04-02 17:27:08,200 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:08,249 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:27:10,724 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:10,725 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:27:11,176 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:11,180 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:27:12,133 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:12,137 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:27:12,529 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:12,531 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:27:15,144 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:15,147 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:27:15,610 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:15,611 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:27:16,344 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:16,347 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:27:16,835 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:16,838 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:27:17,480 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:17,481 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:27:17,955 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:17,958 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:27:18,567 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:18,571 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:27:19,002 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:19,003 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:27:19,512 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:19,512 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:27:19,967 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:19,968 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:27:23,522 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:23,525 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:27:23,963 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:23,964 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:27:26,500 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:26,503 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:27:26,869 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:26,872 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:27:29,185 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:29,187 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:27:29,594 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:27:29,595 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:27:34,342 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-04-02 17:27:34,533 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl +
2024-04-02 17:27:34,568 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + A
2024-04-02 17:27:50,518 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:28:28,407 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:28:28,470 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:28:29,862 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-04-02 17:28:30,730 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:28:30,731 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:28:31,165 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:28:31,177 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:28:31,833 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:28:31,835 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:28:32,211 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:28:32,213 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:28:33,071 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:28:33,073 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:28:33,440 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:28:33,441 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:28:35,178 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:28:35,181 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:28:35,792 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:28:35,795 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:30:52,467 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:30:52,506 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:30:53,514 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-04-02 17:32:20,748 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:32:33,089 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Down
2024-04-02 17:41:28,539 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:45:59,425 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:45:59,471 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:46:01,958 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-04-02 17:47:05,809 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:47:05,850 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:47:07,066 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-04-02 17:47:22,140 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:47:22,143 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:47:22,566 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:47:22,567 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:47:23,132 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:47:23,135 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:47:23,549 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:47:23,550 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:47:23,990 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:47:23,992 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:47:24,388 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:47:24,390 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:47:24,848 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:47:24,851 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:47:25,205 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:47:25,208 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:47:50,554 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:47:50,595 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:47:51,540 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:47:51,541 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:48:09,699 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:48:09,746 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:48:10,486 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:48:10,487 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":0}
2024-04-02 17:48:11,025 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-04-02 17:49:55,158 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:R
2024-04-02 17:49:55,199 [1] INFO VIZ.Framework.Connection.UdpEndpointManagerExpand - 发送UDPJosn串:{"type":"REPLAY","start_time":0,"end_time":0,"status":1}
2024-04-02 17:49:56,230 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-04-02 17:50:00,708 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-04-02 17:50:00,859 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:
2024-04-02 17:50:01,129 [1] INFO VIZ.FGOUT.Module.NDIMainViewModel - 快捷键:Ctrl + Alt + A
...@@ -104,6 +104,6 @@ ALGORITHM_ClearTrackingBox_TIME=1000 ...@@ -104,6 +104,6 @@ ALGORITHM_ClearTrackingBox_TIME=1000
ALGORITHM_ReconfirmAutoSend_TIME=3000 ALGORITHM_ReconfirmAutoSend_TIME=3000
[Stream] [Stream]
;音视频流的缓存时间(单位:秒) ;音视频流的缓存时间(单位:秒)
STREAM_CACHEED_TIME=20 STREAM_CACHEED_TIME=10
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment