For the record I didn't change/alter anything.jcdr428 wrote: ↑Mon Mar 30, 2020 2:18 pmSo your have hacked the Blu-ray dual tracks to move the second track to an EL layer in the first track. The resulting single track is BL+EL (which should be profile 4) with HDR10 (which should be profile 8 ), but is definitely not profile 5 (which is DV IPT without EL). You should ask Dolby to create a new profileMastaG wrote: ↑Mon Mar 30, 2020 10:27 amAs you can see it reports: 04.06.
Shouldn't it report profile 05 instead?
Because your PR has been merged: https://github.com/justdan96/tsMuxer/pull/264 and I built the latest rev, which should include your fix.
Edit: I don't really know how I should classify the profiles for your hacked files, but I've pushed the following to tsMuxer:Code: Select all
// cf. "DolbyVisionProfilesLevels_v1_3_2_2019_09_16.pdf" int profile = 0; if (!isDVBL) // dual HEVC track profile = 7; else if (m_hdr->isDVEL) profile = 4; else if (m_sps->colour_primaries == 2 && m_sps->transfer_characteristics == 2 && m_sps->matrix_coeffs == 2) // DV IPT color space profile = 5; else profile = 8;
I just updated yusecope's tool from 0.0.3 to 0.0.3 rev1 and updated tsmuxer to the latest git revision.
No changes/patches.. I'm remuxing the EL/BL straight from the Blu-ray disc, convert them with yusecope's python tool and then use tsmuxer to create a .ts file from the output of it.
So I'm not using mp4muxer.
Now previously this used to work on my LG C8.
Now it doesn't work any longer and just skips.
So either the upgrade of yusecope's tool or tsmuxer caused it.
So I assumed the profile was wrong in the resulted .ts file, since perhaps it requires 5 instead of 4, but I'm not sure.
It can also be rev1 of yusecope's tool producing different conversion causing the stutters.