(transcode())
Operations related to transcode api
- create - Transcode a video
POST /transcode
transcodes a video file and uploads the results to the
specified storage service.
Transcoding is asynchronous so you will need to check the status of the
task in order to determine when transcoding is complete. The id
field
in the response is the unique ID for the transcoding Task
. The task
status can be queried using the GET tasks
endpoint:
When status.phase
is completed
, transcoding will be complete and
the results will be stored in the storage service and the specified
output location.
The results will be available under params.outputs.hls.path
and
params.outputs.mp4.path
in the specified storage service.
This endpoint currently supports the following inputs:
- HTTP
- S3 API Compatible Service
HTTP
A public HTTP URL can be used to read a video file.
{
"url": "https://www.example.com/video.mp4"
}
Name | Type | Description |
---|---|---|
url | string | A public HTTP URL for the video file. |
Note: For IPFS HTTP gateway URLs, the API currently only supports “path
style” URLs and does not support “subdomain style” URLs. The API will
support both styles of URLs in a future update.
S3 API Compatible Service
S3 credentials can be used to authenticate with a S3 API compatible
service to read a video file.
{
"type": "s3",
"endpoint": "https://gateway.storjshare.io",
"credentials": {
"accessKeyId": "$ACCESS_KEY_ID",
"secretAccessKey": "$SECRET_ACCESS_KEY"
},
"bucket": "inbucket",
"path": "/video/source.mp4"
}
This endpoint currently supports the following storage services:
- S3 API Compatible Service
- Web3 Storage
S3 API Compatible Service
{
"type": "s3",
"endpoint": "https://gateway.storjshare.io",
"credentials": {
"accessKeyId": "$ACCESS_KEY_ID",
"secretAccessKey": "$SECRET_ACCESS_KEY"
},
"bucket": "mybucket"
}
Web3 Storage
{
"type": "web3.storage",
"credentials": {
"proof": "$UCAN_DELEGATION_PROOF",
}
}
This endpoint currently supports the following output types:
- HLS
- MP4
HLS
{
"hls": {
"path": "/samplevideo/hls"
}
}
MP4
{
"mp4": {
"path": "/samplevideo/mp4"
}
}
package hello.world;
import java.lang.Exception;
import java.util.List;
import studio.livepeer.livepeer.Livepeer;
import studio.livepeer.livepeer.models.components.Fmp4;
import studio.livepeer.livepeer.models.components.Hls;
import studio.livepeer.livepeer.models.components.Input1;
import studio.livepeer.livepeer.models.components.Input;
import studio.livepeer.livepeer.models.components.Mp4;
import studio.livepeer.livepeer.models.components.Outputs;
import studio.livepeer.livepeer.models.components.Storage1;
import studio.livepeer.livepeer.models.components.StorageCredentials;
import studio.livepeer.livepeer.models.components.StorageType;
import studio.livepeer.livepeer.models.components.TranscodePayload;
import studio.livepeer.livepeer.models.components.TranscodePayloadStorage;
import studio.livepeer.livepeer.models.components.TranscodeProfile;
import studio.livepeer.livepeer.models.components.TranscodeProfileEncoder;
import studio.livepeer.livepeer.models.components.TranscodeProfileProfile;
import studio.livepeer.livepeer.models.errors.SDKError;
import studio.livepeer.livepeer.models.operations.TranscodeVideoResponse;
public class Application {
public static void main(String[] args) throws Exception {
try {
Livepeer sdk = Livepeer.builder()
.apiKey("<YOUR_BEARER_TOKEN_HERE>")
.build();
TranscodePayload req = TranscodePayload.builder()
.input(Input.of(Input1.builder()
.url("https://s3.amazonaws.com/bucket/file.mp4")
.build()))
.storage(TranscodePayloadStorage.of(Storage1.builder()
.type(StorageType.S3)
.endpoint("https://gateway.storjshare.io")
.bucket("outputbucket")
.credentials(StorageCredentials.builder()
.accessKeyId("AKIAIOSFODNN7EXAMPLE")
.secretAccessKey("wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY")
.build())
.build()))
.outputs(Outputs.builder()
.hls(Hls.builder()
.path("/samplevideo/hls")
.build())
.mp4(Mp4.builder()
.path("/samplevideo/mp4")
.build())
.fmp4(Fmp4.builder()
.path("/samplevideo/fmp4")
.build())
.build())
.profiles(List.of(
TranscodeProfile.builder()
.bitrate(3000000L)
.width(1280L)
.name("720p")
.height(720L)
.quality(23L)
.fps(30L)
.fpsDen(1L)
.gop("2")
.profile(TranscodeProfileProfile.H264_BASELINE)
.encoder(TranscodeProfileEncoder.H264)
.build()))
.build();
TranscodeVideoResponse res = sdk.transcode().create()
.request(req)
.call();
if (res.task().isPresent()) {
// handle response
}
} catch (SDKError e) {
// handle exception
throw e;
} catch (Exception e) {
// handle exception
throw e;
}
}
}
Parameter | Type | Required | Description |
---|---|---|---|
request |
TranscodePayload | ✔️ | The request object to use for the request. |
Error Object | Status Code | Content Type |
---|---|---|
models/errors/SDKError | 4xx-5xx | */* |