-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ability to refresh Plex Live TV Guide after the channels.json
file is updated
#40
base: master
Are you sure you want to change the base?
Changes from all commits
95635b9
adf043e
a0ca72a
869491d
f1b4e8d
f0b9463
78371d9
5caefbc
3dba936
5eae3c5
d2d689d
2b1f3b1
1ce5bc2
b5b8aff
180835b
505bdee
91854b0
45157d3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
{ | ||
"name": "Amazing Tuner", | ||
"encoder_profile": "cpu", | ||
"tuner_count": 3 | ||
"tuner_count": 3, | ||
"plex_servers": [ | ||
{ | ||
"endpoint": "http://your-plex-server-1:32400", | ||
"token": "your-plex-token-1" | ||
}, | ||
{ | ||
"endpoint": "http://your-plex-server-2:32400", | ||
"token": "your-plex-token-2" | ||
} | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module github.com/duncanleo/plex-dvr-hls | ||
module plex-dvr-hls | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: This change isn't compliant with Go module naming conventions:
The non-absolute naming system appears to be suitable for local sub-packages (e.g. |
||
go 1.23.3 | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: is the ID
29
hardcoded? I think it may change (e.g. if the DVR is removed and re-added).