Page 76 of 110

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

Posted: Sun Oct 02, 2016 8:56 pm
by Gudio
Gf won't be mad anyway. :D You saved my ass.

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

Posted: Sun Oct 02, 2016 10:03 pm
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 .

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

Posted: Sun Oct 02, 2016 10:32 pm
by wluczykijwf
@olvec, I need your log file.

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

Posted: Tue Oct 04, 2016 10:56 pm
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

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

Posted: Tue Oct 04, 2016 11:51 pm
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.

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

Posted: Wed Oct 05, 2016 7:56 am
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.

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

Posted: Wed Oct 05, 2016 8:05 am
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

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

Posted: Wed Oct 05, 2016 8:51 am
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.

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

Posted: Thu Oct 06, 2016 10:21 pm
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

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

Posted: Thu Oct 06, 2016 10:26 pm
by wluczykijwf
@bobiturboto, Not remove You must set 0 value for the property.