[App] More TV channels on E/F/H series

Here are software that related with Samsung F series TVs.
Please don't create any new topic here unless you have software to post/release.

bobiturboto
SamyGO Project Donor
Posts: 489
Joined: Sun Mar 23, 2014 8:15 pm
Location: Bulgaria

Re: [App] More TV channels on E/F/H series

Post 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
wluczykijwf
Official SamyGO Developer
Posts: 1051
Joined: Sat Sep 21, 2013 5:07 pm
Location: Poland

Re: [App] More TV channels on E/F/H series

Post by wluczykijwf »

Try replace the script in main directory OnlineTV.
sorry for my english
UE40F8000 (T-FXPDEUC-1136.0), BD-D5500
bobiturboto
SamyGO Project Donor
Posts: 489
Joined: Sun Mar 23, 2014 8:15 pm
Location: Bulgaria

Re: [App] More TV channels on E/F/H series

Post by bobiturboto »

Now is fine thank you very much
What was the problem?
Which lib version you will recommend me?
wluczykijwf
Official SamyGO Developer
Posts: 1051
Joined: Sat Sep 21, 2013 5:07 pm
Location: Poland

Re: [App] More TV channels on E/F/H series

Post 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 :D
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.
sorry for my english
UE40F8000 (T-FXPDEUC-1136.0), BD-D5500
wluczykijwf
Official SamyGO Developer
Posts: 1051
Joined: Sat Sep 21, 2013 5:07 pm
Location: Poland

Re: [App] More TV channels on E/F/H series

Post 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 :) .
sorry for my english
UE40F8000 (T-FXPDEUC-1136.0), BD-D5500
bobiturboto
SamyGO Project Donor
Posts: 489
Joined: Sun Mar 23, 2014 8:15 pm
Location: Bulgaria

Re: [App] More TV channels on E/F/H series

Post 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.
wluczykijwf
Official SamyGO Developer
Posts: 1051
Joined: Sat Sep 21, 2013 5:07 pm
Location: Poland

Re: [App] More TV channels on E/F/H series

Post 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.
sorry for my english
UE40F8000 (T-FXPDEUC-1136.0), BD-D5500
wluczykijwf
Official SamyGO Developer
Posts: 1051
Joined: Sat Sep 21, 2013 5:07 pm
Location: Poland

Re: [App] More TV channels on E/F/H series

Post by wluczykijwf »

Update post and files.
Recomendet update the libOnlineTVDataForGUIDE v. 0.1.1.
sorry for my english
UE40F8000 (T-FXPDEUC-1136.0), BD-D5500
wluczykijwf
Official SamyGO Developer
Posts: 1051
Joined: Sat Sep 21, 2013 5:07 pm
Location: Poland

Re: [App] More TV channels on E/F/H series

Post 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:
  1. 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)
  2. Replace in main directory OnlineTV the Player.js script.
The param Settings.SetTotalBufferSize_AllType probably prolongs the time to pause stream :)
sorry for my english
UE40F8000 (T-FXPDEUC-1136.0), BD-D5500
bobiturboto
SamyGO Project Donor
Posts: 489
Joined: Sun Mar 23, 2014 8:15 pm
Location: Bulgaria

Re: [App] More TV channels on E/F/H series

Post 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 :D
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?

Post Reply

Return to “[F] Software”