calculate_file_hash
Generate OpenSubtitles hash for local movie files to enable subtitle search and download based on file content identification.
Instructions
Calculate OpenSubtitles hash for local movie files
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | Path to the movie file |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"file_path": {
"description": "Path to the movie file",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}