Showing posts with label mac os. Show all posts
Showing posts with label mac os. Show all posts

Thursday, 29 December 2022

Remove Video Background Without a Green Screen in OBS Studio

Remove Video Background Without a Green Screen in OBS Studio

Learn how to remove video background without a green screen in OBS Studio while recording or broadcasting. I assume basic familiarity with OBS.

OBS Studio — 27.0.1
OBS Background Removal Plugin — v0.3.0-beta

Download appropriate version based on your operating system.
Open plugin zip and copy above selected files.
Paste to OBS Studio.
Add Camera Filter in OBS Studio.
Add ‘Audio/Video’ Filter. Select Background Removal. You may need to restart OBS studio if it was open at the time of copying plugin files.
Tweak Parameters. Change background color from Black to Green.
Experiment with Segmentation Model.
Add background Media Source. (Image / Video)
Using locally downloaded file.
Background changed.
Reorder media source. Reposition & resize camera video as needed.
Right click on camera and select filters.
From ‘Effect Filters’, select ‘Chroma Key’
Tweak settings if needed. Defaults work fine in most of the cases.
Background replaced without Green Screen.

It’s really an amazing feature.

Wednesday, 28 December 2022

How to Check an MD5 Checksum of torrent file on desktop/laptop (PC/MAC) in 2023

 MD5 verification of downloaded media or files.


Description:

When downloading files for patching or drivers you may need to verify the file is complete.  This can be done by verifying the MD5 checksum from the steps below on your PC or Mac workstation.

Solution:

Windows

  1. Open the Windows command line.
    Press Windows + R, type cmd and press Enter.
    Alternative: You can also open command prompt or Windows PowerShell from the Start menu, of course.

  2. Go to the folder that contains the file whose MD5 checksum you want to check and verify.

    Command: Type cd followed by the path to the folder.
    Tip: You can drag and drop a folder from Windows Explorer to insert the path.

  3. Type the command below

    certutil -hashfile <file> MD5

    Replace <file> with the filename.

    Tip: You can use the Tab key to have Windows complete the file name.
    Example to get the MD5 hash for the file Example.txt:

    certutil -hashfile Example.txt MD5

  4. Press Enter.
    Compare the resulting checksum to what you expect:

    Verify an MD5 checksum on Windows 10 with certutil


​​​​​Mac

  1. Open Terminal.
  2. Navigate to the folder that contains the file whose MD5 checksum you want to verify.
  3. You can open Terminal right at a folder from Finder.
  4. Type md5 followed by the filename:
    md5 <file>
    Dragging and dropping: You can also type md5, then drag and drop the file you want to check onto the Terminal window.
  5. Press Enter.

Verify an MD5 Checksum on a Mac