2023-03-27, 15:27
2023-03-27, 16:16
"my list" functionality looks to be very simplistic
movie: Hop, uuid: ddf84c14-772f-3620-80c1-264c45bc9f0b
Add to my list:
curl 'https://sas.peacocktv.com/mytv/watchlist/ddf84c14-772f-3620-80c1-264c45bc9f0b' -X 'PUT'
Remove from my list:
curl 'https://sas.peacocktv.com/mytv/watchlist/ddf84c14-772f-3620-80c1-264c45bc9f0b' -X 'DELETE'
with authenticated headers, of course
-----
returns no data, only status code 201 on success
movie: Hop, uuid: ddf84c14-772f-3620-80c1-264c45bc9f0b
Add to my list:
curl 'https://sas.peacocktv.com/mytv/watchlist/ddf84c14-772f-3620-80c1-264c45bc9f0b' -X 'PUT'
Remove from my list:
curl 'https://sas.peacocktv.com/mytv/watchlist/ddf84c14-772f-3620-80c1-264c45bc9f0b' -X 'DELETE'
with authenticated headers, of course
-----
returns no data, only status code 201 on success
2023-03-27, 18:01
@Paco8 I'm unable to activate Atmos. How to play the movie "Furious 7" with Dolby Atmos sound? Do you have any ideas about what might be the cause of the problem?
2023-03-27, 18:16
I'm not sure, maybe it's necessary to specify a different audio codec in the request.
2023-03-27, 19:43
i took a swing at atmos audio but i havent found a solution
i found this in the decompiled apk but attempts to use anything but AAC either dont work at all or result in 2.0 audio only
i think if the right codec string can be found it would do atmos, if available
i found this in the decompiled apk but attempts to use anything but AAC either dont work at all or result in 2.0 audio only
i think if the right codec string can be found it would do atmos, if available
2023-03-28, 02:41
alright, i ground this down and atmos isnt available because of inputstream adaptive, not peacock/sky or this addon
https://github.com/xbmc/inputstream.adaptive/issues/650
i grabbed the mpd and found the atmos track but its not listed in kodi
https://github.com/xbmc/inputstream.adaptive/issues/650
i grabbed the mpd and found the atmos track but its not listed in kodi
xml:
<Representation audioSamplingRate="48000" bandwidth="452258" codecs="ec-3" id="audio_0_en_452258">
<SupplementalProperty schemeIdUri="tag:dolby.com,2018:dash:EC3_ExtensionType:2018" value="JOC"/>
<SupplementalProperty schemeIdUri="tag:dolby.com,2018:dash:EC3_ExtensionComplexityIndex:2018" value="16"/>
<AudioChannelConfiguration schemeIdUri="tag:dolby.com,2014:dash:audio_channel_configuration:2011" value="F801"/>
<SegmentTemplate timescale="48000" initialization="layer_atmos/_781659496_10_2.mp4" media="layer_atmos/_781659496_10_2_$Number$.mp4" startNumber="0">
<SegmentTimeline>
<S t="0" d="288768" r="1285"/>
<S t="371355648" d="73728" r="0"/>
<S t="371429376" d="288768" r="80"/>
<S t="394819584" d="311808" r="0"/>
<S t="395131392" d="288768" r="0"/>
<S t="395420160" d="144384" r="0"/>
</SegmentTimeline>
</SegmentTemplate>
</Representation>
2023-03-28, 06:28
@Paco8
you don't want to team up and make this a Slyguy add-on by any chance?
pretty sure i've got the code to do username/password login and device code login (no more cookie stuff)
We could also tackle Sky showtime as I should be able to pull the key we need I reckon
The reason I lost interest in this addon was because I didn't like the thought of "android only" add-on.
I struck this when getting to the playback side of things
But maybe this is the way more and more things will go so need to get onboard.
you don't want to team up and make this a Slyguy add-on by any chance?
pretty sure i've got the code to do username/password login and device code login (no more cookie stuff)
We could also tackle Sky showtime as I should be able to pull the key we need I reckon
The reason I lost interest in this addon was because I didn't like the thought of "android only" add-on.
I struck this when getting to the playback side of things
But maybe this is the way more and more things will go so need to get onboard.
2023-03-28, 07:11
If you know the proper way to implement the login, we would all be grateful. I think everything else has been solved, including the SkyShowtime key.
2023-03-28, 15:09
Would be great if you could implement an option to select the stream quality for live content.
Specifically Premier League football games are now in 1920x1080 60fps but when I tested last weekend they were only streaming at 30fps.
Specifically Premier League football games are now in 1920x1080 60fps but when I tested last weekend they were only streaming at 30fps.
2023-03-28, 16:12
my cookie from the 14th finally stopped working so it would seem the lifespan is 2 weeks
@Paco8 there seems to be an issue with caching or something
when my cookie stopped working it didnt allow listing anything in the addon main section, i had search, profiles and account
i grabbed the new cookie, replaced the cookie.conf but it still would not list anything
i had to use your function "login with a cookie file" in order to get the list back, mind you i used the cookie file from the addon data i had sent already
so it needs to do some sort of refresh when the cookie file changes, maybe do a crc check on the file to determine if its changed
----
secondary
please consider adding ignore title articles sorting
xbmcplugin.addSortMethod(_handle, xbmcplugin.SORT_METHOD_TITLE_IGNORE_THE)
and please note kodi uses the sort methods in order they are added so most sections default to "UNSORTED", kindly set alphabetical default
@Paco8 there seems to be an issue with caching or something
when my cookie stopped working it didnt allow listing anything in the addon main section, i had search, profiles and account
i grabbed the new cookie, replaced the cookie.conf but it still would not list anything
i had to use your function "login with a cookie file" in order to get the list back, mind you i used the cookie file from the addon data i had sent already
so it needs to do some sort of refresh when the cookie file changes, maybe do a crc check on the file to determine if its changed
----
secondary
please consider adding ignore title articles sorting
xbmcplugin.addSortMethod(_handle, xbmcplugin.SORT_METHOD_TITLE_IGNORE_THE)
and please note kodi uses the sort methods in order they are added so most sections default to "UNSORTED", kindly set alphabetical default
2023-03-28, 17:06
The option "login with a cookie file" removes the cached files, so it's best to use that option to install the cookie.
Looking at the headers when a login is done, I think the cookie should last 6 months.
Looking at the headers when a login is done, I think the cookie should last 6 months.
2023-03-28, 17:13
alright, maybe something changed specific to mine then, its not impossible
ill use the install cookie method in the future
ill use the install cookie method in the future
2023-03-28, 17:34
(2023-03-28, 15:09)samjee Wrote: Would be great if you could implement an option to select the stream quality for live content.
Specifically Premier League football games are now in 1920x1080 60fps but when I tested last weekend they were only streaming at 30fps.
Looking at the manifest of a Premier League replay, it looks like it already has a 60 fps video track:
<Representation width="1920" height="1080" frameRate="60000/1001" codecs="avc1.64002a" scanType="progressive" sar="1:1" id="1679226580999item-07item" bandwidth="10000000"/>
2023-03-28, 20:49
(2023-03-28, 20:42)PDX_Mark Wrote: I am interested in testing this ASAP . I have a Peacock account waiting.
why waiting?
https://github.com/Paco8/plugin.video.skyott