1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 13:38:04 +00:00
Files
core/homeassistant/components/media_extractor/strings.json
Joost Lekkerkerker e9894f8e91 Add extract media url service to media extractor (#100780)
* Exclude manifest files from youtube media extraction

* Add media_extractor service to extract media

* Fix snapshot

* Run ytdlp async

* Add icon

* Fix

* Fix
2024-04-16 16:13:03 +02:00

33 lines
951 B
JSON

{
"services": {
"play_media": {
"name": "Play media",
"description": "Downloads file from given URL.",
"fields": {
"media_content_id": {
"name": "Media content ID",
"description": "The ID of the content to play. Platform dependent."
},
"media_content_type": {
"name": "Media content type",
"description": "The type of the content to play. Must be one of MUSIC, TVSHOW, VIDEO, EPISODE, CHANNEL or PLAYLIST MUSIC."
}
}
},
"extract_media_url": {
"name": "Get Media URL",
"description": "Extract media url from a service.",
"fields": {
"url": {
"name": "Media URL",
"description": "URL where the media can be found."
},
"format_query": {
"name": "Format query",
"description": "Youtube-dl query to select the quality of the result."
}
}
}
}
}