Skip to content

MediaTransformationResult

Defined in: .pnpm-home/store/v11/links/@cloudflare/workers-types/4.20251118.0/2891147a4db443bf13ca098dcb7381fb6bac5793758b7fd187ebaf5bc0deb969/node_modules/@cloudflare/workers-types/index.ts:9011

Result of a media transformation operation. Provides multiple ways to access the transformed media content.

contentType(): string

Defined in: .pnpm-home/store/v11/links/@cloudflare/workers-types/4.20251118.0/2891147a4db443bf13ca098dcb7381fb6bac5793758b7fd187ebaf5bc0deb969/node_modules/@cloudflare/workers-types/index.ts:9026

Returns the MIME type of the transformed media.

string

The content type string (e.g., ‘image/jpeg’, ‘video/mp4’)


media(): ReadableStream<Uint8Array<ArrayBufferLike>>

Defined in: .pnpm-home/store/v11/links/@cloudflare/workers-types/4.20251118.0/2891147a4db443bf13ca098dcb7381fb6bac5793758b7fd187ebaf5bc0deb969/node_modules/@cloudflare/workers-types/index.ts:9016

Returns the transformed media as a readable stream of bytes.

ReadableStream<Uint8Array<ArrayBufferLike>>

A stream containing the transformed media data


response(): Response

Defined in: .pnpm-home/store/v11/links/@cloudflare/workers-types/4.20251118.0/2891147a4db443bf13ca098dcb7381fb6bac5793758b7fd187ebaf5bc0deb969/node_modules/@cloudflare/workers-types/index.ts:9021

Returns the transformed media as an HTTP response object.

Response

The transformed media as a Response, ready to store in cache or return to users