html_extract_resources
Extract images, videos, and links from HTML files and save them to a specified directory, enabling efficient resource management for document processing tasks.
Instructions
Extract all resources (images, videos, links) from HTML
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputPath | Yes | Path to the input HTML file | |
outputDir | Yes | Directory where resources should be saved |
Input Schema (JSON Schema)
{
"properties": {
"inputPath": {
"description": "Path to the input HTML file",
"type": "string"
},
"outputDir": {
"description": "Directory where resources should be saved",
"type": "string"
}
},
"required": [
"inputPath",
"outputDir"
],
"type": "object"
}