Jump to content

2.2.3a - with Live TV


cmcg

Recommended Posts

cmcg

I recieved a request from user @@s-andy for a beta version with the LiveTV feature enabled. It is definitely in beta but kinda works ok.

 

Your wish etc...

 

2.2.3a

 

You can install from the normal Orsay beta address 82.27.106.58

 

Let us know how you get on in this thread please.

 

Link to comment
Share on other sites

  • 1 month later...
shorty1483

Running an mp4 currently on the my H6270, and I am curious why the movie is direct streaming with log entry 

Stream #0:1 -> #0:1 (ac3 (native) -> ac3 (native))

Any suggestions?

 

 

AC3toAC3.txt

Link to comment
Share on other sites

FrostByte

Was there anything in the TV log which says why it requested transcoding of audio?

Link to comment
Share on other sites

shorty1483

Was there anything in the TV log which says why it requested transcoding of audio?

 

All checks have passed with the argument "true" except:

FrameRate Compatibility : False : 50
Link to comment
Share on other sites

FrostByte

Not sure, but I don't think your file even needs to be transcoded since it isn't 1080p and according to the manual your TV should support a max of 60 fps for up to 720p and then only 30 fps for FHD.  I think if the case h264 framerate check where changed to an "if" statement like the case mpeg4 then your file wouldn't be transcoded at all.


        case "H":

    		switch (codec) {

    		case "mpeg2video":

    			this.codec = true;

    			this.container = ["asf","avi","mkv","mp4","3gpp","mpg","mpeg","ts","m4v","m2ts","mov","vro","tp","trp","flv","vob","svi","mts","divx"];

    			this.resolution = [1920,1080];

    			this.bitrate = 30720000;

    			this.framerate = 30;

    			this.level = true;

    			this.profile = true;

    			break;

    		case "mpeg4":

    			this.codec = true;

    			this.container = ["asf","avi","mkv","mp4","3gpp","mpg","mpeg","ts","m4v","m2ts","mov","vro","tp","trp","flv","vob","svi","mts","divx"];

    			this.resolution = [1920,1080];

    			this.bitrate = 30720000;

    			if (videoWidth > 720){

    				this.framerate = 30;

    			} else {

    				this.framerate = 60;

    			}

    			this.level = true;

    			this.profile = true;

    			break;

    		case "h264":

    			this.codec = true;

    			this.container = ["asf","avi","mkv","mp4","3gpp","mpg","mpeg","ts","m4v","m2ts","mov","vro","tp","trp","flv","vob","svi","mts","divx"];

    			this.resolution = [1920,1080];

    			this.bitrate = 50720000;

    			this.framerate = 30;

    			this.level = 41;

    			this.profile = ["Base","Constrained Baseline","Baseline","Main","High"];

    			break;
Edited by FrostByte
  • Like 1
Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...