Skip to main content

Spirit Talker

Inside the Spirit Talker App: How It Works — And Why It Scores 10/10 on the “Fake” Scale

Conclusion upfront: 10/10 FAKE.

Today I focused on another massively popular “spirit communication” app called Spirit Talker. It’s widely used in paranormal communities, and many people believe it provides intelligent, contextual responses from spirits.

After fully decompiling the application and analyzing every part of its code, here’s what it actually does — and more importantly — what it doesn’t do.


Dictionary Type

→ Encrypted, pre-written word lists.

Instead of hard-coding the words like ParaTek or Ovilus-style App Inventor apps, Spirit Talker stores its vocabulary inside encrypted files. When the app opens, it simply decrypts these files into memory.

  • No words are generated by AI.
  • No words come from external sources.
  • Everything the app can ever say is written ahead of time.

There is no communication channel with spirits or anything external.


Dictionary Source Used

Not officially declared by the developer, but the structure is extremely similar to Ovilus/ParaTek-style lists:

  • Short words
  • Names
  • Verbs
  • Emotional phrases
  • “Creepy” vocabulary

These are not dynamically created or influenced by spirits — they’re just files the app secretly unpacks.


Developed With

→ Native Android (not App Inventor), but operating on the same principle: pick a word at random.

While Spirit Talker is more sophisticated than basic App Inventor apps, the underlying system is still the same:

  • Load a dictionary
  • Shuffle it
  • Generate a number
  • Pick a word

There is zero actual paranormal processing involved.


How the Word System Works

Here’s what the source code shows plainly:

Step 1 — Load encrypted dictionary file

The app reads an encrypted file, decrypts it using a simple custom cipher, and splits it into thousands of individual words.

Step 2 — Shuffle the dictionary

The entire word list is randomized on startup.

Step 3 — Collect sensor noise

Gyroscope, magnetometer, accelerometer, light sensor, orientation… but here’s the key: none of these values are analyzed or interpreted. They are simply turned into numbers to stir the randomizer.

Step 4 — Convert everything into a giant “seed number”

This doesn’t detect ghosts. It’s just a way to generate variety. The app combines sensor readings and time into a big number that acts as a seed.

Step 5 — Pick a word from the list

The app uses simple math (like modulo operations) to turn the seed into:

  • A row in the word grid
  • A column in the word grid
  • A final word

It is conceptually the same as the “Magic 8 Ball” examples you see in visual programming tutorials — just dressed up with encryption and graphics.


How the “EMF Graph” Works

Exactly like ParaTek, these “AI meters,” “spirit bars,” and “energy fluctuations” are all fake visual effects.

  • They are not EMF readings.
  • They are not EVP processing.
  • They are not paranormal anything.

The graph only reacts to:

  • Phone motion
  • Phone rotation
  • Sensor jitter
  • Ambient noise in the hardware values

It’s an illusion of intelligence, not evidence of anything supernatural.


What I Found No Evidence Of

After reviewing the entire codebase, there is no evidence of:

  • Speech recognition
  • EVP filtering
  • EMF scanning
  • Temperature sensors
  • Environmental pattern detection
  • Signal processing
  • AI or machine learning
  • Any paranormal-specific logic

It simply does not have the capabilities necessary for “spirit communication.”


The Illusion Explained

The reason Spirit Talker feels intelligent:

  • Randomness + spooky UI = perceived meaning
  • Sensor motion makes the app “respond” when you move
  • Vague word lists allow coincidence to look intentional
  • Human brains connect patterns where none exist
  • Atmospheric graphics prime you to expect contact

It’s a beautifully crafted illusion — but still an illusion.


Conclusion: 10/10 FAKE

If the scale is:

  • 1 = real spiritual communication
  • 10 = completely fake

Then Spirit Talker earns a perfect:

⭐ 10/10 — 100% FAKE ⭐

It is:

  • A random word generator
  • Using encrypted dictionaries
  • Driven by sensor noise
  • Wrapped in convincing animations

It cannot detect spirits.
It cannot interpret messages.
It cannot communicate with the dead.

It’s entertainment — nothing more, nothing less.

Comments

Popular Posts

ITC Paralus

Today I checked out  ITC Paralus . Not much to say here as this is just a different copy of ParaTek. It's actually created by ParaTek, as seen in the source here . I did update the wordlist, as it's slightly different, but barely. UPDATE: Looks like they deleted this app from the play store. Unsure as to why, but either way it's no longer a valid link.  Dictionary Type:     -> Hard coded word list. ( View here ) Dictionary Source Used:     -> Ovilus Word List. ( https://www.digitaldowsing.com/word-list/) Developed with:     -> App Inventor. ( https://appinventor.mit.edu/ ) Conclusion: 10/10 FAKE. Decompiled Source: HERE .

Paratek AI Speech Generator

Today I focused on a popular a paranormal hunting application called ParaTek . It uses random AI status bars, and magnetic field readings to show any fluctuations.  Dictionary Type:     -> Hard coded word list. ( View here ) Dictionary Source Used:     -> Ovilus Word List. ( https://www.digitaldowsing.com/word-list/ ) Developed with:     -> App Inventor. ( https://appinventor.mit.edu/ ) To keep this short, I'll refer to AppInventors main website, displaying examples of how you can use a list of words to be randomly selected from, then have it speak to you out loud. Here is the example:  https://appinventor.mit.edu/explore/ai2/magic-8-ball . In this example tutorial, they demonstrate creating a "list" of words, and having it select random items from it and speak out the results to the users using a text to speech engine. Now, to the actual code that is decompiled. For the r...