Skip to content

Instantly share code, notes, and snippets.

@butterw
Created October 8, 2020 10:35
Show Gist options
  • Save butterw/96905c862145a6fc935258bd07423478 to your computer and use it in GitHub Desktop.
Save butterw/96905c862145a6fc935258bd07423478 to your computer and use it in GitHub Desktop.
mpv glsl hook to remove source chroma (UV)
//!HOOK CHROMA
//!BIND HOOKED
//!DESC ChromaOff
/* glsl-shader for mpv video player, removes yuv source chroma (keep luma)*/
vec4 hook(){
return vec4(0.5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment