OpusGang / awsmfunc

awesome VapourSynth functions
MIT License
17 stars 4 forks source link

How to use "RPU.bin"in the MapDolbyVision #28

Closed sayou112 closed 6 months ago

sayou112 commented 6 months ago

`src = core.ffms2.Source(r'bl.hevc',)

el = core.ffms2.Source(r'el.hevc',) rpu=core.ffms2.Source(r'RPU.bin',) src=awf.MapDolbyVision(src,el,rpu)` vapoursynth.Error: Index: Can't open 'RPU.bin' Which function should I use

quietvoid commented 6 months ago

src must be BL+EL+RPU, you don't need to specify the RPU path.

Otherwise it would be as

src = awf.MapDolbyVision(src, el, rpu='RPU.bin')