IPTV Stream Checker is a command-line tool originally by NewsGuyTor designed to check the status of channels in an IPTV M3U8 playlist. It verifies if the streams are alive, captures screenshots, provides detailed information about video and audio streams, and identifies any potential issues like low framerates or mislabeled channels.
It also has some minor additions by Ron Mexico to include bitrate on channels utilizing ffmpeg to profile a channel over 10 seconds to capture an average variable bit-rate (VBR).
- Check Stream Status: Verify if IPTV streams are alive or dead.
- Split Playlist: Split into separate playlists for working and dead channels.
- Capture Screenshots: Capture screenshots from live streams.
- Group Filter: Option to check specific groups within the M3U8 playlist.
- Channel Name Filter: Option to check specific channels within the M3U8 playlist based on their name.
- Detailed Stream Info: Retrieve and display video codec, resolution, framerate, and audio bitrate.
- Low Framerate Detection: Identifies and lists channels with framerates at 30fps or below.
- Mislabeled Channel Detection: Detects channels with resolutions that do not match their labels (e.g., "1080p" labeled as "4K").
- Custom User-Agent: Ron Mexico's version uses VLC as the user agent for HTTP requests.
- BitRate Average Calculator: Added by Ron Mexico, this will now profile and add an average of the variable bit-rate of the channel (VBR) utilizing ffmpeg to profile it over 10 seconds.
- Python 3.6+
- ffmpeg and ffprobe: Required for capturing screenshots and retrieving stream information.
git clone https://github.com/sudo-ronmexico/IPTVChecker-BitRate.git
cd IPTVChecker-BitRate pip install -r requirements.txtpython IPTV_checker.py /path/to/your/playlist.m3u8-groupor-g: Specify a group title to check within the playlist.-channel_searchor-c: Specify a search term for channel names. Based on https://docs.python.org/3/library/re.html#re.search syntax. Case Insensitive.-outputor-o: Output file path e.g. ~/output/results.csv.-timeoutor-t: Set a timeout in seconds for checking the channel status.-extendedor-e [seconds]: Enable an extended timeout check for channels detected as dead. If specified without a value, defaults to 10 seconds. This option allows you to retry dead channels with a longer timeout.-splitor-s: Create separate playlists for working and dead channels.-renameor-r: Rename alive channels to include video and audio information in the playlist.-skip_screenshots: Skip capturing screenshots.-v: Increase output verbosity toINFOlevel.-vv: Increase output verbosity toDEBUGlevel.
-
Standard Check with Default Settings:
python IPTV_checker.py /path/to/your/playlist.m3u8
-
Check a Specific Group:
python IPTV_checker.py /path/to/your/playlist.m3u8 -group "SPORT HD" -
Check with Extended Timeout:
python IPTV_checker.py /path/to/your/playlist.m3u8 -extended 30
-
Split Playlist into Working and Dead Channels:
python IPTV_checker.py /path/to/your/playlist.m3u8 -split
-
Rename Working Channels with Video and Audio Info:
python IPTV_checker.py /path/to/your/playlist.m3u8 -rename
-
Split Playlist and Rename Working Channels:
python IPTV_checker.py /path/to/your/playlist.m3u8 -split -rename
-
Enable Debug Mode for Detailed Output:
python IPTV_checker.py /path/to/your/playlist.m3u8 -vv
-
Check with Channel name search:
python IPTV_checker.py /path/to/your/playlist.m3u8 -c "Sky Sports|TNT Sports"
The script will output the status of each channel in the following format:
1/5 ✓ Channel Name | Video: 1080p60 H264 - Audio: 159 kbps AACAfter processing, the script lists any channels with framerates of 30fps or below:
Low Framerate Channels:
1/5 EGGBALL TV HD - 25fpsThe script also detects channels with incorrect labels:
Mislabeled Channels:
3/5 Sports5 FHD - Expected 1080p, got 4KThis project is licensed under the MIT License. See the LICENSE file for more details.
Contributions are welcome! Please feel free to submit a Pull Request or open an issue if you have any ideas or feedback.
