[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.

Gudio
SamyGO Project Donor
Posts: 19
Joined: Sat Aug 30, 2014 11:46 am

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

Post by Gudio »

Gf won't be mad anyway. :D You saved my ass.
olvec
Posts: 3
Joined: Sun Jan 05, 2014 11:11 pm

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

Post by olvec »

wluczykijwf wrote:Thanks you @gogo, and do this version works correctly on E-series?

I installed OnlineTV v. 1.1.10. (01.10.2016) , it works but i have a little problem when i change channel :
for exemple,
i see onlineTV channel
i change to channel DTV , no sound with image !
it's similar when i change channel DTV to onlineTV channel
this solution is MUTE on TV CONTROL and the sound is hearing .

Sorry for my english .
sorry for my english
TV SAMSUNG UE40ES5500 - T-MST10PDEUC_2007.0 - Firmware T-INFOLINK2012-1026) SamyGo ([App] Rooting E/F on latest firmwares) + OnlineTV
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 »

@olvec, I need your log file.
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 have started thinking about calculation as well, because we have the total size and current bitrate.
But it will be tricky because without the current level of the buffer, we can't calculate it precisely.
I have found that explanation about the buffers, so 5 sec for initial 3 sec for pending and 10 in total should be ok.
The recommendation about pending buffer to be double of the initial, but have found it more stable if is less than that.
We can calculate it on demand to point the people what setting they should fill, and keep the info on green or yellow button, or inject it automatically
I added a approximate procentage TotalBufferSize value for pause and a aproximate calculate Total Download Stream.
20161004234737.jpg
And I added new parameter SetInitialTimeOut to Settings.js
Using to test:
  1. Add what do not have to Settings.js script and modify value

    Code: Select all

    //For any type stream
    //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 * 250; //It sets the total It sets the total It sets the total (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)
    //If the Value < 1ms then set default Value
    Settings.SetInitialTimeOut_AllType = 0; //It sets the maximum time out value for initial buffering before starting playback (ms)
    
    //Individual for some type stream
    Settings.SetTotalBufferSize = {
        'RADIO': 1024 * 1,
        'HTTP-HD': 1024 * 50,
    };
    Settings.SetInitialBufferSize = {
        'RADIO': 128 * 1,
        'HTTP-HD': 1024 * 12,
    };
    Settings.SetPendingBufferSize = {
        'RADIO': 128 * 1,
        'HTTP-HD': 1024 * 12,
    };
    
    Settings.SetInitialTimeOut = {
        'RADIO': 30,
        'HTTP-HD': 1000,
    };
  2. You can add new types (maybe HTTP-RADIO, MP3, HTTP-SD ect...)
  3. Modify type stream for channel HD in TvList.xml file
  4. Replace the Player.js, Display.js and Util.j scripts in mean directory OnlineTV
You do not have the required permissions to view the files attached to this post.
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 very much for the changes.
Very good it's working fine, I love to see how full is the buffer.
The problem is that always is increment.
I have got some buffering on one channel and then the total remains intact, it should be start from zero or the actual min value if we have buffering.
Which usually happening when the buffer is empty.
I didn't get what can check from the percentage during pause.
In general now I can watch channels which previously I couldn't.

One possible feature, please
Can we have the same behavior with next previous event (stroke left and right) like on yellow/green button, for the blue button (guide).
It will be great to check what will be the next event without switching the channel.
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: The problem is that always is increment.
I have got some buffering on one channel and then the total remains intact, it should be start from zero or the actual min value if we have buffering.
I know. Sometimes when streaming is start then a mean download speed is very high.
bobiturboto wrote:
I didn't get what can check from the percentage during pause.
You press pause key and next yellow or green key. You can monitor the total buffer. If it is less of 100% then probably the stream doesn't broken after resuming.
bobiturboto wrote:In general now I can watch channels which previously I couldn't.
:D
bobiturboto wrote:
One possible feature, please
Can we have the same behavior with next previous event (stroke left and right) like on yellow/green button, for the blue button (guide).
It will be great to check what will be the next event without switching the channel.
Yes, I have it in the plans.
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 »

One more idea regarding of our webserver usage. We can create a mobile app which is browsing now on TV content and eventually to control Online TV app for switching the channels. Then we will have something absolutely complete. What you think about it?

Sent from my D6503 using Tapatalk
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:One more idea regarding of our webserver usage. We can create a mobile app which is browsing now on TV content and eventually to control Online TV app for switching the channels. Then we will have something absolutely complete. What you think about it?
I need more description for your idea...

...but, I think that is now possible!
Just write a script which translates the address from your webserver to a link of stream for OnlineTV. Here is examples.
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 »

During the weekend I will try to create a few mockups
Now I have one different issue.
It seems it's very difficult to setup the pending buffer value with my crappy internet.
For that reason I have decided to remove the property and rely on the automatic value when is not present.
Unfortunately I have received error like this

Code: Select all

[Player] Player video error: Cannot read property 'HTTP' of undefined, TypeError
[Player] Player deinit: 1
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, Not remove You must set 0 value for the property.
sorry for my english
UE40F8000 (T-FXPDEUC-1136.0), BD-D5500

Post Reply

Return to “[F] Software”