- Download & Install Sublime Text 3.2.2 Build 3211
- Visit https://hexed.it/
- Open file select sublime_text.exe
- Offset
0x8545: Original84->85 - Offset
0x08FF19: Original75->EB - Offset
0x1932C7: Original75->74(remove UNREGISTERED in title bar, so no need to use a license)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # white point estimated from the screenshots | |
| netflix | |
| .fmtc.transfer(transs='1886', transd='linear', cont=1.13309) | |
| .fmtc.primaries(prims='709', primd='709', wd=(0.29831, 0.312059), wconv=True) | |
| .fmtc.transfer(gcor=1/2.2) | |
| .std.RemoveFrameProps('_Transfer') | |
| # white point taken to be exactly D75 (no official spec, so the exact coordinates may vary depending on intermediate rounding) | |
| netflix | |
| .fmtc.transfer(transs='1886', transd='linear', cont=1.1239) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import vapoursynth as vs | |
| from vsdeinterlace import vinverse | |
| __all__ = ( | |
| 'smooth_stable_fade', | |
| 'unfade_unique_into_repeating', | |
| 'unfade_repeating_into_unique', | |
| 'fade_unique_into_repeating', | |
| 'fade_repeating_into_unique', |