You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let task2 =VideoConversionJobSettings(forFile: file2)
337
+
.format(.mp4)
338
+
.quality(.lightest)
339
+
340
+
uploadcare.convertVideosWithSettings([task1, task2]) { (response, error) in
341
+
iflet error = error {
342
+
print(error)
343
+
return
344
+
}
345
+
346
+
print(response)
347
+
}
348
+
```
349
+
350
+
Alternatively you can pass custom "paths" param as array of strings (see ([documentation](https://uploadcare.com/docs/transformations/video_encoding/#process-url-formatting?utm_source=github&utm_medium=referral&utm_campaign=uploadcare-swift))):
351
+
352
+
```swift
353
+
uploadcare.convertVideos([":uuid/video/-/format/ogg/"]) { (response, error) in
0 commit comments