Dolby Vision now possible through MP4 Mux.
-
- Posts: 2383
- Joined: Mon Aug 05, 2019 7:12 pm
Re: Dolby Vision now possible through MP4 Mux.
Looks like the new appleTV still wont support profile 8....
https://www.apple.com/apple-tv-4k/specs/
https://www.apple.com/apple-tv-4k/specs/
Re: Dolby Vision now possible through MP4 Mux.
very stupid of me your're right haha.RESET_9999 wrote: ↑Tue Oct 18, 2022 8:13 pmwell, the error says there is no DV on the disc...
Code: Select all
DISC INFO: Disc Title: Sound.of.Metal.2019 Disc Size: 91,665,747,092 bytes Protection: AACS2 Extras: Ultra HD, BD-Java BDInfo: 0.7.5.9 (compatible layout created by DVDFab 12.0.8.7) PLAYLIST REPORT: Name: 00001.MPLS Length: 2:00:58.668 (h:m:s.ms) Size: 90,951,825,408 bytes Total Bitrate: 100.24 Mbps VIDEO: Codec Bitrate Description ----- ------- ----------- MPEG-H HEVC Video 87287 kbps 2160p / 23.976 fps / 16:9 / Main 10 @ Level 5.1 @ High / 4:2:0 / 10 bits / 1000nits / HDR10 / BT.2020 AUDIO: Codec Language Bitrate Description ----- -------- ------- ----------- DTS-HD Master Audio English 3737 kbps 5.1 / 48 kHz / 3737 kbps / 24-bit (DTS Core: 5.1 / 48 kHz / 1509 kbps / 24-bit) DTS-HD Master Audio French 3787 kbps 5.1 / 48 kHz / 3787 kbps / 24-bit (DTS Core: 5.1 / 48 kHz / 1509 kbps / 24-bit)
Re: Dolby Vision now possible through MP4 Mux.
Well guess what? Just got the dune HD real vision 4k and same'Dolby vision Bt2020' on my lg c6 infobar(top left) on any DV file played. So maybe realtek 1619/lg oled bug.RESET_9999 wrote: ↑Tue Oct 18, 2022 11:13 amWith expensive Hd fury devices. At this point , it's better to get the Dune player instead of the Zidoo.
As My oppo203/MINIX u222 doesn't have this "bt2020" on DV files, can anyone with a rtk1619(Zidoo/dune/zappiti) & an lg oled check theirs so we can report it.
Many thanks.
Re: Dolby Vision now possible through MP4 Mux.
Bruhh I really like AppleTV as my main streaming device but they're really making it hard for people to like them. I think the few titles Hulu has in DV are Profile 8. How do you watch these with Apple TV? LolRESET_9999 wrote: ↑Tue Oct 18, 2022 8:26 pmLooks like the new appleTV still wont support profile 8....
https://www.apple.com/apple-tv-4k/specs/
I was reeeaally hoping they'd fix this for this next-gen model. The fake P5 is nice when you really need it but doesn't really work as a long-term solution for me.
Re: Dolby Vision now possible through MP4 Mux.
reset_9999 Whenever I do a quick RPU info summary (2-3) on a DV mkv the script renames the input file to "1.mkv". Is there a way to prevent it from renaming the original files? Thanks
FB
FB
-
- Posts: 2383
- Joined: Mon Aug 05, 2019 7:12 pm
Re: Dolby Vision now possible through MP4 Mux.
It's supposed to instantly rename it as the original when its done ??
Re: Dolby Vision now possible through MP4 Mux.
That's what I was hopingRESET_9999 wrote: ↑Wed Oct 19, 2022 10:38 amIt's supposed to instantly rename it as the original when its done ??

Re: Dolby Vision now possible through MP4 Mux.
It must be the spaces in my paths. My movies are all in folders like the example below for EmbyRESET_9999 wrote: ↑Wed Oct 19, 2022 10:38 amIt's supposed to instantly rename it as the original when its done ??
Code: Select all
\Movies\The Last Witch Hunter (2015)
Code: Select all
rename "%filepath%1%fileext%" "%filename%%fileext%"
Re: Dolby Vision now possible through MP4 Mux.
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?
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?
-
- Posts: 2383
- Joined: Mon Aug 05, 2019 7:12 pm
Re: Dolby Vision now possible through MP4 Mux.
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%"
Last edited by RESET_9999 on Wed Oct 19, 2022 7:54 pm, edited 2 times in total.
-
- Posts: 2383
- Joined: Mon Aug 05, 2019 7:12 pm
Re: Dolby Vision now possible through MP4 Mux.
Yes I guess you can do it with 4-1-1 one episode at a time.
Re: Dolby Vision now possible through MP4 Mux.
Excellent. Thanks again.RESET_9999 wrote: ↑Wed Oct 19, 2022 7:50 pmyes, 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.
how? there are 3 episodes on one bdmv file. i must select the 3 longest mpls files each by each i think?RESET_9999 wrote: ↑Wed Oct 19, 2022 7:52 pmYes I guess you can do it with 4-1-1 one episode at a time.
-
- Posts: 2383
- Joined: Mon Aug 05, 2019 7:12 pm
Re: Dolby Vision now possible through MP4 Mux.
yes i think so
-
- Posts: 33
- Joined: Thu Oct 20, 2022 2:13 pm
Re: Dolby Vision now possible through MP4 Mux.
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
) of x800m2.
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
