-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?

5
  • 1
    What is the distinction between the light level in the Amazon video and your whole system? Is increasing your screen brightness on your monitor or through your laptop function buttons enough? Or do you want something like askubuntu.com/a/694984/1004020 ? The live video enhancement stuff from Windows isn't widespread on Linux, and if you still want that, you can try messing with adding ReShade to your browser
    – Daniel T
    Commented Jan 28 at 23:38
  • @Daniel T I do not need my light level increased for my whole system. I do not run Windows, so it does not apply.
    – fixit7
    Commented Jan 29 at 0:07
  • Are you watching Amazon videos on primevideo.com ? If you are able to watch there, I could try writing a userscript for you
    – Daniel T
    Commented Jan 29 at 0:14
  • You could just increase the gamma of your display. If you use an Nvidia card there is an easy command for this. Probably for other systems too. Commented Jan 29 at 1:19
  • 1
    @OrganicMarble The gamma solution was exactly what the top answer in the question I linked suggested. Unfortunately the asker does not seem to want to change anything in the system outside of the video.
    – Daniel T
    Commented Jan 29 at 1:21

1 Answer 1

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
6
  • I installed TamperMonkey. How do I install the userscript?
    – fixit7
    Commented Jan 29 at 0:39
  • 1. Click on the TamperMonkey icon (click on the extensions puzzle piece icon if it's not there) 2. Click on "Dashboard" 3. Click on the "[+]" tab
    – Daniel T
    Commented Jan 29 at 0:40
  • There is no dashboard.
    – fixit7
    Commented Jan 29 at 1:00
  • @fixit7 I added screenshots for every step
    – Daniel T
    Commented Jan 29 at 1:10
  • 1
    @fixit7 Ok, I replaced the userscript with a simpler, clickable userstyle solution that uses the safer Stylus extension
    – Daniel T
    Commented Jan 29 at 3:36

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .