quietvoid wrote: ↑Mon Nov 02, 2020 2:02 pm
yusesope wrote: ↑Mon Nov 02, 2020 11:52 am
@quietvoid, if the file works, would you like to test everything before I make it public?
So I can be sure that the new process works on a full movie and on an LG TV.
Thanks!
Sure.
I just sent you a PM with what you need!
When you feel like it, give it a try!
Thanks!
PlatypusW wrote: ↑Mon Nov 02, 2020 9:29 pm
I think you already knew the result but just for completion sake:
On my CX both files did the usual "This file cannot be recognised. Do you want to play the next file?"
FDM80 wrote: ↑Mon Nov 02, 2020 10:55 pm
Both files properly trigger DV mode and play on the LG C7.
quietvoid wrote: ↑Mon Nov 02, 2020 6:51 pm
Both seem to work and playback the same, triggering Dolby Vision on the C8.
It seems that 2020 LG TVs actually have some issues with the DTDL mp4 files generated by both Dolby's mp4muxer and my tool.
I advise the owners of the latter to use files with profile 8.1 (as soon as I have some time, I will update the GAMMA post with instructions to generate MP4 files).
cuculain wrote: ↑Mon Nov 02, 2020 8:12 pm
neither of the new files are recognized by the internal Panasonic Z1000 oled / Zidoo Z9x ......... both files played as HDR only
kws53 wrote: ↑Mon Nov 02, 2020 8:54 pm
all MP4 samples (including the new 021120 ones) only play HDR. MP4 and Shield apparently do not play well together.
DTDL files can only be played on LG TVs and bluray players.
kws53 wrote: ↑Mon Nov 02, 2020 8:54 pm
I've now standardized on using the GAMMA method. I'd like to add Chapters to the MKV file. Any thoughts on how I should proceed?
I haven't tried it yet. Try like this:
using GAMMA, in the second command line:
- replace
Code: Select all
-i \path\to\your\original\file.m2ts
with
where \path\to\bluray must be the address of the folder that contains the BDMV folder.
.
- before -c copy add the switch -map_chapters 1
EXPLANATION:
On blu-ray chapters are stored in mpls files.
With the
"-i bluray:" switch you tell FFmpeg to read the longest playlist (mpls).
With the
-map_chapters switch instead you tell FFmpeg to copy the chapters from the second input and insert them in the output file. Remember that, as in programming languages, the first element is always zero. So, in this case, the second input is one (-map_chapters 1)!
I invite you to read how these switches work (
bluray and
map_chapters).
With FFmpeg you can do whatever you want. It's up to you to read the documentation.