Codemaru 1.0.0.0
QR 코드, 모바일 랜딩 페이지, vCard 연락처 저장과 명함 디자인을 한 화면에서 제공하는 디지털 명함 서비스입니다.
로딩중...
검색중...
일치하는것 없음
FfmpegOptions.cs
이 파일의 문서화 페이지로 가기
1
5
6namespace Codemaru.Models
7{
16 public sealed class FfmpegOptions
17 {
26 public string Path { get; set; } = @"C:\ffmpeg\bin\ffmpeg.exe";
27
36 public string OutputRoot { get; set; } = @"wwwroot\hls";
37
46 public int HlsSegmentSeconds { get; set; } = 2;
47
56 public int HlsListSize { get; set; } = 6;
57
66 public int WatchdogIntervalSeconds { get; set; } = 2;
67
76 public int WatchdogIdleSeconds { get; set; } = 0;
77
86 public string VideoCodec { get; set; } = "libx264";
87
96 public string AudioCodec { get; set; } = "an";
97
106 public string AudioBitrate { get; set; } = "96k";
107
116 public int AudioRate { get; set; } = 48000;
117
126 public int AudioChannels { get; set; } = 2;
127 }
128
137 public sealed class StreamConfig
138 {
147 public string Name { get; set; } = "front";
148
157 public string RtspUrl { get; set; } = "";
158
167 public string? VideoCodec { get; set; }
168
177 public string? AudioCodec { get; set; }
178 }
179}