Jump to content

Beta 2.2.0


cmcg

Recommended Posts

FrostByte

I don't seem to have anything with that combo of HEVC/AAC.  I try and find something, though the manual seems to say it will work. 

Edited by FrostByte
Link to comment
Share on other sites

FrostByte

Ya, that is odd.  What model is the app identifying your TV as

 

1.  In the log it should say something like "Model year is X"

 

2. In the TV settings it should display a long model number

Link to comment
Share on other sites

FrostByte

Interesting... it seems that the issue may be the audio because the video seems to play OK. I'm wondering if it's something to do with the AAC in combination with the hevc format. it starts working when I change that setting to transcode to Dolby. It also works when I'm using any other format in combination with AAC

 

Sent from my SAMSUNG-SM-N910A using Tapatalk

 

I just played two HEVC/AAC files fine.  Here's the mediainfo for one, but they are both pretty much the same

 

The only real difference I see is the number of channels in the AAC file you have.  I think it was 5.1 and mine are both 2 channels

 

57d5c72031eb5_aac.jpg

Link to comment
Share on other sites

bengel1087

Ya, that is odd.  What model is the app identifying your TV as

 

1.  In the log it should say something like "Model year is X"

 

2. In the TV settings it should display a long model number

 

1. Model Year is F

2. UE55F6510

Link to comment
Share on other sites

FrostByte

Sorry.  This is kind of long, but I think I know what the issue is.

 

Video CodecH264
AVCYes
ProfilHigh
Level41
Auflösung1280x544
Seitenverhältnis2.35:1
AnamorphNo
InterlacedNo
Framerate23.97602
Bitrate7278 kbps
Bit-Tiefe8 bit
Pixelformatyuv420p
Ref Frames1
NAL4
Audio Spracheger
CodecDTS
ProfilDTS
Darstellung5.1
Kanäle6 ch
Bitrate768 kbps
Sample-Rate48000 Hz
VoreinstellungYes
TitleSurround 5.1
Untertitel Spracheger
CodecHDMV_PGS_SUBTITLE
VoreinstellungYes
ErzwungenNo
ExternNo
TitleForced
Untertitel Spracheger
CodecHDMV_PGS_SUBTITLE
VoreinstellungNo
ErzwungenNo
ExternNo
TitleFull
Containermkv
Pfad/volume1/Filme/Fast & Furious 6 (2013)/Fast & Furious 6 (2013).mkv

 

 

 

57d5aa9d712e7_20160911_210222.jpg

 

 

 

Okay, I think I know what the issue is.  For some reason your DTS files are saying the codec is "DTS" and the program is expecting "DCA" which is how I've seen it identified by mediainfo in every other file with DTS audio. 

 

If you see the code below if it does not recognize the audio codec it breaks and then figures it needs to transcode because the codec isn't recognized.  Since DTS isn't in there it of course transcodes

case "F":
  switch (audiocodec) {
  case "aac":
   this.audiocodec = true;
   this.audiocontainer = ["asf","avi","mkv","mp4","3gpp","mpg","mpeg","ts","m4v","m2ts","mov","vro","tp","trp","flv","vob","svi","mts","divx"];
   this.audiochannels = 6;
   break;
  case "mp3":
   this.audiocodec = true;
   this.audiocontainer = ["asf","avi","mkv","mp4","3gpp","mpg","mpeg","ts","m4v","m2ts","mov","vro","tp","trp","flv","vob","svi","mts","divx"];
   this.audiochannels = 6;
   break;
  case "mp2":
   this.audiocodec = true;
   this.audiocontainer = ["asf","avi","mkv","mp4","3gpp","mpg","mpeg","ts","m4v","m2ts","mov","vro","tp","trp","flv","vob","svi","mts","divx"];
   this.audiochannels = 6;
   break;
  case "ac3":
   this.audiocodec = true;
   this.audiocontainer = ["asf","avi","mkv","mp4","3gpp","mpg","mpeg","ts","m4v","m2ts","mov","vro","tp","trp","flv","vob","svi","mts","divx"];
   this.audiochannels = 6;
   break;
  case "wmav2":
   this.audiocodec = true;
   this.audiocontainer = ["asf","avi","mkv","mp4","3gpp","mpg","mpeg","ts","m4v","m2ts","mov","vro","tp","trp","flv","vob","svi","mts","divx"];
   this.audiochannels = 6;
   break;
  case "wmapro":
   this.audiocodec = true;
   this.audiocontainer = ["asf","avi","mkv","mp4","3gpp","mpg","mpeg","ts","m4v","m2ts","mov","vro","tp","trp","flv","vob","svi","mts","divx"];
   this.audiochannels = 6;
   break;
  case "wmavoice":
   this.audiocodec = true;
   this.audiocontainer = ["asf","avi","mkv","mp4","3gpp","mpg","mpeg","ts","m4v","m2ts","mov","vro","tp","trp","flv","vob","svi","mts","divx"];
   this.audiochannels = 6;
   break;
  case "dca":
   this.audiocodec = true;
   this.audiocontainer = ["asf","avi","mkv","mp4","3gpp","mpg","mpeg","ts","m4v","m2ts","mov","vro","tp","trp","flv","vob","svi","mts","divx"];
   this.audiochannels = 8;
   break;
  case "eac3": 
   this.audiocodec = true;
   this.audiocontainer = ["asf","avi","mkv","mp4","3gpp","mpg","mpeg","ts","m4v","m2ts","mov","vro","tp","trp","flv","vob","svi","mts","divx"];
   this.audiochannels = 6;
   break;
  case "pcm": 
  case "pcm_s16le": 
  case "pcm_s24le":
  case "pcm_s32le":
   this.audiocodec = true;
   this.audiocontainer = ["asf","avi","mkv","mp4","3gpp","mpg","mpeg","ts","m4v","m2ts","mov","vro","tp","trp","flv","vob","svi","mts","divx"];
   this.audiochannels = 2;
   break; 
  default:
   this.audiocodec = false;
   this.audiocontainer = null;
   this.audiochannels = null;
   break;
  }
  break; 

Here is a pic of how DTS is shown in all my files and everyone else's that I've ever seen post here.  Notice Emby identifies the codec in my files as DCA which stands for (DTS Coherent Acoustics). 

 

57d5e834d1f85_DCA.jpg

 

 

@cmcg I'm not sure what the right answer here is.  Does the fix need to be Emby, the files themselves, or do some encoders just identify DTS in that way?  The easy fix of course would be to just add "DTS" to the list of audio codecs and let them play

 

@bengel1087 You could try refreshing the metadata for those movies and see if it changes the CODEC to DCA, otherwise we may need to wait until a change is made

 

If your files still say "DTS" as the codec you could also try using MKVToolNix and modify the header making sure the Codec_ID says "A_DTS" which I believe Emby then reports back as "DCA".  Then do another refresh and see if it now says "DCA".  That may be a little more work than you want to do, but you could try it on a file and see if it works if you wish as a test

 

Easy answer though is just see if cmcg can add DTS to the code :)

 

57d5ef4281706_DCA4.jpg

  • Like 2
Link to comment
Share on other sites

bengel1087

First of all thank you verry much for your Help

 

I tried refreshing but it says DTS 

 

Next i tried MKVToolnix but there it says A_DTS

 

So at this moment i think i'm stuck with transcoding Audio :-D

57d5f3141f7f5_mkv.jpg

  • Like 1
Link to comment
Share on other sites

FrostByte

That's just weird that your files are showing DTS then.  You said you were using Plex also.  Maybe Plex is modifying your metadata also and identifying the codec as DTS vs DCA?

 

We'll just wait until cmcg gets back.  That change should be real easy.

Link to comment
Share on other sites

FrostByte

Ok I checked the Media Info in Plex  Funny is there it says DCA :-D

 

 

57d5f8e4f1abb_plex.jpg

 

Lol, what does the nfo say the codec is?  Should be toward the bottom

Link to comment
Share on other sites

FrostByte

In the folder where the movie is located is where Emby places a file which contains all the metadata.  Should be either a .nfo or .xml file.  Emby can read either one.  Never used Plex, but assume they do something similar.  Toward the bottom there should be a line that reads <codec>dca</codec>   That is what the apps reads to determine what to do with it (transcode or not)

 

 

Here is what the file looks like for my example

 

http://pastebin.com/Wi9vZxU2

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

bengel1087

Ok as i said in my Folder is no such File and i use emby  

 

But i can Click in Plex on Show XML File 

 

 

And sorry for my bad English  i'm from Germany :-D

<MediaContainer size="1" allowSync="1" identifier="com.plexapp.plugins.library" librarySectionID="1" librarySectionTitle="Filme" librarySectionUUID="d5e10f72-5366-466f-8c7c-107e895d0dbb" mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1472598531">
<Video ratingKey="93" key="/library/metadata/93" guid="com.plexapp.agents.imdb://tt0232500?lang=en" librarySectionID="1" studio="Universal Pictures" type="movie" title="The Fast and the Furious" titleSort="Fast and the Furious" contentRating="PG-13" summary="Domenic Toretto is a Los Angeles street racer suspected of masterminding a series of big-rig hijackings. When undercover cop Brian O'Conner infiltrates Toretto's iconoclastic crew, he falls for Toretto's sister and must choose a side: the gang or the LAPD." rating="5.3" audienceRating="7.4" year="2001" tagline="Live life 1/4 mile at a time." thumb="/library/metadata/93/thumb/1473640501" art="/library/metadata/93/art/1473640501" duration="6410997" originallyAvailableAt="2001-06-22" addedAt="1412106668" updatedAt="1473640501" audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="mixed" primaryExtraKey="/library/metadata/10590" ratingImage="rottentomatoes://image.rating.rotten">
<Media videoResolution="720" id="93" duration="6410997" bitrate="7278" width="1280" height="544" aspectRatio="2.35" audioChannels="6" audioCodec="dca" videoCodec="h264" container="mkv" videoFrameRate="24p" audioProfile="dts" videoProfile="high">
<Part accessible="1" exists="1" id="13650" key="/library/parts/13650/1412106668/file.mkv" duration="6410997" file="/volume1/Filme/The Fast and the Furious (2001)/The Fast and the Furious (2001).mkv" size="5832319883" audioProfile="dts" container="mkv" videoProfile="high">
<Stream id="33530" streamType="1" default="1" codec="h264" index="0" bitrate="6500" language="English" languageCode="eng" bitDepth="8" cabac="1" chromaSubsampling="4:2:0" codecID="V_MPEG4/ISO/AVC" colorRange="tv" colorSpace="bt709" duration="6410994" frameRate="23.976" frameRateMode="cfr" hasScalingMatrix="0" height="544" level="41" pixelFormat="yuv420p" profile="high" refFrames="4" scanType="progressive" width="1280"/>
<Stream id="33531" streamType="2" selected="1" default="1" codec="dca" index="1" channels="6" bitrate="768" language="Deutsch" languageCode="ger" audioChannelLayout="5.1(side)" bitDepth="24" bitrateMode="cbr" codecID="A_DTS" duration="6410997" profile="dts" samplingRate="48000" title="Surround 5.1"/>
<Stream id="33532" streamType="3" default="1" codec="pgs" index="2" language="Deutsch" languageCode="ger" codecID="S_HDMV/PGS" format="pgs" title="Forced"/>
<Stream id="33533" streamType="3" codec="pgs" index="3" language="Deutsch" languageCode="ger" codecID="S_HDMV/PGS" format="pgs" title="Full"/>
</Part>
</Media>
<Genre id="643" tag="Crime" count="35"/>
<Genre id="26" tag="Action" count="108"/>
<Genre id="143" tag="Thriller" count="59"/>
<Director id="4977" tag="Rob Cohen"/>
<Writer id="4978" tag="Ken Li"/>
<Writer id="4979" tag="Gary Scott Thompson"/>
<Writer id="4980" tag="Erik Bergquist"/>
<Writer id="4981" tag="David Ayer"/>
<Producer id="4876" tag="Neal H. Moritz" count="7"/>
<Country id="84" tag="USA" count="142"/>
<Role id="4842" tag="Paul Walker" count="6" role="Brian O'Conner" thumb="http://image.tmdb.org/t/p/original/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg"/>
<Role id="3400" tag="Vin Diesel" count="8" role="Dominic Toretto" thumb="http://image.tmdb.org/t/p/original/3RdYMTLoL1X16djGF52cFtJovDT.jpg"/>
<Role id="3616" tag="Michelle Rodriguez" count="7" role="Letty" thumb="http://image.tmdb.org/t/p/original/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg"/>
<Role id="4880" tag="Jordana Brewster" count="5" role="Mia Toretto" thumb="http://image.tmdb.org/t/p/original/dORwXZWWmDgG66I5i2Fnr27g3fO.jpg"/>
<Role id="2400" tag="Rick Yune" count="2" role="Johnny Tran" thumb="http://image.tmdb.org/t/p/original/9r5aykT0VjYC4pdexmNA0PovmFI.jpg"/>
<Role id="4982" tag="Chad Lindberg" role="Jesse" thumb="http://image.tmdb.org/t/p/original/ludrPIZeTAXXsnYzQvDzM2JV6eg.jpg"/>
<Role id="4983" tag="Johnny Strong" role="Leon" thumb="http://image.tmdb.org/t/p/original/mai8GzxPcvdIo1RzymbwBwayhxe.jpg"/>
<Role id="4936" tag="Matt Schulze" count="2" role="Vince" thumb="http://image.tmdb.org/t/p/original/aVXQNuSE7990114QZisNrkK8mJt.jpg"/>
<Role id="4984" tag="Ted Levine" role="Sgt. Tanner" thumb="http://image.tmdb.org/t/p/original/7O3vgqgicfNeGr3leC0qB074fjX.jpg"/>
<Role id="4985" tag="Ja Rule" role="Edwin" thumb="http://image.tmdb.org/t/p/original/rXvVP8d4NWBdHxcTu3GTUrybZlX.jpg"/>
<Role id="4986" tag="Vyto Ruginis" role="Harry" thumb="http://image.tmdb.org/t/p/original/dDZyaISuF9FVK18nTmsuDgOpyKl.jpg"/>
<Role id="4845" tag="Thom Barry" count="2" role="Agent Bilkins" thumb="http://image.tmdb.org/t/p/original/AhUa78UoZ5oGk5kWiatnDaPxSnO.jpg"/>
<Role id="4987" tag="Stanton Rutledge" role="Muse"/>
<Role id="298" tag="Noel Gugliemi" count="4" role="Hector" thumb="http://image.tmdb.org/t/p/original/mI5urNyZJAzIGxelTjBkm624DkB.jpg"/>
<Role id="4988" tag="RJ de Vera" role="Danny Yamato"/>
<Role id="4989" tag="Beau Holden" role="Ted Gassner" thumb="http://image.tmdb.org/t/p/original/23jEbLPudu9dzoxzWkUa1nM8nCS.jpg"/>
<Role id="265" tag="Reggie Lee" count="3" role="Lance Nguyen" thumb="http://image.tmdb.org/t/p/original/t3kM9otyaduJseoqFgfBXndtKa5.jpg"/>
<Role id="4990" tag="David Douglas" role="Rasta Racer"/>
<Role id="4991" tag="Peter "Navy" Tuiasosopo" role="Samoan Guard" thumb="http://image.tmdb.org/t/p/original/eHCOYGseOcgwfh4Rov3E9tpVFKJ.jpg"/>
<Role id="4873" tag="Neal H. Moritz" count="2" role="Ferrari Driver" thumb="http://image.tmdb.org/t/p/original/cNcsEYmoS4niCz3UkVAA09dUIob.jpg"/>
<Role id="4992" tag="Doria Clare Anselmo" role="Ferrari Passenger"/>
<Role id="4993" tag="Glenn K. Ota" role="Johnny's Father"/>
<Role id="4994" tag="F. Valentino Morales" role="Dispatcher" thumb="http://image.tmdb.org/t/p/original/w85eCnNP0VgmfV5NWyq2SvRGi2y.jpg"/>
<Role id="4995" tag="Mike White" role="Night Truck Driver"/>
<Role id="4996" tag="Delphine Pacific" role="Racer's Edge Clerk"/>
<Role id="4997" tag="Monica Tamayo" role="Monica"/>
<Role id="4998" tag="Megan Baker" role="Gimel"/>
<Role id="4999" tag="Tammy Monica Gegamian" role="Edwin's Babe"/>
<Extras size="1">
<Video ratingKey="10590" key="/library/metadata/10590" guid="iva://api.internetvideoarchive.com/2.0/DataService/VideoAssets(737571)?lang=en&bitrates=80,212,450,600,750,1500,8000&duration=95&adaptive=1&dts=0" type="clip" title="The Fast And The Furious" titleSort="Fast And The Furious" summary="" index="1" year="2001" thumb="/library/metadata/10590/thumb/1473640499" duration="95000" originallyAvailableAt="2001-03-14" addedAt="1473640499" extraType="1">
<Media videoResolution="720" id="14922" duration="95000" bitrate="1500" width="1280" height="720" aspectRatio="1.78" audioCodec="aac" videoCodec="h264" container="mp4" premium="1">
<Part id="15125" duration="95000" container="mp4" key="/services/iva/assets/737571/video.mp4?bitrate=1500" optimizedForStreaming="1">
<Stream id="36713" streamType="1" codec="h264" index="0" bitrate="1500" height="720" width="1280"/>
<Stream id="36714" streamType="2" selected="1" codec="aac" index="1" channels="2" language="English" languageCode="eng"/>
</Part>
</Media>
<Media videoResolution="480" id="14923" duration="95000" bitrate="750" width="640" height="480" aspectRatio="1.33" audioCodec="aac" videoCodec="h264" container="mp4" premium="1">
<Part id="15126" duration="95000" container="mp4" key="/services/iva/assets/737571/video.mp4?bitrate=750" optimizedForStreaming="1">
<Stream id="36715" streamType="1" codec="h264" index="0" bitrate="750" height="480" width="640"/>
<Stream id="36716" streamType="2" selected="1" codec="aac" index="1" channels="2" language="English" languageCode="eng"/>
</Part>
</Media>
<Media videoResolution="480" id="14924" duration="95000" bitrate="450" width="640" height="480" aspectRatio="1.33" audioCodec="aac" videoCodec="h264" container="mp4" premium="1">
<Part id="15127" duration="95000" container="mp4" key="/services/iva/assets/737571/video.mp4?bitrate=450" optimizedForStreaming="1">
<Stream id="36717" streamType="1" codec="h264" index="0" bitrate="450" height="480" width="640"/>
<Stream id="36718" streamType="2" selected="1" codec="aac" index="1" channels="2" language="English" languageCode="eng"/>
</Part>
</Media>
</Video>
</Extras>
</Video>
</MediaContainer>
Edited by bengel1087
Link to comment
Share on other sites

FrostByte

Hmm, okay then I'm not sure where Emby is getting codec id of "DTS" from then unless someone else does.  Just easier to have cmcg code around the issue :)

  • Like 1
Link to comment
Share on other sites

2.2.0i

Treat DTS and DCA interchangeably. - @@bengel1087

Add audio codec params for HU models. - @@LLDaLastDon

Splashscreen fades more gradually.

Improve hanndling of Audio Podcasts.

Live TV guide time should now be correct.

 

 

Treating DTS and DCA interchangeably may have unintended consequences. Please report back any strangeness as I think the problem it addresses is pretty rare.

@@LLDaLastDon - My bad, I had only added HU to the video codec selection, not audio., Doh. Let me know how this goes.

Live TV was disabled in the last build as the guide timing was in a bit of a state. Some scaffolding on my house that temporarily blocked my satellite dish gave me a fresh reason to sort it out. Since it's not widely used I think I'll start a separate thread for it.

Thanks for being an awesome community and helping out new users. You guys are great.

  • Like 4
Link to comment
Share on other sites

FrostByte

 

2.2.0i
 
@@LLDaLastDon - My bad, I had only added HU to the video codec selection, not audio., Doh. Let me know how this goes.

 

 

Ugg...my bad for not seeing that when I was looking

Edited by FrostByte
Link to comment
Share on other sites

 

2.2.0i

Treat DTS and DCA interchangeably. - @@bengel1087

Add audio codec params for HU models. - @@LLDaLastDon

Splashscreen fades more gradually.

Improve hanndling of Audio Podcasts.

Live TV guide time should now be correct.

 

Still having problems logging into the app.

 

Currently stuck on the login screen after selecting user.

 

Been there 5 minutes now.

 

I'll uninstall and reinstall.

Link to comment
Share on other sites

Reinstalled and logged in first time!

Can you gradually reapply your settings and find out exactly what is causing this?

Link to comment
Share on other sites

Can you gradually reapply your settings and find out exactly what is causing this?

I only change a couple, but will try.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...