Last active
May 8, 2021 22:08
-
-
Save julianxhokaxhiu/66a37f28766bdb8076abee9ac4efe1ce to your computer and use it in GitHub Desktop.
Force Google Stadia VP9 codec on each session
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
// ==UserScript== | |
// @name Stadia | |
// @namespace Stadia | |
// @version 0.1.1 | |
// @description Will force and vp9 on any Stadia URL. | |
// @author JulianXhokaxhiu | |
// @include https://stadia.google.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
// Force VP9 | |
localStorage.setItem("video_codec_implementation_by_codec_key", '{"vp9":"ExternalDecoder"}') | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment