We are working on implementing support for the “Archive” feature that some IPTV providers provide to their users.
We are collecting data about the API (or URL structure) of different IPTV providers who have archive. We need to know the format of the URL in order to better understand how the feature should be implemented and configured by users.
So for example:
One provider requires a suffix with timestamps to be appended to the URL of a channel.
https://provider.com/channel.m3u8?utc=1407164412&lutc=1407165000
utc = the timestamp of when the program was aired in UTC format.
lutc = current UTC time.
Another provider has the following implementation:
https://provider.com/channel.m3u8&t=2017-10-05-12-00-00
where you simply have to provide the full date and time of when the program started.
We need information about your provider so that we can add support for it from the get go.