jrudess / streamdvr

DVR for streaming entertainment
GNU General Public License v3.0
65 stars 16 forks source link

Twitch m3u8 lookup does not work correctly using m3u8_streamlink.sh #154

Closed jrudess closed 3 years ago

jrudess commented 3 years ago

Streamlink's twitch plugin appears to load twitch's fallback stream tricking StreamDVR into thinking the streamer is online and recording junk. m3u8_youtubedl.sh does not have this problem.

Need to investigate if there is a streamlink option that can be used to suppress that.

jrudess commented 3 years ago

Using the below options in twitch.yml resolves the issue, if choosing to use streamlink for twitch.

m3u8fetch_args:
  - "--twitch-disable-hosting"
  - "--twitch-disable-ads"
  - "--twitch-disable-reruns"
recorder_args:
  - "--twitch-disable-hosting"
  - "--twitch-disable-ads"
  - "--twitch-disable-reruns"