Page 512 of 756

Re: Dolby Vision now possible through MP4 Mux.

Posted: Wed Oct 19, 2022 7:46 pm
by kazuma
reset_9999

what is the solution for untouched blurays for series? like game of thrones? will 4-1-1 work in this situation? there are 3 episodes per bluray. what is the best solution for this?

Re: Dolby Vision now possible through MP4 Mux.

Posted: Wed Oct 19, 2022 7:50 pm
by RESET_9999
FrostByte wrote: Wed Oct 19, 2022 7:30 pm
yes, the renaming is to deal with special characters and mkvmerge but indeed I forgot about the path.

Will correct in the next version but the code should be:


Code: Select all

rename %input% 1%fileext%& set input="%filepath%1%fileext%"
%mkvmerge_path% --output ^"%TEMP%chunk.mkv^" --compression 0:none ^"^(^" ^"%input%^" ^"^)^" --split parts:00:00:00-00:01:00
%mkvextract_path% "%TEMP%chunk.mkv" tracks 0:"%TEMP%el.chunk.hevc"
set DV="%TEMP%el.chunk.hevc"
rename %input% "%filename%%fileext%"

Re: Dolby Vision now possible through MP4 Mux.

Posted: Wed Oct 19, 2022 7:52 pm
by RESET_9999
kazuma wrote: Wed Oct 19, 2022 7:46 pm reset_9999

what is the solution for untouched blurays for series? like game of thrones? will 4-1-1 work in this situation? there are 3 episodes per bluray. what is the best solution for this?
Yes I guess you can do it with 4-1-1 one episode at a time.

Re: Dolby Vision now possible through MP4 Mux.

Posted: Wed Oct 19, 2022 9:34 pm
by FrostByte
RESET_9999 wrote: Wed Oct 19, 2022 7:50 pm
FrostByte wrote: Wed Oct 19, 2022 7:30 pm
yes, the renaming is to deal with special characters and mkvmerge but indeed I forgot about the path.

Will correct in the next version but the code should be:


Code: Select all

rename %input% 1%fileext%& set input="%filepath%1%fileext%"
%mkvmerge_path% --output ^"%TEMP%chunk.mkv^" --compression 0:none ^"^(^" ^"%input%^" ^"^)^" --split parts:00:00:00-00:01:00
%mkvextract_path% "%TEMP%chunk.mkv" tracks 0:"%TEMP%el.chunk.hevc"
set DV="%TEMP%el.chunk.hevc"
rename %input% "%filename%%fileext%"
Excellent. Thanks again.

Re: Dolby Vision now possible through MP4 Mux.

Posted: Wed Oct 19, 2022 10:07 pm
by kazuma
RESET_9999 wrote: Wed Oct 19, 2022 7:52 pm
kazuma wrote: Wed Oct 19, 2022 7:46 pm reset_9999

what is the solution for untouched blurays for series? like game of thrones? will 4-1-1 work in this situation? there are 3 episodes per bluray. what is the best solution for this?
Yes I guess you can do it with 4-1-1 one episode at a time.
how? there are 3 episodes on one bdmv file. i must select the 3 longest mpls files each by each i think?

Re: Dolby Vision now possible through MP4 Mux.

Posted: Wed Oct 19, 2022 10:29 pm
by RESET_9999
kazuma wrote: Wed Oct 19, 2022 10:07 pm i must select the 3 longest mpls files each by each i think?
yes i think so

Re: Dolby Vision now possible through MP4 Mux.

Posted: Thu Oct 20, 2022 2:19 pm
by Mrmorrison
Good evening.
I just signed up to this forum just to thank Reset_9999 (and everyone else who contributed) for making available to everyone the great work that has been done to get Dolby Vision on various devices.

Thank you very much from a happy owner (now even more :lol: ) of x800m2.

Re: Dolby Vision now possible through MP4 Mux.

Posted: Thu Oct 20, 2022 3:45 pm
by kazuma
what is the advantage of the sony x800 compared with my lg c9 internal player? can it play mkv dolby vision? i know there is a tabel on reset_9999 signature, but i was curious. i can buy a sony x800 for a good price. i'm not using pyshical discs. but is there a advantage-bump for dolby vision playback?

Re: Dolby Vision now possible through MP4 Mux.

Posted: Thu Oct 20, 2022 10:06 pm
by Gatorman
All of my recent DaVinci Resolve generated RPUs have a min_pq value of 0. This includes variable aspect ratio files as well as cropped files. Am I doing something wrong?

Re: Dolby Vision now possible through MP4 Mux.

Posted: Thu Oct 20, 2022 10:15 pm
by RESET_9999
Mrmorrison wrote: Thu Oct 20, 2022 2:19 pm Good evening.
I just signed up to this forum just to thank Reset_9999
you're welcome :D
kazuma wrote: Thu Oct 20, 2022 3:45 pm but is there a advantage-bump for dolby vision playback?
FEL files always work and are 100% stable.

Gatorman wrote: Thu Oct 20, 2022 10:06 pm All of my recent DaVinci Resolve generated RPUs have a min_pq value of 0. This includes variable aspect ratio files as well as cropped files. Am I doing something wrong?
Did you plot L1 ? because if you just look at a random frame with the dovi_tool it can be hard to find one.
If you did your blanking(or timeline resolution) correctly it should not be always 0

Image

you can also check in resolve:

left = blanking

Image

Re: Dolby Vision now possible through MP4 Mux.

Posted: Fri Oct 21, 2022 2:42 pm
by Gatorman
Bug in Workflow 1-1?

Screenshot (718).png
Screenshot (718).png (70.02 KiB) Viewed 17458 times

Re: Dolby Vision now possible through MP4 Mux.

Posted: Fri Oct 21, 2022 3:04 pm
by RESET_9999
when your two inputs have the same filename it causes conflict. just rename 1

EDIT: fixed in 1.6.3

Re: Dolby Vision now possible through MP4 Mux.

Posted: Fri Oct 21, 2022 11:08 pm
by Gatorman
RESET_9999 wrote: Thu Oct 20, 2022 10:15 pm
Gatorman wrote: Thu Oct 20, 2022 10:06 pm All of my recent DaVinci Resolve generated RPUs have a min_pq value of 0. This includes variable aspect ratio files as well as cropped files. Am I doing something wrong?
Did you plot L1 ? because if you just look at a random frame with the dovi_tool it can be hard to find one.
If you did your blanking(or timeline resolution) correctly it should not be always 0
I can see the values changing within Resolve. :D

I'm still working on getting the script to run correctly.

Re: Dolby Vision now possible through MP4 Mux.

Posted: Sat Oct 22, 2022 5:50 pm
by kazuma
reset_9999 deserves his own topic with his revolutunary tool. it's sad for newcomers to start in this topic that is already outdated.

Re: Dolby Vision now possible through MP4 Mux.

Posted: Sat Oct 22, 2022 6:29 pm
by RESET_9999
Gatorman wrote: Fri Oct 21, 2022 11:08 pm I'm still working on getting the script to run correctly.
yes, it's not easy to install, I struggled myself.

you have to install python and a couple of modules.
https://www.python.org/downloads/

you can install a module(ijson in that case) by typing this in a cmd window

Code: Select all

pip install ijson