How to delay audio?

479

Solution 1

Media Player Classic Home Cinema (freeware, included in K-Lite codec pack) has a software-audio-delay function.

here is a guide on how to achieve this.

In short:

Go to View->Options->Internal Filters->Audio Switcher and here you can change the delay: enter image description here

MPC does support video streams (Any = Internet/Lan/Local).

Your second option, which is for both windows and mac, is to use an audio delay plugin which I found here

Solution 2

A free piece of software called EqualizarAPO which offers system-wide control of your audio can also do this. Install the software, run the 'configurator' in the program folder, choose the sound sources to control with EqualizerAPO, reboot, run 'peace.exe' in the program folder, go to 'effects' then 'delay' and change to the value which works.

I don't think it is also available for Mac though.

Share:
479

Related videos on Youtube

David Ball
Author by

David Ball

I am currently in the process of becoming a web developer. I have interests in most fields of science and technology and would love to have an interesting conversation with anybody that has one to offer. Chaotic-Neutral.

Updated on September 18, 2022

Comments

  • David Ball
    David Ball almost 2 years

    I'm currently trying to close an element when its style is different than "display = none". I'm having an error in the console telling me that lists. some aren't a function so I may not have understood well the "some" method.

    More Infos on what I want : Given that I have 3 lists (in lists), when I click outside of it or its elements I want to close all the lists)

    Thanks in advance

    const lists = document.querySelectorAll(".list");
    
    function closeList() {
        document.addEventListener("click", () => {
            if(lists.some((list) => list.style.display != "none")) {
                return lists.style.display = none;
            } else return;
        });
    };
    
    • Raju Ahmed
      Raju Ahmed about 2 years
      Please share your Html code so.
    • Medda86
      Medda86 about 2 years
      you should run the click event outside the function. And find out if the click is on or inside your .list element, else close all lists.
  • DavidPostill
    DavidPostill over 4 years
    Welcome to Super User! Please read How do I recommend software for some tips as to how you should go about recommending software. You should provide at least a link, some additional information about the software itself, and how it can be used to solve the problem in the question.