diff --git a/spotdl/providers/audio/piped.py b/spotdl/providers/audio/piped.py index 64a8f61d9..06d2ce007 100644 --- a/spotdl/providers/audio/piped.py +++ b/spotdl/providers/audio/piped.py @@ -107,7 +107,7 @@ def get_results(self, search_term: str, **kwargs) -> List[Result]: params["filter"] = "music_videos" response = self.session.get( - "https://pipedapi.kavin.rocks/search", + "https://piped.video/search", params=params, headers=HEADERS, timeout=20, @@ -162,7 +162,7 @@ def get_download_metadata(self, url: str, download: bool = False) -> Dict: url_id = url.split("?v=")[1] piped_response = requests.get( - f"https://pipedapi.kavin.rocks/streams/{url_id}", + f"https://piped.video/streams/{url_id}", timeout=10, proxies=GlobalConfig.get_parameter("proxies"), )