Unrecognized transfer characteristics

Issue #26 invalid
Former user created an issue

Hi,

I'm getting the unrecognized transfer characteristics error. I saw that this problem was solved some months ago so I updated to R16 by compiling manually (stuck to R12 on aur). But I still got that error. You will find the mediainfo of the file in attachment.

Thanks in advance.

Comments (4)

  1. Aleksey Lyashin repo owner

    It is not vsedit error. Your video has transfer characteristics that VapourSynth internal "resize" plugin can not convert. Update VapourSynth itself or change the clip properties manually in the script.

  2. Aleksey Lyashin repo owner
    #!
    clip = core.std.SetFrameProp(clip, prop="_Matrix", delete=True)
    clip = core.std.SetFrameProp(clip, prop="_Transfer", delete=True)
    clip = core.std.SetFrameProp(clip, prop="_Primaries", delete=True)
    

    This would delete the colour conversion related properties.

    #!
    clip = core.std.SetFrameProp(clip, prop="_Matrix", intval=5) 
    

    This would set them to specific value. I don't know which values you need.

  3. Log in to comment