caseyfw / nhldl

A shell script for downloading NHL.tv streams.
MIT License
23 stars 4 forks source link

NFL download #7

Open Tzelon opened 7 years ago

Tzelon commented 7 years ago

Hey, First, thank you for your great work. I appreciate it. I have two questions.

  1. Do you know if the script can work on NFL.TV stream also?
  2. Can you explain in more details the flow of the script? I understand that you go a fetch the m3u8 file -> open the file and reading each line -> checking to see if the line is a new key and IV -> ?

Thanks again

myteron commented 7 years ago

1) no idea, I don't have an NFL account 2) main flow can be seen in main.py see also tests/data for some of the files the unit tests might explain some details. Flow:

How the authentication works is still a mystery to me.

Tzelon commented 7 years ago

Where can I find the main.py and tests In the code I can only see nhldl.sh

myteron commented 7 years ago

oops sorry mixed up the projects you can find them here https://github.com/cmaxwe/dl-nhltv nhldl is a good read tho.

Tzelon commented 7 years ago

Thank you!