HHWForum.hu
Filmek
TV Sorozatok Feliratos filmek Szinkronos filmek HD és Blu-ray Karácsony Online nézhető filmek Film kollekciók Mobilos filmek Rajzfilmek Dokumentum filmek Horror filmek Magyar filmek DVD ISO HUN DVD ISO ENG DVD-Rip ENG 3D filmek Zenés filmek
Zenék
Zenei Kérések Videóklippek, koncertfelvételek OST Single
Játékok
Játék Kérések
XXX
XXX Játékok XXX Magyar XXX Sorozatok, Gyűjtemények XXX Képek XXX Magazinok, képregények XXX Videók és Rövid filmek
Mobil
Mobilos filmek Mobilos programok Androidos játékok Mobil Háttérképek Csengőhangok
Programok
Windows Op. ISO ENG Windwos Op. ISO HUN Microsoft Office MacOS Program Kérések
Háttérképek
Templates Háttérképek Témák
E-könyvek
E-könyv Kérések Külföldi könyvek Hangoskönyvek Külföldi magazinok Gyerek hangoskönyvek Gyerekdalok
Mai Friss
Belépés   Regisztráció
Belépés
Felhasználónév
Jelszó: Elfelejtett jelszó?
 


Keresés
A fő kategória kiválasztásával az alfórumokban is keres.
Saját feltöltéseim
HHWForum.hu Letöltések Programok MacOS Krisp 2.51.3 [Intel/Apple] [Lic]

  • 0 szavazat - átlag 0
  • 1
  • 2
  • 3
  • 4
  • 5
Rétegzési módok
Krisp 2.51.3 [Intel/Apple] [Lic]
Nem elérhető Farid-Khan
Uploader
******
Üzenetek: 71,366
Témák: 74,592
Thanks Received: 1 in 1 posts
Thanks Given: 0
Csatlakozott: Jun 2023
Értékelés: 0
#1
2025-01-11. 03:29
[Kép: 0866b0ca834ddb2318888bd2364b469d.png?r=1]

Developer : Krisp Technologies
Platform : Intel/Apple Silicon Universal
Interface language : En
Tablet : Proxy for faking server response and removing time limits for use
System Requirements : Fake server to remove noise reduction time limit Tested on MacOS Sequoia 15.2

Description : Program for noise suppression (fan noise, crying children, barking dogs, keyboard sounds, etc.), voices in the background and echo suppression.
The binary is original. I am posting it in the distribution, but you can just as easily download it from the official website.
To use Krisp you will need an account on krisp.ai and you will need to log in from the program, because... the tablet simply modifies the server's response to remove the time limit on use.
If after rebooting the system the time limit in krisp appears again, then simply restart the application.
Add. information :
How the tablet works
1) An additional IP 127.0.0.4 is added on the local interface. This is necessary so as not to occupy port 443 on 127.0.0.1.
2) A simple HTTP server in Python is launched on this IP, which can respond to HTTP requests sent by Krisp. In this case, the responses contain information that the subscription is active. This HTTP server is added to startup as LaunchDaemon in MacOS.
3) A TLS certificate is generated (on your machine, no one except you has access to it) and added to Keychain Access for HTTPS
4) Next, the tablet asks you to set the "Always Trust" option in the certificate settings in Keychain Access. This is necessary for MacOS to "recognize" the fake http server and for Krisp to perceive it as its API server.
5) An entry is added to /etc/hosts "127.0.0.4 api.krisp.ai" so that requests to this domain go to our fake HTTP server, which runs locally. (and also analytics.krisp.ai and o248321.ingest.sentry.io so that Krisp does not send data to Krisp servers again)
After this, all requests from the Krisp application go to the HTTP server, which runs locally and always reports that there is no time limit for using the noise reduction.
Most likely, new versions of Krisp will continue to work without problems without updating the tablet.
Here you can see which version is the latest:
Idézet:A kódrészlet megtekintéséhez be kell jelentkezned, vagy nincs jogosultságod a tartalom megtekintéséhez.
https://whatsnew.krisp.ai/

If there are problems with Docker or services that listen on port 443
Relevant for developers. The fake server listens on port 443 on 127.0.0.4. If you have services on this port on your computer that bind to all IP addresses (those "0.0.0.0"), then the fake server will not start due to the busy port. The same thing, if you first launch a fake server, and then try to launch something that binds to all ips (0.0.0.0), it will not start because of the fake server. The solution is to bind only to the required IP services on port 443. For example, when using Docker, you can bind port 443 to only 127.0.0.1.
Or simply do not use the tablet and remove it, see "How to remove the tablet?"

Treatment
Attention: The script requires root (sudo). To avoid mistrust, the tablet is designed in the form of scripts and everyone can look at the code for themselves. Krisp itself can be used from the official website; it is not necessary to install it from the included installer.
1) Mount the dmg file by double clicking. Open the terminal. Enter the command:
Code:
cd /Volumes/Krisp2Activator && sudo ./install.shand press Enter
2) You may be prompted to install "MacOS command line developer tools" because... Python 3 is needed on the system to run the http api server for Krisp. In this case, install it. Then we return to step 1.
3) Keychain Access will open. Instructions on what to do will appear in the terminal (in En). Or here in Ru:
In Keychain Access, enter "api.krisp.ai" in the search, double-click, open the "Trust" section, select "Always Trust" next to "When using this certificate", close the window and confirm by entering your password or Touch ID.
4) Repeat step 4 for "api.krisp.ai.ca"
5) (re)launch Krisp and that's it, you have an application without time limits.

How to remove the tablet?
1) Run the uninstall.sh script or run directly in the terminal:
sudo rm -f /Library/LaunchDaemons/krispHttpApi.plist
sudo security delete-certificate -c "api.krisp.ai"
sudo security delete-certificate -c "api.krisp.ai.ca"
sudo rm -f /usr/local/bin/krisp-http-api.py
sudo rm -f /usr/local/krispServer.pem
sudo rm -rf /tmp/krisp-certs
sudo /usr/bin/sed -i "" '/api\.krisp\.ai/d' /etc/hosts
sudo /usr/bin/sed -i "" '/analytics\.krisp\.ai/d' /etc/hosts
sudo /usr/bin/sed -i "" '/o248321\.ingest\.sentry\.io/d' /etc/hosts
sudo launchctl unload /Library/LaunchDaemons/com.example.mydaemon.plist
sudo launchctl remove /Library/LaunchDaemons/krispHttpApi.plist
2) Remove 3 lines from the /etc/hosts file
127.0.0.4 analytics.krisp.ai
127.0.0.4 o248321.ingest.sentry.io
127.0.0.4 api.krisp.ai
3) Restart Krisp

⋆?- - - - -☽───⛧ ⤝❖⤞ ⛧───☾ - - - -?⋆

⭐️ Krisp 2.51.3 [Intel/Apple] [Lic] ✅ (403.85 MB)
RapidGator Link(s)
Idézet:A kódrészlet megtekintéséhez be kell jelentkezned, vagy nincs jogosultságod a tartalom megtekintéséhez.
NitroFlare Link(s) (Premium Link)
Idézet:A kódrészlet megtekintéséhez be kell jelentkezned, vagy nincs jogosultságod a tartalom megtekintéséhez.

  •
A szerző üzeneteinek keresése
Válaszol


Hasonló témák...
Téma: Szerző Válaszok: Megtekintések: Utolsó üzenet
  Apple Creator Studio 2026.04 Multilingual MacOS SKIKDA 0 38 2026-04-11. 13:22
Utolsó üzenet: SKIKDA
  SOLO Intel MORiA - (914 MB) Farid-Khan 0 59 2026-03-23. 07:47
Utolsó üzenet: Farid-Khan
  Native Instruments Traktor Pro 4 4.4.2 158 Intel-Apple [HCiSO] - (353 MB) Farid-Khan 0 58 2026-03-23. 07:45
Utolsó üzenet: Farid-Khan
  Presonus - Studio One 7.2.2 [Intel/Apple] Farid-Khan 0 51 2026-03-06. 05:31
Utolsó üzenet: Farid-Khan
  HZE Pedal Series vol.1 & vol.2 1.0.1 [Intel/Apple] Farid-Khan 0 49 2026-02-26. 06:15
Utolsó üzenet: Farid-Khan
  Apple Creator Studio 2026.01 macOS crakyman 0 20 2026-02-03. 23:15
Utolsó üzenet: crakyman
  Apple Creator Studio 2026.01 Multilingual MacOS SKIKDA 0 22 2026-02-03. 18:23
Utolsó üzenet: SKIKDA
  Apple Motion 6.0 Multilingual MacOS - (2.59 GB) Farid-Khan 0 30 2026-02-02. 02:50
Utolsó üzenet: Farid-Khan
  Apple MainStage 4.0 - (1 GB) Farid-Khan 0 33 2026-02-02. 02:48
Utolsó üzenet: Farid-Khan
  Apple Compressor 5.0 Multilingual MacOS - (122 MB) Farid-Khan 0 39 2026-02-02. 02:46
Utolsó üzenet: Farid-Khan

Digg   Delicious   Reddit   Facebook   Twitter   StumbleUpon  


Jelenlevő felhasználók ebben a témában:
1 Vendég

  •  
  • Vissza a lap tetejére  
  •  Kapcsolat
Design © 2026 Orpheus
MyBB, © 2002-2026 MyBB Group.
Jogi nyilatkozat A fórum szerverén nem található meg a tényleges tartalom, szerzői jog és egyéb jog által védett adatokat, tartalmat nem tárol, csak más weboldalakon elhelyezett tartalomra mutató linkek láthatók. A fórumon előzetes moderáció nélkül bárki hozzászólhat, ezért a fórum tulaja, adminisztrátorai, moderátorai nem vállalnak felelősséget az oldalon elhelyezett anyagok jogszerűségét illetően. A személyiségi valamint szerzői és szomszédos jogokat sértő hozzászólásokat megalapozott indokú kérésre eltávolítjuk az oldalról. admin[kukac]hhwforum.hu
Lineáris
Rétegezett
Megtekintés nyomtatható verzióban
Feliratkozás a témára
Szavazás hozzáadása ehhez a témához
Send thread to a friend