Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
TEMP_DIR | No | Custom temporary directory for file uploads | |
LOG_LEVEL | No | Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) | |
VIDEO_PATH | Yes | Path to your local video directory (used for translating paths between Docker and host) | |
DOCKER_PATH | No | Docker container mount path | /projects/video-drop |
COMMAND_TIMEOUT | No | Timeout in seconds for Shaka Packager commands | 300 |
SHAKA_PACKAGER_PATH | Yes | Path to the Shaka Packager executable (highly recommended for Claude Desktop) |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
mp4_to_ts_prompt | Create a prompt to convert MP4 files to TS files. Args: file_path: Path to the uploaded video file. |
vod_hls_dash_prompt | Create a prompt to package a file for VOD (Video on Demand) in HLS and DASH formats. Args: file_path: Path to the uploaded video file. |
live_hls_dash_prompt | Create a prompt to package a file for live streaming in HLS and DASH formats. Args: file_path: Path to the uploaded video file. |
content_encryption_prompt | Create a prompt to encrypt content using Shaka Packager. Args: file_path: Path to the uploaded video file. |
ad_insertion_prompt | Create a prompt to prepare content for ad insertion using Shaka Packager. Args: file_path: Path to the uploaded video file. |
analyze_video_prompt | Create a prompt to analyze a video file using Shaka Packager. Args: file_path: Path to the uploaded video file. |
what_should_i_do_prompt | Create a prompt to suggest operations when the user provides a file path without specific instructions. Args: file_path: Path to the video file. |
command_format_reminder | Create a prompt to remind about proper Shaka Packager command format. |
error_interpretation_prompt | Create a prompt to help interpret common Shaka Packager errors. Args: error_message: The error message from Shaka Packager. file_path: Path to the video file that caused the error. |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
analyze_video | |
run_shaka_packager | |
get_shaka_documentation | |
get_shaka_options |