Resolution Switcher



  1. AutoHotkey is an open-source tool for Windows that allows you to automate tasks through text scripts, and map them to any Windows key (as well as joystick and mouse events). The following script maps CTRL‑6 through CTRL‑9 to different screen resolutions (and refresh rates).
  2. Change Screen Resolution Using Windows Settings. This is the default and easiest way which.
  3. However it does not allow learner to switch the resolution of videos. Currently we are uploading 240p, 360p resolution videos. How can we implement the resolution switcher.
  1. Videojs Resolution Switcher Example
  2. Resolution Switcher Windows 10
  3. Switch Resolution Output
  4. Videojs-resolution-switcher.js
Switcher

I use a 39″ 4K monitor for my computer display because I appreciate a large work surface. Meanwhile, I also like to step away from my desk and use Chrome Remote Desktop on a small 14″ Chromebook to continue my work on the road. So I find myself frequently flipping resolutions, which on Windows 10 is not a simple one-click operation. What I really wanted was the ability to switch resolutions with a single keystroke, and AutoHotkey came to the rescue!

Videojs Resolution Switcher Example

Videojs-resolution-switcher.js

AutoHotkey is an open-source tool for Windows that allows you to automate tasks through text scripts, and map them to any Windows key (as well as joystick and mouse events). The following script maps CTRL‑6 through CTRL‑9 to different screen resolutions (and refresh rates). To use the script, install AutoHotkey, save the following script to a file with an “.ahk” extension, and then double-click the file. It will execute the script (with an icon in the system tray that you can use to shut it off). You can add the .ahk file to your Startup folder if you want the script to automatically start when you boot:

Resolution

Resolution Switcher Windows 10

User Agent Switcher overrides Chrome's default user agent, tricking websites into thinking you’re using a different browser. What’s a User Agent? A user agent is a small text description of your device that is sent with every web request.

Switch Resolution Output

To customize this script, you can change the hot keys (“^6” for example means CTRL‑6), and change the different resolutions. The parameters to ChangeResolution are:

Resolution Switcher
  • color_depth — The number of bits per pixel for color (leave at 32 for most purposes)
  • width — width of the screen in pixels
  • height — height of the screen in pixels
  • refresh rate — the screen frequency (typically 60Hz, but for some monitors like the Seiki, the 4K resolution is at 30Hz)

Videojs-resolution-switcher.js

I hope this helps you save time!