v18 Adding support for Atmos, TrueHD and DTS:X, DTS-HDMA audio only .mka files
#1
In Kodi 18.3 there are currently two issues (getting .mka files into the music library and playing bitstreamed codecs) that can be solved now for MKA files with these two hacks:

1. Getting Kodi to Playback bitstreamed Atmos, TrueHD, DTS:X and DTS-HDMA audio only:

Add a new text file to Kodi's userdata folder:

File named: playercorefactory.xml

File contents:

<playercorefactory>
<players>
<player name="VideoPlayer" audio="true" video="false">
<hidexbmc>false</hidexbmc>
</player>
</players>
<rules action="prepend">
<rule filetypes="mka" player="VideoPlayer"/>
</rules>
</playercorefactory>

This file tells kodi to use its video player to play mka files, meaning the audio track is bitstreamed to the AVR. Its video player can handle bitstreaming everything. Restart Kodi after adding the file.

Thanks to @jjd-uk for this workaround

Note: This won’t be required with 18.4 release as a fix is coming.


2. Getting Kodi to Import MKA Files into its Music Library:

Create an CUE file containing the album files: Example:

REM GENRE "Rock"
REM DATE 1987
PERFORMER "INXS"
TITLE "Kick 30"
FILE "01. Guns In The Sky.mka" WAVE
TRACK 01 AUDIO
TITLE "Guns In The Sky"
PERFORMER "INXS"
INDEX 01 00:00:00
FILE "02. New Sensation.mka" WAVE
TRACK 02 AUDIO
TITLE "New Sensation"
PERFORMER "INXS"
INDEX 01 00:00:00
FILE "03. Devil Inside.mka" WAVE
TRACK 03 AUDIO
TITLE "Devil Inside"
PERFORMER "INXS"
INDEX 01 00:00:00
etc

I've added a new tool to Music Media Helper (MMH) (see stickies thread here in Music sub forum) to Split MKV files containing chapters and convert to individual .mka files.

I've modified MMH's Tag and Rename tool to support MKA files and auto-creation of CUE files based on the MKA file names and its tags.

NOTE: MMH wont tag MKA (yet), use free MP3TAG to do that.
Reply


Messages In This Thread
Adding support for Atmos, TrueHD and DTS:X, DTS-HDMA audio only .mka files - by HomerJau - 2019-07-11, 10:30
Logout Mark Read Team Forum Stats Members Help
Adding support for Atmos, TrueHD and DTS:X, DTS-HDMA audio only .mka files0