diff --git a/youtube_dl/extractor/matter.py b/youtube_dl/extractor/matter.py
index 1d2db7451..fb47bbff0 100644
--- a/youtube_dl/extractor/matter.py
+++ b/youtube_dl/extractor/matter.py
@@ -22,19 +22,19 @@ class MatterIE(InfoExtractor):
"https://api.matter.online/api/v1/open-graph/tracks/%s/embedded" % track_id, track_id
)
- author = self._html_search_regex(
+ author = self._search_regex(
r'([^<]+)',
webpage, "author"
)
- title = self._html_search_regex(
+ title = self._search_regex(
r'([^<]+)',
webpage, "title"
)
- download_url = self._html_search_regex(
+ download_url = self._search_regex(
r'',
webpage, "download_url"
)
- artwork = self._html_search_regex(
+ artwork = self._search_regex(
r'style="background: url\((https://matter-production.s3.amazonaws.com/images/[^\.]+\.[^\)]+)\)',
webpage, "artwork"
)