DreamineVMS 1.0.0.0
Windows PC의 RTSP·USB 카메라 영상을 HLS로 변환해 원격 CCTV Viewer에 전달하는 데스크톱 에이전트입니다.
로딩중...
검색중...
일치하는것 없음
FfmpegOptions.cs
이 파일의 문서화 페이지로 가기
2
11public sealed class FfmpegOptions
12{
21 public string Path { get; set; } = @"C:\ffmpeg\bin\ffmpeg.exe";
22
31 public string OutputRoot { get; set; } = @"wwwroot\hls";
32
41 public bool StartOnApplicationStartup { get; set; }
42
51 public int HlsSegmentSeconds { get; set; } = 1;
52
61 public int HlsListSize { get; set; } = 4;
62
71 public int WatchdogIntervalSeconds { get; set; } = 2;
72
81 public int WatchdogIdleSeconds { get; set; }
82
91 public int RestartDelaySeconds { get; set; } = 2;
92
101 public string VideoCodec { get; set; } = "copy";
102
111 public int VideoFps { get; set; } = 10;
112
121 public int VideoMaxWidth { get; set; } = 960;
122
131 public string VideoBitrate { get; set; } = "900k";
132
141 public string VideoMaxRate { get; set; } = "1200k";
142
151 public string VideoBufferSize { get; set; } = "1800k";
152
161 public string AudioCodec { get; set; } = "an";
162
171 public string AudioBitrate { get; set; } = "32k";
172
181 public int AudioRate { get; set; } = 22050;
182
191 public int AudioChannels { get; set; } = 1;
192}