southpark.de add-on / Turn down resolution ?

Requests, suggestions, support, and everything else python / plugin related.
Post Reply
M4ST3RCH13F
Posts: 4
Joined: Tue Feb 19, 2013 1:18 am
Has thanked: 3 times

southpark.de add-on / Turn down resolution ?

Post by M4ST3RCH13F »

Hi,
i got a question about the southpark.de video addon, the streams are in 720p but this sometimes slows down so it lags, is there a way to turn down the resolution to 640x480 or something ?
User avatar
BuZz
Site Admin
Posts: 1890
Joined: Wed Jul 04, 2012 12:50 am
Location: UK
Has thanked: 65 times
Been thanked: 422 times
Contact:

Re: southpark.de add-on / Turn down resolution ?

Post by BuZz »

no settings on that plugin. you could ask the author if its possible. to speed up the h264 720p streams (and sacrifice some quality), you can set the "h264 skip loop filter" in settings->video->playback to "skip everything".
skatulskijean
Posts: 1028
Joined: Wed Jul 04, 2012 8:01 am
Has thanked: 1 time
Been thanked: 148 times

Re: southpark.de add-on / Turn down resolution ?

Post by skatulskijean »

M4ST3RCH13F wrote:Hi,
i got a question about the southpark.de video addon, the streams are in 720p but this sometimes slows down so it lags, is there a way to turn down the resolution to 640x480 or something ?


this is the default.py have a look on https://github.com/AddonScriptorDE/plug ... default.py

Code: Select all

if len(matchMp4)>0:
                match=matchMp4
              elif len(matchFlv)>0:
                match=matchFlv


and change it to this

Code: Select all

if len(matchFlv)>0:
                match=matchFlv


then delete

Code: Select all

matchMp4=re.compile('width="(.+?)" height="(.+?)" type="video/mp4" bitrate="(.+?)">(.+?)<src>(.+?)</src>', re.DOTALL).findall(content)

what this do !
Its search only for the low video q
uality videos!

regards jan
M4ST3RCH13F
Posts: 4
Joined: Tue Feb 19, 2013 1:18 am
Has thanked: 3 times

Re: southpark.de add-on / Turn down resolution ?

Post by M4ST3RCH13F »

Thanks guys, gonna try it
skatulskijean
Posts: 1028
Joined: Wed Jul 04, 2012 8:01 am
Has thanked: 1 time
Been thanked: 148 times

Re: southpark.de add-on / Turn down resolution ?

Post by skatulskijean »

M4ST3RCH13F wrote:Thanks guys, gonna try it
i have i not tested but i think its works (but only when the site have flv (videos for all seasons)!
Post Reply