uploadcare_client 4.0.0
uploadcare_client: ^4.0.0 copied to clipboard
A dart library for working with Uploadcare REST API. File uploads, media processing, and adaptive delivery for web and mobile.
Uploadcare Client #
!!! IMPORTANT !!!
Release of uploadcare_client@^3.0.0
has breaking changes. Null safety
was introduced. The library has been split into 2 packages, this package can be used in non-flutter environments (web, server, .etc) and for use with flutter please install only uploadcare_flutter@^1.0.0
which has this package as a dependency, see. see.
Limitations #
- It's impossible to use
AuthSchemeRegular
auth scheme on theweb
with fetch API becauseDate
request header is forbidden for XMLRequest https://fetch.spec.whatwg.org/#forbidden-header-name. - It's impossible to run the upload process in the separate isolate on the
web
environment.
Introduction #
Uploadcare is a complete file handling platform that helps you ship products faster and focus on your business goals, not files. With Uploadcare, you can build infrastructure, optimize content, conversions, load times, traffic, and user experience. Read more...
Implemented features:
- authorization
- upload, read more
- base
- multipart
- from url
- signed uploads, read more
- cancellable upload
- upload in isolate
- files API, read more
- get one file
- get list of files
- remove multiple files
- store multiple files
- gif to video, read more
- face recognition, read more
- object recognition, read more
- groups API
- get one group
- get list of groups
- create group
- store all files in group
- video encoding, read more
- create processing tasks
- retrieve processing status
- CDN API
Roadmap:
- code improuvements
- new transformation api
- document conversion
Example: #
Note: you can omit privateKey
, but in this case only Upload API will be available. (CDN API also will be available).
How to use library:
// create client with simple auth scheme
final client = UploadcareClient.withSimpleAuth(
publicKey: 'UPLOADCARE_PUBLIC_KEY',
privateKey: 'UPLOADCARE_PRIVATE_KEY',
apiVersion: 'v0.5',
);
// or create client with reqular auth scheme
final client = UploadcareClient.withRegularAuth(
publicKey: 'UPLOADCARE_PUBLIC_KEY',
privateKey: 'UPLOADCARE_PRIVATE_KEY',
apiVersion: 'v0.5',
);
// or more flexible
final client = UploadcareClient(
options: ClientOptions(
authorizationScheme: AuthSchemeRegular(
apiVersion: 'v0.5',
publicKey: 'UPLOADCARE_PUBLIC_KEY',
privateKey: 'UPLOADCARE_PRIVATE_KEY',
),
// rest options...
),
);
UploadcareClient
has at the moment 4 API section
final ApiUpload upload;
final ApiFiles files;
final ApiVideoEncoding videoEncoding;
final ApiGroups groups;
You can use each api section separately, for example:
final options = ClientOptions(
authorizationScheme: AuthSchemeRegular(
apiVersion: 'v0.5',
publicKey: 'UPLOADCARE_PUBLIC_KEY',
privateKey: 'UPLOADCARE_PRIVATE_KEY',
)
);
final upload = ApiUpload(options: options);
final fileId = await upload.base(SharedFile(File('...some/file')));
// ...etc.
Cancellation #
You can cancel the upload process by using CancelToken
, each method from the upload section (auto, base, multipart
) accepts cancelToken
property, which you can use to cancel the upload process. This feature works only with files upload because Uploadcare isn't supporting interrupt upload by URL
...
final cancelToken = CancelToken();
...
try {
final fileId = await client.upload.multipart(
SharedFile(File('/some/file')),
cancelToken: cancelToken,
);
} on CancelUploadException catch (e) {
// cancelled
}
...
// somewhere in code
cancelToken.cancel();
Gif to video #
final file = CdnFile('gif-id-1')
..transform(GifToVideoTransformation([
VideoFormatTransformation(VideoFormatTValue.Mp4),
QualityTransformation(QualityTValue.Best),
]));
...
VideoPlayerController.network(file.url);
Video encoding #
...
final videoEncoding = ApiVideoEncoding(options);
final VideoEncodingConvertEntity result = await videoEncoding.process({
'video-id-1': [
CutTransformation(
const Duration(seconds: 10),
length: const Duration(
seconds: 30,
),
)
],
'video-id-2': [
VideoResizeTransformation(const Size(512, 384)),
VideoThumbsGenerateTransformation(10),
],
});
final Stream<VideoEncodingJobEntity> processingStream = videoEncoding.statusAsStream(
result.results.first.token,
checkInterval: const Duration(seconds: 2),
)..listen((VideoEncodingJobEntity status) {
// do something
})
Upload in isolates #
final client = UploadcareClient(
options: ClientOptions(
// setup max concurrent running isolates
maxIsolatePoolSize: 3,
authorizationScheme: AuthSchemeSimple(
apiVersion: 'v0.5',
publicKey: env['UPLOADCARE_PUBLIC_KEY'],
),
),
);
final id = await client.upload.auto(
SharedFile(File('/some/file')),
runInIsolate: true,
);
Face Recognition #
final files = ApiFiles(options: options);
final FacesEntity entity = await files.detectFacesWithOriginalImageSize('image-id');
Object Recognition #
final files = ApiFiles(options: options);
// With one file
final FileInfoEntity file = await files.file('image-id', includeRecognitionInfo: true);
// With list of files
final ListEntity<FileInfoEntity> list = await files.list(includeRecognitionInfo: true);