|
| 1 | +import { Component, OnInit, ViewEncapsulation } from '@angular/core' |
| 2 | + |
| 3 | +@Component({ |
| 4 | + selector: `eqm-faq`, |
| 5 | + templateUrl: `./faq.component.html`, |
| 6 | + styleUrls: [`./faq.component.scss`], |
| 7 | + encapsulation: ViewEncapsulation.None |
| 8 | +}) |
| 9 | +export class FAQComponent implements OnInit { |
| 10 | + // tslint:disable:max-line-length |
| 11 | + QA: { Q: string, A: string }[] = [{ |
| 12 | + Q: `What is the point eqMac? What is an Audio Equalizer?`, |
| 13 | + A: `If if you feel like your audio hardware (headphones, speaker) does not have enough Bass (low frequency) punch, or vice versa, you can adjust that using eqMac. |
| 14 | + <br> |
| 15 | + Watch <a target="_blank" href="https://youtu.be/I6ZF_NHvqzU?t=41">THIS VIDEO</a> for a better explanation.` |
| 16 | + }, { |
| 17 | + Q: `How do you install eqMac?`, |
| 18 | + A: `Press the Download button on the home page. |
| 19 | + <br> |
| 20 | + Open the downloaded eqMac.dmg file (if you accidentally closed the window you can always reopen it by Finding it as a Drive in your Finder). |
| 21 | + <br> |
| 22 | + Drag the eqMac app into Applications directory. |
| 23 | + <br> |
| 24 | + Open eqMac.app from you Applications directory.` |
| 25 | + }, { |
| 26 | + Q: `Why is eqMac asking for Admin Password during the first launch?`, |
| 27 | + A: `The way eqMac works it needs to install an Audio Driver, to do that it needs your system password.<br>The app never sees your password as it uses secure Apple API to perform the install.` |
| 28 | + }, { |
| 29 | + Q: `Why is eqMac asking for permission to access my microphone?`, |
| 30 | + A: `macOS does not have direct way to access the System Audio stream, so we use the eqMac Audio driver to divert the system audio to the drivers input stream.<br>Then eqMac captures that input audio stream, processses it and sends it directly to the output device.` |
| 31 | + }, { |
| 32 | + Q: `Sometimes there are sound issues using eqMac?`, |
| 33 | + A: `Sometimes there are synching issues, try to switch away from eqMac audio device to your preferred output device and eqMac should restart the audio pipeline.<br>Alternatively, you can try to restart eqMac, that should help as well` |
| 34 | + }, { |
| 35 | + Q: `How do I uninstall eqMac?`, |
| 36 | + A: `The proper way to uninstall eqMac is to click the "Uninstall" button in eqMac Settings section. |
| 37 | + <br>That will run a script to uninstall the app and the driver properly. |
| 38 | + <br>If for whatever reason you cannot run eqMac, to install the driver you can run this command in Terminal: |
| 39 | + <br><br> |
| 40 | + <div class="terminal-command">sudo rm -rf /Library/Audio/Plug-Ins/HAL/eqMac.driver/ && launchctl kickstart -k system/com.apple.audio.coreaudiod &>/dev/null</div>` |
| 41 | + }] |
| 42 | + // tslint:enable:max-line-length |
| 43 | + |
| 44 | + constructor () { } |
| 45 | + |
| 46 | + ngOnInit () { |
| 47 | + } |
| 48 | + |
| 49 | +} |
0 commit comments