Skip to content

Instantly share code, notes, and snippets.

@drdebian
Forked from caseyavila/hdhr-listings-to-m3u.py
Created November 20, 2022 01:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drdebian/a6df436e097304b0f10cc702b89dec04 to your computer and use it in GitHub Desktop.
Save drdebian/a6df436e097304b0f10cc702b89dec04 to your computer and use it in GitHub Desktop.
Convert HDHomeRun Prime Listings to M3U Format
#!/usr/bin/env python3
#
# this script will convert the hdhomerun listings (channels) to
# m3u format for use with external media players. before running
# this script, be sure to modify the <<config>> variable settings
# below.
#
# Suggested Usage: This script should be run on a cron to keep
# the channel lineup to date. Below is an example of how to execute this script:
# python /path/to/script/hdhomerun-prime-listings-to-m3u.py > /path/to/playlist.m3u
#
# original author Josh Kastang (josh[dot]kastang[at]gmail[dot]com)
#
# Converted to Python 3 and revised to support Jellyfin by Casey Avila
# - Added automatic finding of HDHomeRun ip address
# - Added ability to opt out of duration
import requests
import json
ip_request = requests.get("http://ipv4-api.hdhomerun.com/discover");
use_duration = True
config = {
# Uses first HDHomeRun found on network
'hdhr-ip' : json.loads(ip_request.text)[0]["LocalIP"],
'duration' : '7200',
}
hdhr_url = "http://{}/lineup.json?show=unprotected".format(config['hdhr-ip'])
response_obj = requests.get(hdhr_url)
listings_res = response_obj.text
print("#EXTM3U")
listings = json.loads(listings_res)
for l in listings:
channel = l['GuideNumber']
name = l['GuideName']
print('#EXTINF:-1 tvg-chno="{}" tvg-name="{}",{}'.format(channel, name, name))
if use_duration:
print("http://{}:5004/auto/v{}?duration={}".format(
config['hdhr-ip'],
channel,
config['duration'])
)
else:
print("http://{}:5004/auto/v{}".format(
config['hdhr-ip'],
channel)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment