diff --git a/yt_dlp/extractor/tiktok.py b/yt_dlp/extractor/tiktok.py index ca1225ed6..e1598ce88 100644 --- a/yt_dlp/extractor/tiktok.py +++ b/yt_dlp/extractor/tiktok.py @@ -910,6 +910,8 @@ def _real_extract(self, url): return self._parse_aweme_video_web(video_data, url, video_id) elif status == 10216: raise ExtractorError('This video is private', expected=True) + elif status == 10204: + raise ExtractorError('This post is unavailable in your region', expected=True) raise ExtractorError(f'Video not available, status code {status}', video_id=video_id)