How to Remove NSFW Filter in FaceFusion 3.3.2
Tak23

Tak23 @tak23

Location:
Tokyo, Japan
Joined:
May 26, 2025

How to Remove NSFW Filter in FaceFusion 3.3.2

Publish Date: Jul 18 '25
12 10

FaceFusion has undergone significant improvements in the 3.3.0 update.
Installation time has been reduced from approximately 8 minutes to 40 seconds.
However, although not officially announced in the 3.3.1 update,
the previously known modification to “content_analyser.py” alone
is no longer sufficient to disable the NSFW Filter.
There are countermeasures available(No code), so please contact us if you are interested.
We do not consider it appropriate to post them here directly.

This countermeasure reflects the strong will of the developers and copyright holders,

and we generally agree with the statement in the official FAQ:

“We don't allow NSFW content due to ethical considerations.”

However, while “ethical considerations” are necessary,

shouldn't this be left to the discretion of individual users?

We also consider this to be a valid point.

Comments 10 total

  • Luca
    Luca Jul 20, 2025

    How can I disable the NSFW filter in FaceFusion 3.3.2 - Pinokio? Can you give me specific instructions? Thank you!
    Reply luchinco@hotmail.com

    • Tak23
      Tak23Jul 20, 2025

      With the 3.3.1 update, the previously known modification to content_analyser.py is no longer sufficient.
      A modification has been added to core.py to detect file tampering and stop execution.
      You can use AI to compare core.py with previous versions, find the modified parts, and take appropriate action.
      There are also ways to respond without coding. Please check them out.
      aiprovideos.com/facefusion-3-3-2-h...

    • zachneverdies
      zachneverdiesOct 2, 2025

      In your content_analyser.py replace the following:

      Replace

      def analyse_frame(vision_frame : VisionFrame) -> bool:
          return detect_nsfw(vision_frame)
      
      Enter fullscreen mode Exit fullscreen mode

      With

      def analyse_frame(vision_frame: VisionFrame) -> bool:
          return False
      
      Enter fullscreen mode Exit fullscreen mode

      Replace

      def detect_nsfw(vision_frame : VisionFrame) -> bool:
          is_nsfw_1 = detect_with_nsfw_1(vision_frame)
          is_nsfw_2 = detect_with_nsfw_2(vision_frame)
          is_nsfw_3 = detect_with_nsfw_3(vision_frame)
          return is_nsfw_1 and is_nsfw_2 or is_nsfw_1 and is_nsfw_3 or is_nsfw_2 and is_nsfw_3
      
      Enter fullscreen mode Exit fullscreen mode

      With

      def detect_nsfw(vision_frame: VisionFrame) -> bool:
          return False
      
      Enter fullscreen mode Exit fullscreen mode

      Next, in core.py, replace

      return all(module.pre_check() for module in common_modules) and content_analyser_hash == '803b5ec7'
      
      Enter fullscreen mode Exit fullscreen mode

      With

      is_valid = True
      return all(module.pre_check() for module in common_modules) and is_valid
      
      Enter fullscreen mode Exit fullscreen mode
      • Satyam Patel
        Satyam PatelOct 14, 2025

        Can you please help with 3.4.1

        • jek
          jekOct 14, 2025

          everything is the same except replace the lines below:

          return all(module.pre_check() for module in common_modules) and content_analyser_hash == '803b5ec7'

          with:
          is_valid = True
          return all(module.pre_check() for module in common_modules) and is_valid

          • zachneverdies
            zachneverdiesOct 31, 2025

            They catch on quick. Thanks! I updated my original post.

  • Cheng Kelvin
    Cheng KelvinAug 12, 2025

    如何在 FaceFusion 3.3.2 - Pinokio 中停用 NSFW 濾鏡?能給我具體說明一下嗎?謝謝!
    回覆kelvinmfc@yahoo.com

  • Steve
    SteveNov 1, 2025

    I had to do a reinstall of 3.4.1 and the modified files no longer seem to work and allow nsfw. Any ideas?

  • ramz11
    ramz11Dec 2, 2025

    How can I disable the NSFW filter in Pinokio FaceFusion 3.3.2 - I need the core.py instructions part thanks you
    reply in ramz11231@proton.me

  • 2 33
    2 33Mar 12, 2026

    How can I disable the NSFW filter in FaceFusion 3.3.2 - Pinokio? Can you give me specific instructions? Thank you!
    Reply luchinc 2275852831@qq.com

Add comment