-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathQueueMediaTransforms.cs
329 lines (256 loc) · 10.2 KB
/
QueueMediaTransforms.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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using ServiceStack.Jobs;
namespace AiServer.ServiceModel;
[ValidateApiKey]
[Tag(Tags.Media)]
[Api("Scale video")]
public class QueueScaleVideo : IQueueMediaTransform, IReturn<QueueMediaTransformResponse>
{
[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 = "Optional queue or topic to reply to")]
public string? ReplyTo { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[ValidateApiKey]
[Tag(Tags.Media)]
[Api("Watermark video")]
public class QueueWatermarkVideo : IQueueMediaTransform, IReturn<QueueMediaTransformResponse>
{
[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 = "Optional queue or topic to reply to")]
public string? ReplyTo { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
public interface IQueueMediaTransform
{
public string? RefId { get; set; }
public string? Tag { get; set; }
public string? ReplyTo { get; set; }
}
public class QueueMediaTransformResponse
{
[ApiMember(Description = "Unique identifier of the background job")]
public long JobId { get; set; }
[ApiMember(Description = "Client-provided identifier for the request")]
public string RefId { get; set; }
[ApiMember(Description = "Current state of the background job")]
public BackgroundJobState JobState { get; set; }
[ApiMember(Description = "Current status of the transformation request")]
public string? Status { get; set; }
[ApiMember(Description = "Detailed response status information")]
public ResponseStatus? ResponseStatus { get; set; }
[ApiMember(Description = "URL to check the status of the request")]
public string StatusUrl { get; set; }
}
[Tag(Tags.Media)]
[ValidateApiKey]
public class QueueConvertImage : IQueueMediaTransform, IPost, IReturn<QueueMediaTransformResponse>
{
[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 = "Optional queue or topic to reply to")]
public string? ReplyTo { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[Tag(Tags.Media)]
[ValidateApiKey]
public class QueueCropImage : IQueueMediaTransform, IPost, IReturn<QueueMediaTransformResponse>
{
[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 = "Optional queue or topic to reply to")]
public string? ReplyTo { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[Tag(Tags.Media)]
[ValidateApiKey]
public class QueueWatermarkImage : IQueueMediaTransform, IPost, IReturn<QueueMediaTransformResponse>
{
[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 = "The opacity of the watermark (0.0 to 1.0)")]
public float Opacity { get; set; } = 0.5f;
[ApiMember(Description = "Scale of the watermark relative")]
public float WatermarkScale { get; set; } = 1.0f;
[ApiMember(Description = "Optional client-provided identifier for the request")]
public string? RefId { get; set; }
[ApiMember(Description = "Optional queue or topic to reply to")]
public string? ReplyTo { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[Tag(Tags.Media)]
[ValidateApiKey]
public class QueueScaleImage : IQueueMediaTransform,IPost, IReturn<QueueMediaTransformResponse>
{
[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 = "Optional queue or topic to reply to")]
public string? ReplyTo { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[Tag(Tags.Media)]
[ValidateApiKey]
public class QueueConvertVideo : IQueueMediaTransform, IReturn<QueueMediaTransformResponse>
{
[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 = "Optional queue or topic to reply to")]
public string? ReplyTo { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[Tag(Tags.Media)]
[ValidateApiKey]
public class QueueCropVideo : IQueueMediaTransform, IReturn<QueueMediaTransformResponse>
{
[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 = "Optional queue or topic to reply to")]
public string? ReplyTo { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[Tag(Tags.Media)]
[ValidateApiKey]
public class QueueTrimVideo : IQueueMediaTransform, IReturn<QueueMediaTransformResponse>
{
[ApiMember(Description = "The start time of the trimmed video (format: HH:MM:SS)")]
[Required]
public string StartTime { get; set; }
[ApiMember(Description = "The end time of the trimmed video (format: HH: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 = "Optional queue or topic to reply to")]
public string? ReplyTo { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[Tag(Tags.Media)]
[ValidateApiKey]
public class QueueConvertAudio : IQueueMediaTransform, IReturn<QueueMediaTransformResponse>
{
[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 = "Optional queue or topic to reply to")]
public string? ReplyTo { get; set; }
[ApiMember(Description = "Tag to identify the request")]
public string? Tag { get; set; }
}
[DataContract]
public enum ConvertVideoOutputFormat
{
[EnumMember(Value = "mp4")]
MP4,
[EnumMember(Value = "avi")]
AVI,
[EnumMember(Value = "mov")]
MOV
}
[DataContract]
public enum AudioFormat
{
[EnumMember(Value = "mp3")]
MP3,
[EnumMember(Value = "wav")]
WAV,
[EnumMember(Value = "flac")]
FLAC,
[EnumMember(Value = "ogg")]
OGG,
}