public static bool NowLive(string channelId) { var html = new MyHttpClient().Get($"https://www.youtube.com/channel/{channelId}/featured", string.Empty); return(html.Contains("Live now") || html.Contains("Live ngayon")); }