run_shaka_packager
Process and package video files for streaming by executing custom Shaka Packager commands. Supports HLS and DASH formats for optimized video delivery.
Instructions
Run a custom Shaka Packager command.
Args:
file_path: Path to the uploaded video file.
command_args: Additional arguments to pass to the shaka-packager command.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command_args | Yes | ||
file_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"command_args": {
"title": "Command Args",
"type": "string"
},
"file_path": {
"title": "File Path",
"type": "string"
}
},
"required": [
"file_path",
"command_args"
],
"title": "run_shaka_packagerArguments",
"type": "object"
}