EA - TwistcasterLive Media

EA - TwistcasterLive Media was started in 2018 by a group of storm chasers. This storm chasers are a christian team of men & women who enjoy chasing storms, covering live breaking news stories, and providing news worthy stories that the public needs to know about. Safety & News Worthy Stories.

EA - TwistcasterLive Media is the first real new media television not owned by a liberal media corporation. We do not hype up media stories to feed into the lack minded media. We are here to provided real news as its happening & give you the true facts and not what we think is happening. This is a group of people who want to provide you with what's really happening in our local community area.

News, Weather, Sports & Church Related Programming. The one thing west georgia doesn't have.

Coverage Area

We Currently Cover:

  • Carroll, Haralson, Heard, Polk, Douglas Counties In Georgia
  • Cleburne & Randolph Counties In Alabama

And thank you for allowing us to be apart of your family & in your home as we promise & strive to provide you with great service.

Meet the Weather Team

Nathan Bradley

CEO

Director / Storm Tracker

David Wallis

President

Social Media Manager / Coding Specialist

Joey Pisani

Lead Meteorologist

Weather Forecasting / Analysis

Nick Carter

Lead Storm Chaser

Field Operations

TwistcasterLive Media Group

TCL Media Logo

Mandy Jenes

Storm Chaser - TCL Media

Ashley Lee

Storm Chaser - TCL Media

Jesse Perkins

Storm Chaser - TCL Media

Michael Lynn

Storm Chaser - TCL Media

Cody Knox

Storm Chaser - TCL Media

Current Weather Conditions

Georgia Counties

Carroll County

Haralson County

Heard County

Alabama Counties

Cleburne County

Randolph County

EA - TwistcasterLive Media Team Scanner

Coming Soon!

Our team scanner feature is currently under development. Check back later!

Severe Weather Audio Alerts

NOT FOR REBROADCAST - CONTACT [email protected] for licensing

Video Archive

Featured Videos

Live Stream

If no stream appears, we are currently offline. Follow our social media for notifications when we go live!

EA - TwistcasterLive Media Merchandise

Privacy Policy

Information Collection and Use

EA - TwistcasterLive Media is committed to protecting your privacy. This Privacy Policy explains how we collect, use, and safeguard your information when you visit our website.

Information We Collect

  • Basic analytics data about website usage
  • Information you voluntarily provide through contact forms
  • Technical information necessary for streaming services

How We Use Your Information

We use the collected information to:

  • Improve our website and services
  • Provide accurate weather and news information
  • Respond to your inquiries
  • Maintain the security of our services

Third-Party Services

We use third-party services including:

  • Cloudflare for website hosting and security
  • Weather data providers
  • Streaming service providers

Contact Us

If you have any questions about this Privacy Policy, please contact us through our provided contact information.

EA - TwistcasterLive Media Logo

We are proud to be a NOAA Weather-Ready Nation Ambassadorâ„¢

const tabs = document.querySelectorAll('.tab-link'); const contents = document.querySelectorAll('.tab-content'); let activeTab = null; function switchTab(targetId) { if (activeTab === targetId) return; contents.forEach(content => { content.style.display = 'none'; content.classList.remove('active'); }); tabs.forEach(tab => tab.classList.remove('active-tab')); const newTab = document.getElementById(targetId); const newTabLink = document.querySelector(`[data-tab="${targetId}"]`); if (newTab && newTabLink) { newTab.style.display = 'block'; newTab.classList.add('active'); newTabLink.classList.add('active-tab'); activeTab = targetId; history.replaceState(null, null, `#${targetId.replace('-content', '')}`); } } tabs.forEach(tab => { tab.addEventListener('click', (e) => { e.preventDefault(); e.stopPropagation(); const tabId = tab.getAttribute('data-tab'); switchTab(tabId); }, { passive: false }); }); const hash = window.location.hash.slice(1); switchTab(hash ? `${hash}-content` : 'home-content'); window.addEventListener('hashchange', () => { const hash = window.location.hash.slice(1); switchTab(hash ? `${hash}-content` : 'home-content'); });