Page 73 of 110
Re: [App] More TV channels on E/F/H series
Posted: Fri Sep 30, 2016 10:30 pm
by bobiturboto
Yes this is the address and I can open phpinfo, and list runOnlineTVDataForGUIDE via browser.
Please check my previous post I have added more logs
With that command the files are generated but not with my browser
Code: Select all
root@tv:/mnt $ php-cgi /mnt/phpsysinfo/runOnlineTVDataForGUIDE/runOnlineTVDataForGUIDE.php
X-Powered-By: PHP/5.2.16
Content-type: text/html
I have downgraded to the previous version and everything is working.
Now will try to upgrade to the last
So the last is not working as before my TV hangs again, so definitely the problem is from the last app
This time I can see the description with yellow button
Re: [App] More TV channels on E/F/H series
Posted: Fri Sep 30, 2016 10:55 pm
by wluczykijwf
Try replace the script in main directory OnlineTV.
Re: [App] More TV channels on E/F/H series
Posted: Fri Sep 30, 2016 11:10 pm
by bobiturboto
Now is fine thank you very much
What was the problem?
Which lib version you will recommend me?
Re: [App] More TV channels on E/F/H series
Posted: Fri Sep 30, 2016 11:24 pm
by wluczykijwf
bobiturboto wrote:[...] What was the problem?
Problem was with timezone offset. Sometimes I must set offset and sometimes not. For me not. For you yes. Now it's checking automatically - probably
bobiturboto wrote:Which lib version you will recommend me?
Optimal is using last lib (libOnlineTVDataForGUIDE.so) and latest Main.js and Main2.js scripts (optimal time read a data from the DataForChannels.txt). I will update all files on formum. Thanks for your a test.
Re: [App] More TV channels on E/F/H series
Posted: Fri Sep 30, 2016 11:32 pm
by wluczykijwf
Gudio wrote:UE32F5300, I will send you logs on Sunday.

The
libHideDimScreen should work for your TV model.
Probably it other dimming window. You attach log and example screenshot the issue, please

.
Re: [App] More TV channels on E/F/H series
Posted: Fri Sep 30, 2016 11:48 pm
by bobiturboto
I really love all of the new extras, especially reconnecting the stream and the app.
They are a life savers for me.
I want to make a request for one more feature, can we have a property where to fine tuning the size of the buffer.
I have a problem with my ISP fro example good speed but a lot of packets loses, if I increase the buffer I can reduce the glitches.
Re: [App] More TV channels on E/F/H series
Posted: Sat Oct 01, 2016 12:04 am
by wluczykijwf
bobiturboto wrote:I really love all of the new extras, especially reconnecting the stream and the app.
They are a life savers for me.
bobiturboto wrote:
I want to make a request for one more feature, can we have a property where to fine tuning the size of the buffer.
It's posible - in the near future...
bobiturboto wrote:I have a problem with my ISP fro example good speed but a lot of packets loses, if I increase the buffer I can reduce the glitches.
... but I don't know if something will improve.
Re: [App] More TV channels on E/F/H series
Posted: Sat Oct 01, 2016 4:51 pm
by wluczykijwf
Update
post and files.
Recomendet update the
libOnlineTVDataForGUIDE v. 0.1.1.
Re: [App] More TV channels on E/F/H series
Posted: Sat Oct 01, 2016 7:07 pm
by wluczykijwf
bobiturboto wrote:[...] I want to make a request for one more feature, can we have a property where to fine tuning the size of the buffer.
I have a problem with my ISP fro example good speed but a lot of packets loses, if I increase the buffer I can reduce the glitches.
If you want to test it:
- Put the code to the Settings.js script and modify param value:
Code: Select all
//If the Value < 1KB then set default Value
//E.g. If you want to set 5MB then set the Value to 5120KB = 1024 * 5
Settings.SetTotalBufferSize_AllType = 1024 * 500; //It sets the total buffer size which is used on streaming by media player (KB)
Settings.SetInitialBufferSize_AllType = 0; // It sets the initial buffered data size before start playback (KB)
Settings.SetPendingBufferSize_AllType = 0; //It sets the minimum data size which goes out from buffering, when media player is on buffering status (KB)
- Replace in main directory OnlineTV the Player.js script.
The param
Settings.SetTotalBufferSize_AllType probably prolongs the time to pause stream

Re: [App] More TV channels on E/F/H series
Posted: Sat Oct 01, 2016 7:59 pm
by bobiturboto
Thank you for the new feature.
It's seems working fine, my glitches on the HD channels are history.
I am very happy
I have experimented with these settings:
Code: Select all
Settings.SetTotalBufferSize_AllType = 1024 * 50; //It sets the total buffer size which is used on streaming by media player (KB)
Settings.SetInitialBufferSize_AllType = 1024 * 5; // It sets the initial buffered data size before start playback (KB)
Settings.SetPendingBufferSize_AllType = 1024 * 4; //It sets the minimum data size which goes out from buffering, when media player is on buffering status (KB)
I am only confused about Settings.SetPendingBufferSize_AllType, probably I am missing something from your description, but how exactly is used that setting?