Page 574 of 756
Re: Dolby Vision now possible through MP4 Mux.
Posted: Thu Jul 27, 2023 5:10 pm
by speeddemon
RESET_9999 wrote: Thu Jul 27, 2023 11:10 am
speeddemon wrote: Thu Jul 27, 2023 8:11 am
@RESET_9999 can I use your scripts to streamline using DoViBaker?
If so, what's the proper process for doing this so I can accomplish the following:
1. Encode to a lossless format (ideally ProRes 422 HQ) from DoViBaker using your scripts
2. I'd then like to separately encode the ProRes file to x265 using StaxRip so I can customize the settings myself.
3. Would it then be ok for me to inject the original RPU again from the P7 FEL version?
Thanks!
No need to convert to prores. Just make the avs script with 6-8-1, remove the subtitles/OSD and encode it directly in staxrip.
You have to convert the RPU to P8. Re-injecting the P7 rpu is wrong, it would be like applying FEL two times.
I had previously tried 6-9... is that the wrong flow?
Re: Dolby Vision now possible through MP4 Mux.
Posted: Thu Jul 27, 2023 5:21 pm
by RESET_9999
No, the output will be the same as staxrip.
6-9 is just automated and the encoding settings are hardcoded (except for preset and crf value)
Re: Dolby Vision now possible through MP4 Mux.
Posted: Fri Jul 28, 2023 4:37 am
by thirdmoon
@RESET_9999 On the Dolby vision excel file, you posted the L5 IMAX edits for Guardians of the Galaxy. How and where to use it? Thanks in advance.
Re: Dolby Vision now possible through MP4 Mux.
Posted: Fri Jul 28, 2023 5:51 am
by TheEqualizer
RESET_9999, hi, the 6-1-1 script is not working, it gives an error, the screenshot below, what could it be? I try on different movies, all contain HDR10+, which needs to be removed so that only HDR and DV remain. The script is currently DoVi_Scripts_1.8.9.3.beta_MKV, I tried it on other versions, there is no difference.

Re: Dolby Vision now possible through MP4 Mux.
Posted: Fri Jul 28, 2023 11:07 am
by RESET_9999
check out 1.8.9.5 later today.
Re: Dolby Vision now possible through MP4 Mux.
Posted: Fri Jul 28, 2023 3:01 pm
by RESET_9999
@RESET_9999 On the Dolby vision excel file, you posted the L5 IMAX edits for Guardians of the Galaxy. How and where to use it? Thanks in advance.
you edit all the frames to 0,0,276,276 with a json file and then you edit all the Imax frames to 0,0,68,68 with another json file.
dovi_tool.exe editor -i D:\input.bin -j D:\276.edits.json --rpu-out D:\276.edits.bin
dovi_tool.exe editor -i D:\276.edits.bin -j D:\68.edits.json --rpu-out D:\final.RPU.bin
276/276 json
Code: Select all
{
"mode": 0,
"active_area": {
"presets": [
{
"id": 1,
"left": 0,
"right": 0,
"top": 276,
"bottom": 276
}
],
"edits": {
"all": 1
}
}
}
68/68 json
Code: Select all
{
"mode": 0,
"active_area": {
"presets": [
{
"id": 1,
"left": 0,
"right": 0,
"top": 68,
"bottom": 68
}
],
"edits": {
"2313-8290": 1,
"12867-20599": 1,
"29662-30346": 1,
"44226-50210": 1,
"62482-71703": 1,
"90855-94414": 1,
"114450-114880": 1,
"120568-130909": 1,
"150232-163186": 1,
"180560-180982": 1,
"184049-187882": 1,
"197234-205633": 1
}
}
}
Re: Dolby Vision now possible through MP4 Mux.
Posted: Fri Jul 28, 2023 3:47 pm
by TheEqualizer
you edit all the frames to 0,0,276,276 with a json file and then you edit all the Imax frames to 0,0,68,68 with another json file.
dovi_tool.exe editor -i D:\input.bin -j D:\276.edits.json --rpu-out D:\276.edits.bin
dovi_tool.exe editor -i D:\276.edits.bin -j D:\68.edits.json --rpu-out D:\final.RPU.bin
Can you please tell me if this is related to imax and not imax scenes? And what does it give?
Re: Dolby Vision now possible through MP4 Mux.
Posted: Fri Jul 28, 2023 3:52 pm
by RESET_9999
TheEqualizer wrote: Fri Jul 28, 2023 3:47 pm
you edit all the frames to 0,0,276,276 with a json file and then you edit all the Imax frames to 0,0,68,68 with another json file.
dovi_tool.exe editor -i D:\input.bin -j D:\276.edits.json --rpu-out D:\276.edits.bin
dovi_tool.exe editor -i D:\276.edits.bin -j D:\68.edits.json --rpu-out D:\final.RPU.bin
Can you please tell me if this is related to imax and not imax scenes? And what does it give?
Not sure I understand what you mean...
Guardians of the Galaxy 3 bluray and web streaming have changing aspect ratios. Some scenes are 2.39(276/276) and some are 1.90(68/68).
Disney Plus should have the movie in full Imax though.

Re: Dolby Vision now possible through MP4 Mux.
Posted: Fri Jul 28, 2023 4:27 pm
by TheEqualizer
Perhaps you don’t quite understand me because of the translator, but you caught the essence, different frame sizes, imax scenes and ordinary ones. If the blu-ray and streaming versions were used, everything is identical in them, the scenes change exactly, what is this procedure for?
Re: Dolby Vision now possible through MP4 Mux.
Posted: Fri Jul 28, 2023 4:34 pm
by RESET_9999
Because the itunes DV source is cropped and doesnt have L5 metadata.
It doesn't matter for HDMI devices though, L5 is ignored and DV tone mapping is always applied to the whole image, letterbox included.
only the LG TVs internal player use that metadata.(I dont know about the other TVs brand)
Re: Dolby Vision now possible through MP4 Mux.
Posted: Fri Jul 28, 2023 4:56 pm
by TheEqualizer
I made a hybrid of uhd hdr and web-dl MA, there is a full frame, therefore, these manipulations are useless, if I understand you correctly.
Re: Dolby Vision now possible through MP4 Mux.
Posted: Fri Jul 28, 2023 5:07 pm
by TheEqualizer
RESET_9999 wrote: Fri Jul 28, 2023 11:07 am
check out 1.8.9.5 later today.
Will it be available for download soon?
Re: Dolby Vision now possible through MP4 Mux.
Posted: Fri Jul 28, 2023 5:09 pm
by RESET_9999
TheEqualizer wrote: Fri Jul 28, 2023 4:56 pm
I made a hybrid of uhd hdr and web-dl MA, there is a full frame, therefore, these manipulations are useless, if I understand you correctly.
useless as long as you don't use your TV internal player.
there is a full frame,
what?
Re: Dolby Vision now possible through MP4 Mux.
Posted: Fri Jul 28, 2023 5:11 pm
by RESET_9999
TheEqualizer wrote: Fri Jul 28, 2023 5:07 pm
Will it be available for download soon?
In a few hours when I get home.
You can use the hdr10plus_tool if you cant wait for me...
Code: Select all
hdr10plus_tool.exe remove input.hevc -o hdr10plus_removed_output.hevc
Re: Dolby Vision now possible through MP4 Mux.
Posted: Fri Jul 28, 2023 5:17 pm
by TheEqualizer
RESET_9999 wrote: Fri Jul 28, 2023 5:09 pm
TheEqualizer wrote: Fri Jul 28, 2023 4:56 pm
I made a hybrid of uhd hdr and web-dl MA, there is a full frame, therefore, these manipulations are useless, if I understand you correctly.
useless as long as you don't use your TV internal player.
there is a full frame,
what?
How bad it is that we speak different languages and we don’t understand each other well((((
Used on the built-in LG player, movies anywhere streaming service has a full frame, not cropped like amazon or itunes, I recognize or you will understand me this time)