Skip to content

Instantly share code, notes, and snippets.

@alex2844
Created October 24, 2024 18:16
Show Gist options
  • Save alex2844/55aae1b08e798f20890de493dac40bbe to your computer and use it in GitHub Desktop.
Save alex2844/55aae1b08e798f20890de493dac40bbe to your computer and use it in GitHub Desktop.
{
"name": "Filmix",
"plugin": "plugin.video.filmix",
"priority": 100,
"assert": {
"play_movie": [
"title", "year"
],
"play_episode": [
"showname", "season", "episode"
],
"search_movie": [
"title"
],
"search_episode": [
"showname"
]
},
"play_movie": [
"plugin://plugin.video.filmix/search?keyword={title_url}", {
"title": "(?i)^(\[.\])?.{title}.(\[.\])?$",
"year": "{year}"
}
],
"play_episode": [
"plugin://plugin.video.filmix/search?keyword={showname_url}", {
"title": "(?i)^(\[.\])?{showname}(\[.\])?$"
}, {
"return": "true",
"season": "^{season}$",
"episode": "^{episode}$"
}, {
"season": "^{season}$"
}, {
"season": "^{season}$",
"episode": "^{episode}$"
}
],
"search_movie": [
"plugin://plugin.video.filmix/search?keyword={title_url}", {
"keyboard": "{title}"
}
],
"search_episode": [
"plugin://plugin.video.filmix/search?keyword={showname_url}", {
"keyboard": "{showname}"
}
],
"is_resolvable": "true"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment