As an Amazon associate we earn from qualifying purchases. Thanks for your support!                               
×

Best Anime Deals


Best Blu-ray Movie Deals, See All the Deals »
Top deals | New deals  
 All countries United States United Kingdom Canada Germany France Spain Italy Australia Netherlands Japan Mexico
One Piece: Collection 38 (Blu-ray)
$27.99
 
The Eminence in Shadow: Season 1 (Blu-ray)
$107.09
1 day ago
Queen Millennia: Complete TV Series (Blu-ray)
$53.99
 
Grave of the Fireflies (Blu-ray)
$17.89
 
Wistoria: Wand and Sword - Season 1 (Blu-ray)
$48.99
 
In the Land of Leadale: The Complete Season (Blu-ray)
$48.99
 
My Hero Academia: Season Seven, Part One (Blu-ray)
$48.99
 
Why Does Nobody Remember Me in This World? - The Complete Season (Blu-ray)
$48.99
16 hrs ago
Made in Abyss: The Golden City of the Scorching Sun - Complete Collection (Blu-ray)
$102.25
 
Solo Leveling: Season 1 (Blu-ray)
$63.69
 
I'm Standing on a Million Lives: Season 1 (Blu-ray)
$48.99
1 day ago
Haikyu!! The Dumpster Battle (Blu-ray)
$24.96
 
What's your next favorite movie?
Join our movie community to find out


Image from: Life of Pi (2012)

Go Back   Blu-ray Forum > Movies > Anime
Register FAQ Community Calendar Today's Posts Search


Reply
 
Thread Tools Display Modes
Old 07-21-2024, 05:55 PM   #7641
NLScavenger NLScavenger is offline
Blu-ray Ninja
 
NLScavenger's Avatar
 
Dec 2013
Netherlands
19
830
9
Default

Quote:
Originally Posted by gameguru View Post
Hi everyone. I could'nt find anything helpful on the internet so i figured id ask here. I'm trying to do the 0.88 gamma adjust on MPC. I'm no coder so im a bit lost. I tried the Levels command listed on https://www.animemusicvideos.org/for...c.php?t=111837 in Avisynth and that worked, but I wasn't able to get chapters, subtitles, etc. I was wondering if someone has created an HLSL shader that does the same thing as the Levels command? any help is appreciated.
mpv can do 0.88 gamma correction during playback via vapoursynth scripting. The vapoursynth screenshot comparison guide on the The Wiki covers the installation process, so I would suggest to install everything including the stuff for vs-preview (google thewiki comparison, not posting direct link because of piracy links). The Wiki also has an mpv guide (google thewiki mpv).

Something like this should do the trick:
Code:
import vstools
from vstools import vs, core

clip = video_in
clip = vstools.depth(clip, 32)
clip = core.std.Levels(clip, gamma=0.88, planes=0)
clip = core.resize.Lanczos(clip, format=vs.YUV444P16, range=0)
clip.set_output()
Save script as .vpy file and then map to a key in input.conf, e.g.
Code:
alt+d vf toggle vapoursynth=~~/vs-scripts/gamma.vpy
Example of using this script in mpv to fix gamma bug in Patlabor OVA 2013 release.

Last edited by NLScavenger; 07-21-2024 at 06:08 PM.
  Reply With Quote
Thanks given by:
BigOnAnime (07-22-2024), gameguru (07-21-2024), Mangaranga (07-21-2024), Naiera (07-21-2024)
Old 07-21-2024, 07:17 PM   #7642
Mangaranga Mangaranga is offline
Senior Member
 
Mangaranga's Avatar
 
Oct 2014
Default

Quote:
Originally Posted by NLScavenger View Post
The vapoursynth screenshot comparison guide on the The Wiki covers the installation process, so I would suggest to install everything including the stuff for vs-preview (google thewiki comparison, not posting direct link because of piracy links). The Wiki also has an mpv guide (google thewiki mpv).
Just wanted to say a big thanks for the above post.
I could never get any of the filters in MPV to work previously and now they all work.
  Reply With Quote
Thanks given by:
Naiera (07-21-2024), NLScavenger (07-21-2024)
Old 07-21-2024, 07:20 PM   #7643
gameguru gameguru is offline
Active Member
 
gameguru's Avatar
 
Feb 2019
Virginia
210
502
110
93
Default

Quote:
Originally Posted by NLScavenger View Post
mpv can do 0.88 gamma correction during playback via vapoursynth scripting. The vapoursynth screenshot comparison guide on the The Wiki covers the installation process, so I would suggest to install everything including the stuff for vs-preview (google thewiki comparison, not posting direct link because of piracy links). The Wiki also has an mpv guide (google thewiki mpv).

Something like this should do the trick:
Code:
import vstools
from vstools import vs, core

clip = video_in
clip = vstools.depth(clip, 32)
clip = core.std.Levels(clip, gamma=0.88, planes=0)
clip = core.resize.Lanczos(clip, format=vs.YUV444P16, range=0)
clip.set_output()
Save script as .vpy file and then map to a key in input.conf, e.g.
Code:
alt+d vf toggle vapoursynth=~~/vs-scripts/gamma.vpy
Example of using this script in mpv to fix gamma bug in Patlabor OVA 2013 release.
Ok, would that behave similarly to what ive already done with Avisynth? I use lossless MKV rips with chapters and subtitles and id like to have those available if possible. I used the Avisynth code and it did adjust the gamma, but I was locked out from choosing anything other than 1 audio track. Sorry for the questions I'm still a bit new to all this technical stuff.
  Reply With Quote
Old 07-21-2024, 07:54 PM   #7644
NLScavenger NLScavenger is offline
Blu-ray Ninja
 
NLScavenger's Avatar
 
Dec 2013
Netherlands
19
830
9
Default

Quote:
Originally Posted by gameguru View Post
Ok, would that behave similarly to what ive already done with Avisynth? I use lossless MKV rips with chapters and subtitles and id like to have those available if possible. I used the Avisynth code and it did adjust the gamma, but I was locked out from choosing anything other than 1 audio track. Sorry for the questions I'm still a bit new to all this technical stuff.
With the Avisynth method in MPC, you create a script to load the MKV, and MPC only receives the output. The splitter can't detect the audio, subtitles and chapters from the Avisynth output.

In mpv you can apply the vapoursynth filter after the video is loaded, and it lets you switch audio, subtitles and chapters without a problem.
  Reply With Quote
Thanks given by:
gameguru (07-21-2024)
Old 07-21-2024, 08:03 PM   #7645
gameguru gameguru is offline
Active Member
 
gameguru's Avatar
 
Feb 2019
Virginia
210
502
110
93
Default

Quote:
Originally Posted by NLScavenger View Post
With the Avisynth method in MPC, you create a script to load the MKV, and MPC only receives the output. The splitter can't detect the audio, subtitles and chapters from the Avisynth output.

In mpv you can apply the vapoursynth filter after the video is loaded, and it lets you switch audio, subtitles and chapters without a problem.
Ok thank you! What gui do you recommend for MPV as ive seen there's a bunch.
  Reply With Quote
Old 07-21-2024, 08:24 PM   #7646
NLScavenger NLScavenger is offline
Blu-ray Ninja
 
NLScavenger's Avatar
 
Dec 2013
Netherlands
19
830
9
Default

Quote:
Originally Posted by gameguru View Post
Ok thank you! What gui do you recommend for MPV as ive seen there's a bunch.
I personally only use the included barebones GUI and I change settings in a text editor, so I don't know enough to give recommendations.
  Reply With Quote
Thanks given by:
gameguru (07-21-2024)
Old 07-21-2024, 08:32 PM   #7647
gameguru gameguru is offline
Active Member
 
gameguru's Avatar
 
Feb 2019
Virginia
210
502
110
93
Default

Quote:
Originally Posted by NLScavenger View Post
I personally only use the included barebones GUI and I change settings in a text editor, so I don't know enough to give recommendations.
Ok I'll just try out the regular for now. I will probably only use MPV for these problematic Anime releases as I really enjoy the layout and settings of MPC for all my other content. Thank you for helping me.
  Reply With Quote
Thanks given by:
NLScavenger (07-21-2024)
Old 07-21-2024, 11:03 PM   #7648
gameguru gameguru is offline
Active Member
 
gameguru's Avatar
 
Feb 2019
Virginia
210
502
110
93
Default

Posting an update for those that care. I got sick of trying to download MPV Player from SourceForge (WOW that website sucks), I managed to find exactly what I needed on the doom9 Forums. Some beautiful soul created an Avisynth Filter that can modify the video after its loaded by the player.

https://forum.doom9.org/showthread.php?p=2000852

So now you can use MPC-HC and the Avisynth script in conjunction like you can with MPV.
  Reply With Quote
Old 07-23-2024, 11:06 PM   #7649
NLScavenger NLScavenger is offline
Blu-ray Ninja
 
NLScavenger's Avatar
 
Dec 2013
Netherlands
19
830
9
Default

Arcadia of My Youth - FRA BD vs JPN/USA BD
Comparison link

French BD from Black Box uses the unrestored master. The Japanese and USA BDs suffer from DNR and are slightly zoomed in due to additional stabilization.

FRA BD


JPN/USA BD


BDInfo FRA BD
Code:
Disc Label:     ALBATOR FILM
Disc Size:      36,511,666,908 bytes
Protection:     AACS
Playlist:       00003.MPLS
Size:           34,707,800,064 bytes
Length:         2:09:59.041
Total Bitrate:  35.60 Mbps
Video:          MPEG-4 AVC Video / 29,903 kbps / 1080p / 23.976 fps / 16:9 / High Profile 4.1
Audio:          Japanese / LPCM Audio / 2.0 / 48 kHz /  2304 kbps / 24-bit
Audio:          French / LPCM Audio / 2.0 / 48 kHz /  1536 kbps / 16-bit
Subtitle:       French / 19.22 kbps
Subtitle:       French / 0.63 kbps
Code:
Writing library                          : x264 core 148
Encoding settings                        : cabac=1 / ref=4 / deblock=1:0:0 / analyse=0x3:0x133 / me=umh / subme=9 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=1 / me_range=24 / chroma_me=1 / trellis=2 / 8x8dct=1 / cqm=1 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-2 / threads=12 / lookahead_threads=1 / sliced_threads=0 / slices=4 / nr=0 / decimate=1 / interlaced=0 / minigop=1 / stitchable=1 / constrained_intra=0 / bframes=2 / b_pyramid=0 / b_adapt=2 / b_bias=0 / direct=3 / weightb=1 / open_gop=1 / weightp=1 / keyint=24 / keyint_min=1 / scenecut=40 / intra_refresh=0 / rc_lookahead=24 / rc=2pass / mbtree=1 / bitrate=30000 / ratetol=1.0 / qcomp=0.60 / qpmin=3 / qpmax=69 / qpstep=4 / cplxblur=20.0 / qblur=0.5 / vbv_maxrate=35000 / vbv_bufsize=30000 / nal_hrd=vbr / filler=0 / ip_ratio=1.40 / aq=1:1.00


BDInfo USA BD
Code:
Disc Title: Arcadia of my Youth
Disc Label: Arcadia of my Youth
Disc Size: 47,848,169,212 bytes
Protection: AACS
Playlist: 01000.MPLS
Size: 38,883,661,824 bytes
Length: 2:10:00.042
Total Bitrate: 39.88 Mbps
Video: MPEG-4 AVC Video / 32988 kbps / 1080p / 23.976 fps / 16:9 / High Profile 4.1
Audio: Japanese / LPCM Audio / 2.0 / 48 kHz /  1536 kbps / 16-bit
Audio: Japanese / Dolby TrueHD Audio / 5.1 / 48 kHz /  1430 kbps / 16-bit (AC3 Embedded: 5.1 / 48 kHz /   640 kbps / DN -27dB)
Audio: English / Dolby Digital Audio / 2.0 / 48 kHz /   256 kbps / DN -31dB
Audio: English / Dolby Digital Audio / 2.0 / 48 kHz /   192 kbps / DN -31dB
Subtitle: English / 26.939 kbps
Subtitle: English / 0.449 kbps
  Reply With Quote
Thanks given by:
Academyratio (07-25-2024), kk1 (07-24-2024), Kyle15 (07-24-2024), Naiera (07-23-2024), Total Procall (07-24-2024)
Old 07-24-2024, 12:37 PM   #7650
CrashOveride95 CrashOveride95 is offline
Active Member
 
Oct 2021
5
49
Default

Rose of Versailles - 2014 Emotion JPN BD vs. 2024 Yamato Video ITA BD

https://slow.pics/c/SIzdi26v



Uses a magnetic audio source (Appears to be JPBD transfers)
Not 100% yet if the international version or the JPBD restoration was used, need to check certain episodes with major damage to know for sure
  Reply With Quote
Thanks given by:
Academyratio (07-25-2024), BigOnAnime (07-24-2024), Kyle15 (07-25-2024), NLScavenger (07-24-2024), peppapigstan (01-08-2025), Total Procall (07-24-2024)
Old 07-24-2024, 02:10 PM   #7651
NLScavenger NLScavenger is offline
Blu-ray Ninja
 
NLScavenger's Avatar
 
Dec 2013
Netherlands
19
830
9
Default

Another Amakusa corpse
  Reply With Quote
Thanks given by:
Academyratio (07-25-2024), CrashOveride95 (07-24-2024), Kyle15 (07-25-2024), SpaceDandy (07-25-2024), Total Procall (07-24-2024)
Old 07-24-2024, 09:59 PM   #7652
Total Procall Total Procall is offline
Active Member
 
Total Procall's Avatar
 
Oct 2021
Nottinghamshire UK
Default

Quote:
Originally Posted by CrashOveride95 View Post
Rose of Versailles - 2014 Emotion JPN BD vs. 2024 Yamato Video ITA BD

https://slow.pics/c/SIzdi26v



Uses a magnetic audio source (Appears to be JPBD transfers)
Not 100% yet if the international version or the JPBD restoration was used, need to check certain episodes with major damage to know for sure
Yikes.
  Reply With Quote
Old 07-24-2024, 10:45 PM   #7653
BigOnAnime BigOnAnime is offline
Blu-ray Knight
 
BigOnAnime's Avatar
 
Mar 2015
Minnesota, USA
17
671
714
Default

Disney's old release of Cinderella, is that you? Oh my gawd.
  Reply With Quote
Thanks given by:
Kyle15 (07-25-2024), Total Procall (07-26-2024)
Old 07-24-2024, 11:19 PM   #7654
SteamfloggerBoss SteamfloggerBoss is offline
Blu-ray Guru
 
SteamfloggerBoss's Avatar
 
Aug 2018
Worst user here
1
841
604
13
Default

Absolutely horrific.
  Reply With Quote
Thanks given by:
Kyle15 (07-25-2024), Total Procall (07-26-2024)
Old 07-25-2024, 11:39 AM   #7655
CrashOveride95 CrashOveride95 is offline
Active Member
 
Oct 2021
5
49
Default

Future Boy Conan - UKUHD vs. ITUHD

https://slow.pics/c/362Fce7m

Dynit UHD restores the Japanese telops. IMO it has the better encode as well.
Each episode on average on Dynit UHD is a whopping 15GB
  Reply With Quote
Thanks given by:
Naiera (07-25-2024), NLScavenger (07-25-2024), professorwho (07-25-2024), Total Procall (07-26-2024)
Old 07-25-2024, 03:24 PM   #7656
NLScavenger NLScavenger is offline
Blu-ray Ninja
 
NLScavenger's Avatar
 
Dec 2013
Netherlands
19
830
9
Default

Video "processing" (lavorazioni)



https://www.animeclick.it/news/10415...eagle-pictures
  Reply With Quote
Thanks given by:
Academyratio (07-25-2024), ComicMelon (07-30-2024), CrashOveride95 (07-25-2024), Kyle15 (07-25-2024), Naiera (07-25-2024), professorwho (07-25-2024), SteamfloggerBoss (07-25-2024), Total Procall (07-26-2024)
Old 07-30-2024, 04:36 PM   #7657
ComicMelon ComicMelon is offline
New Member
 
ComicMelon's Avatar
 
Oct 2023
West Virginia
Default

Usually I lurk but like... and I hate to say mean things. But I would be more than happy if that man lost his job.

Last edited by ComicMelon; 07-30-2024 at 04:37 PM. Reason: elaborate
  Reply With Quote
Thanks given by:
Academyratio (07-30-2024), Kyle15 (07-30-2024), NLScavenger (07-30-2024), professorwho (07-30-2024), SMD88 (08-04-2024), Total Procall (07-30-2024)
Old 07-31-2024, 10:06 PM   #7658
Mangaranga Mangaranga is offline
Senior Member
 
Mangaranga's Avatar
 
Oct 2014
Default

Kind of an expanded crosspost from the better Region B discs thread since I never posted about it here previously.

The JP and US BDs of Tiger & Bunny The Rising both suffer from audio defects.
On the JP BD, it's incredibly obvious from the moment the film starts and the opening song plays that something is up with the 5.1 track.
This is currently the only clip I still have comparing the two (it's an MKV with two audio tracks). The Spectrograms also suggest something is very screwed. Stereo track is fine.

For the US BD - I haven't actually done any deep dive on it as I haven't had access to the audio from that for many years. From what I remember the JP audio sounded fine, but the English 5.1 audio mix was screwed, with the left side of the audio mix being significantly quieter than the right.

The UK BD by MediaOCD seems to be the only release that offers both languages in a non screwed presentation, whilst also offering the best subtitle readability and significantly better compression than the US BD, as I remember that one falling apart constantly in the OP.

Last edited by Mangaranga; 07-31-2024 at 10:12 PM.
  Reply With Quote
Thanks given by:
Academyratio (07-31-2024), BigOnAnime (08-01-2024), kk1 (08-01-2024), professorwho (07-31-2024), SteamfloggerBoss (07-31-2024), Total Procall (08-04-2024)
Old 08-14-2024, 02:44 PM   #7659
Tylerfan Tylerfan is offline
Blu-ray Samurai
 
Tylerfan's Avatar
 
Feb 2020
Somewhere in Canada
42
322
274
11
28
5
2
Default

Site reviews for The Boy and the Heron are up:
Blu-ray / Standard 4K / Steelbook
  Reply With Quote
Old 08-14-2024, 06:01 PM   #7660
lilwolf555 lilwolf555 is offline
Junior Member
 
Feb 2024
Default

Just discovered JJK US Blu rays looked different from my.. downloads and thought the downloads did gamma wrong but turns out, it's the US blus from this thread..

Luckily I got the limited edition for cheap. But ffs I bought em to rip to have best quality and that isn't the case. Sigh.

Seeing the subtitle work on UK vs US is sad too (no song subs on US blu irked me). What company did the encodes for the UK if it wasn't Viz? Sorry if I missed it in here.

Lesson learned I guessed. Looks like once season 2 comes along I'll be importing UKs.
  Reply With Quote
Reply
Go Back   Blu-ray Forum > Movies > Anime



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:28 AM.