Like Ra's Naughty Forum

Full Version: Software, tips and tricks for creating and playing up hypno-files
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4
As the subject says 😉
For making the speach I use Narrator, this outputs a single file, if I want to layer anything else onto it I use Audacity, then I split the finished file into smaller files with Audio Splitter, the end product is a small series of files to put into whatever player you like, I use a little ipod shuffle.
Apparently everybody and his dog (myself included) uses Audacity indeed 😁 http://www.audacityteam.org/ (Windows, Mac, Linux)
How to create silent subliminals using Audacity:

  1. Set the Project Sample Rate (lower left corner of the main Audacity window to 96000 (type the number into the box). You can upsample to 192000, but it's a bit an overkill IMO.
  2. "Tracks menu > Resample" to up-sample the track to 96000 Hz.
  3. "Effect menu > Nyquist Prompt" and copy the following code into the Nyquist Prompt box:

    Code:
    (setq CarrierFreq 15000)

    (highpass8
    (lowpass8
    (mult 2
    (lowpass8 (highpass8 s 150) 7000)
    (hzosc CarrierFreq))
    CarrierFreq)
    CarrierFreq)



    Set CarrierFreq to whatever you like most.

  4. Set the Project Rate to 44100
  5. "File menu > Export" to export the finished track as a MP3 file.

Also, there is a plugin: https://forum.audacityteam.org/download/...hp?id=3848
How to decode silent subliminals using Audacity:

  1. use the Amplify effect to bring the encoded message up to 0 dB
  2. apply this code using the Nyquist Prompt:
Code:
(setq carrier 15000)
(lowpass8 (mult 2 s (hzosc carrier)) 8000)

Another variant (check the legacy mode):

Code:
(defun ssb-demodulator (sound)
  (highpass8 (lowpass8 (s-max 0 sound) 3000) 300))

(scale 5 (multichan-expand #'ssb-demodulator s))
A program to create binaural beats and backgrounds: http://gnaural.sourceforge.net/ (Linux, MacOS, Windows)
I wonder if anybody can help me. This is what I'm trying to achieve:

o- The sound of metronome
o- Two sequences  with 3 (different) frequencies: left, right and mono)
o- At every 5th beat (every tact) the sequence changes

Code:
Tick - Tock - Tick - Tock - Tick - Tock - Tick - Tock - Tick ...
TaaaaaaaaaaaaaaaaaaaaaaaaaaaTeeeeeeeeeeeeeeeeeeeeeeeeeeeTaaaa...

What is the simplest way to do that?
Male-to-female, female-to-male voice changer program: https://www.g200kg.com/jp/software/rovee.html
(29 Oct 2017, 17:43 )Like Ra Wrote: [ -> ]I wonder if anybody can help me. This is what I'm trying to achieve:

o- The sound of metronome
o- Two sequences  with 3 (different) frequencies: left, right and mono)
o- At every 5th beat (every tact) the sequence changes

Code:
Tick - Tock - Tick - Tock - Tick - Tock - Tick - Tock - Tick ...
TaaaaaaaaaaaaaaaaaaaaaaaaaaaTeeeeeeeeeeeeeeeeeeeeeeeeeeeTaaaa...

What is the simplest way to do that?

Source: https://www.youtube.com/watch?v=C2immZOxRU4


Audacity is your friend ...

Multi-Track - one with Tick Tock and an other one with taaaa teee....

krinlyc
Free Subliminal Text (FST), flashes subliminal messages on screen:

https://github.com/krolaw/fst/blob/master/ReadMe.md

Since the project is not maintained anymore, uploading the JAR file here. You need Java to run it.
Pages: 1 2 3 4