-1

I am running Ubuntu-Mate 22.04.

I play Amazon videos and often the light level is low.

I did a search but could not find any thing helpful.

Is there a way that I can make those light levels higher?

fixit7
  • 3,399

1 Answers1

1

I will assume you are watching Amazon videos in a browser at https://www.primevideo.com/ . Amazons says that option is available for all platforms.

If it's an app instead, it would be more difficult to modify the brightness. Any special video effects that Windows might have are bundled with the graphics driver. That is not generally available on Windows, and injecting stuff there is difficult.

Here, I will use the simple solution of injecting a stylesheet to apply a filter effect on the <video> element. This is easier and less invasive than trying to enhance the video through the Ubuntu system.

New simpler solution

  1. Click on https://userstyles.world/style/14430/increase-video-brightness
  2. Click on the cyan "Get Stylus" button. It is a privacy-respecting alternative to Stylish. If only the blue install button appears, skip to step 4
  3. Search for and click on either the Chrome or Firefox links
  4. Click on the blue "install button"
  5. Click on "Install style"
  6. Click on "Edit" if desired
  7. Click on "Save" after you finish editing
  8. Open your Amazon video. If it's not primevideo.com, then edit the domain.

Old solution

  1. Install TamperMonkey in Firefox.
  2. Create a new userscript and paste this into it
// ==UserScript==
// @name         Amazon videos brightness
// @namespace    http://tampermonkey.net/
// @version      2024-01-29
// @description  Increases amazon video brightness
// @author       https://github.com/danielzgtg
// @match        https://www.primevideo.com/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        GM_addStyle
// ==/UserScript==

(function() { 'use strict'; /* * Change the @match above to whatever website your Amazon videos are at. * Freely change the values inside the contrast and brightness below * to what you prefer. */ GM_addStyle(video { filter: contrast(110%) brightness(110%) !important; }); })();

  1. Save
  2. Open a new tab to your Amazon video
Daniel T
  • 5,339