-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMediaTransforms.cs
270 lines (214 loc) · 8.36 KB
/
MediaTransforms.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
using ServiceStack;
using ServiceStack.DataAnnotations;
namespace AiServer.ServiceModel;
[ValidateApiKey]
[Tag(Tags.Media)]
[Api("Scale video")]
[Notes("Scale a video to specified dimensions")]
public class ScaleVideo : IMediaTransform, IReturn<ArtifactGenerationResponse>
{
[ApiMember(Description = "The video file to be scaled")]
[Required]
[Input(Type = "file")]
public string? Video { get; set; }
[ApiMember(Description = "Desired width of the scaled video")]
[Range(1, 7680)] // Assuming 8K as max resolution
public int? Width { get; set; }
[ApiMember(Description = "Desired height of the scaled video")]
[Range(1, 4320)] // Assuming 8K as max resolution
public int? Height { get; set; }
[ApiMember(Description = "Optional client-provided identifier for the request")]
public string? RefId { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[ValidateApiKey]
[Tag(Tags.Media)]
[Api("Watermark video")]
[Notes("Add a watermark to a video")]
public class WatermarkVideo : IMediaTransform, IReturn<ArtifactGenerationResponse>
{
[ApiMember(Description = "The video file to be watermarked")]
[Required]
[Input(Type = "file")]
public string? Video { get; set; }
[ApiMember(Description = "The image file to use as a watermark")]
[Required]
[Input(Type = "file")]
public string? Watermark { get; set; }
[ApiMember(Description = "Position of the watermark")]
public WatermarkPosition? Position { get; set; }
[ApiMember(Description = "Optional client-provided identifier for the request")]
public string? RefId { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
public enum WatermarkPosition
{
TopLeft,
TopRight,
BottomLeft,
BottomRight,
Center,
}
[Api("Convert an image to a different format")]
[Tag(Tags.Media)]
[ValidateApiKey]
public class ConvertImage : IMediaTransform, IPost, IReturn<ArtifactGenerationResponse>
{
[ApiMember(Description = "The image file to be converted")]
[Required]
[Input(Type = "file")]
public string? Image { get; set; }
[ApiMember(Description = "The desired output format for the converted image")]
[Required]
public ImageOutputFormat? OutputFormat { get; set; }
[ApiMember(Description = "Optional client-provided identifier for the request")]
public string? RefId { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[Api("Crop an image to a specified area")]
[Tag(Tags.Media)]
[ValidateApiKey]
public class CropImage : IMediaTransform, IPost, IReturn<ArtifactGenerationResponse>
{
[ApiMember(Description = "The X-coordinate of the top-left corner of the crop area")]
public int X { get; set; }
[ApiMember(Description = "The Y-coordinate of the top-left corner of the crop area")]
public int Y { get; set; }
[ApiMember(Description = "The width of the crop area")]
public int Width { get; set; }
[ApiMember(Description = "The height of the crop area")]
public int Height { get; set; }
[ApiMember(Description = "The image file to be cropped")]
[Required]
[Input(Type = "file")]
public string? Image { get; set; }
[ApiMember(Description = "Optional client-provided identifier for the request")]
public string? RefId { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[Api("Scale an image to a specified size")]
[Tag(Tags.Media)]
[ValidateApiKey]
public class ScaleImage : IMediaTransform, IPost, IReturn<ArtifactGenerationResponse>
{
[ApiMember(Description = "The image file to be scaled")]
[Required]
[Input(Type = "file")]
public string? Image { get; set; }
[ApiMember(Description = "Desired width of the scaled image")]
public int? Width { get; set; }
[ApiMember(Description = "Desired height of the scaled image")]
public int? Height { get; set; }
[ApiMember(Description = "Optional client-provided identifier for the request")]
public string? RefId { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[Api("Add a watermark to an image")]
[Tag(Tags.Media)]
[ValidateApiKey]
public class WatermarkImage : IMediaTransform, IPost, IReturn<ArtifactGenerationResponse>
{
[ApiMember(Description = "The image file to be watermarked")]
[Required]
[Input(Type = "file")]
public string? Image { get; set; }
[ApiMember(Description = "The position of the watermark on the image")]
public WatermarkPosition Position { get; set; }
[ApiMember(Description = "Scale of the watermark relative")]
public float WatermarkScale { get; set; } = 1.0f;
[ApiMember(Description = "The opacity of the watermark (0.0 to 1.0)")]
public float Opacity { get; set; } = 0.5f;
[ApiMember(Description = "Optional client-provided identifier for the request")]
public string? RefId { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[Api("Convert a video to a different format")]
[Tag(Tags.Media)]
[ValidateApiKey]
public class ConvertVideo : IMediaTransform, IReturn<ArtifactGenerationResponse>
{
[ApiMember(Description = "The desired output format for the converted video")]
[Required]
public ConvertVideoOutputFormat OutputFormat { get; set; }
[Required]
[Input(Type = "file")]
public string? Video { get; set; }
[ApiMember(Description = "Optional client-provided identifier for the request")]
public string? RefId { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[Api("Crop a video to a specified area")]
[Tag(Tags.Media)]
[ValidateApiKey]
public class CropVideo : IMediaTransform, IReturn<ArtifactGenerationResponse>
{
[ApiMember(Description = "The X-coordinate of the top-left corner of the crop area")]
[ValidateGreaterThan(0)]
[Required]
public int X { get; set; }
[ApiMember(Description = "The Y-coordinate of the top-left corner of the crop area")]
[ValidateGreaterThan(0)]
[Required]
public int Y { get; set; }
[ApiMember(Description = "The width of the crop area")]
[ValidateGreaterThan(0)]
[Required]
public int Width { get; set; }
[ApiMember(Description = "The height of the crop area")]
[ValidateGreaterThan(0)]
[Required]
public int Height { get; set; }
[Required]
[Input(Type = "file")]
public string? Video { get; set; }
[ApiMember(Description = "Optional client-provided identifier for the request")]
public string? RefId { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[Api("Trim a video to a specified duration via start and end times")]
[Tag(Tags.Media)]
[ValidateApiKey]
public class TrimVideo : IMediaTransform, IReturn<ArtifactGenerationResponse>
{
[ApiMember(Description = "The start time of the trimmed video (format: MM:SS)")]
[Required]
public string StartTime { get; set; }
[ApiMember(Description = "The end time of the trimmed video (format: MM:SS)")]
public string? EndTime { get; set; }
[Required]
[Input(Type = "file")]
public string? Video { get; set; }
[ApiMember(Description = "Optional client-provided identifier for the request")]
public string? RefId { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[Api("Convert an audio file to a different format")]
[Tag(Tags.Media)]
[ValidateApiKey]
public class ConvertAudio : IMediaTransform, IReturn<ArtifactGenerationResponse>
{
[ApiMember(Description = "The desired output format for the converted audio")]
[Required]
public AudioFormat OutputFormat { get; set; }
[Required]
[Input(Type = "file")]
public string? Audio { get; set; }
[ApiMember(Description = "Optional client-provided identifier for the request")]
public string? RefId { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
public interface IMediaTransform
{
public string? RefId { get; set; }
public string? Tag { get; set; }
}