From 13077c0c96097c2ba6493ceb26eb04df0b5d7ce3 Mon Sep 17 00:00:00 2001 From: palewire Date: Sun, 7 Aug 2022 08:17:19 -0700 Subject: [PATCH] Add _GEO_COUNTRIES = ['US'] --- youtube_dl/extractor/truth.py | 1 + 1 file changed, 1 insertion(+) diff --git a/youtube_dl/extractor/truth.py b/youtube_dl/extractor/truth.py index 5a5311eeb..0f5b044f0 100644 --- a/youtube_dl/extractor/truth.py +++ b/youtube_dl/extractor/truth.py @@ -38,6 +38,7 @@ class TruthIE(InfoExtractor): }, }, ] + _GEO_COUNTRIES = ['US'] # The site is only available in the US def _real_extract(self, url): video_id = self._match_id(url)