Hello,
I'm trying to write a linkcrawler to work with Bunkr, mostly because they keep changing their domain which breaks the plugin each time and I don't want to wait months for a plugin update. It will pick up the file, but result in unknown error. If I go into the page source and copy the link that I'm trying to scrape, jdownloader will download it without a problem.
This is what I have so far, and all my testing tools like regex101.com says it should worker and I can't figure out why.
The webpage:
Code:
**External links are only visible to Support Staff**
Target: the media-files8 number always changes depending on the file.
Code:
<source src="**External links are only visible to Support Staff** type="video/mp4" />
My linkcrawler:
Code:
{
"enabled": true,
"logging": false,
"maxDecryptDepth": 1,
"name": "example rule for bunkr.la",
"pattern": "https?://bunkr\\.la/v/([^\"]+)",
"rule": "DEEPDECRYPT",
"packageNamePattern": null,
"deepPattern": "source src=\"(https?://[^\"]+)\" type=\"video/[^\"]+\" />"
}
Any help/insight would be appreciated. It's like

trying to figure out why this won't work when it works for other websites.