|
Post by AnthroHeart on Feb 23, 2024 11:33:21 GMT
My WAV Repeater is a Python program:
Oh cool, is this directly transmitting the bytes of your affirmation as the data chunk of the wav? It is related, but there is a multiplier in it to provide a decent amplitude/volume.
|
|
|
Post by nathanmyersc on Feb 23, 2024 12:02:11 GMT
Oh cool, is this directly transmitting the bytes of your affirmation as the data chunk of the wav? It is related, but there is a multiplier in it to provide a decent amplitude/volume. Your wave repeater is amazing. i put NATHAN IS GOD. AND FEELS LIKE GOD. in it and it is doing something amazing for me. Im not familiar with this part of wav creation. could it be even better at higher frequencies? like 384k instead of the 96k or whatever it is.
|
|
|
Post by nathanmyersc on Feb 23, 2024 13:28:18 GMT
Oh cool, is this directly transmitting the bytes of your affirmation as the data chunk of the wav? It is related, but there is a multiplier in it to provide a decent amplitude/volume. while True: for d in range(benchmark): for element in string_to_write_value: if ord(element) < widthval / 2 + minval: value = ord(element) * multiplier + peak_value + peak_value - (ord(element) * multiplier + peak_value) value = int(value * volume_level) elif ord(element) > widthval / 2 + minval: value = ord(element) * multiplier - peak_value - peak_value - (ord(element) * multiplier - peak_value) value = int(value * volume_level) else: value = 0 data = struct.pack('<h', value) obj.writeframesraw(data) Can you explain whats going on here?
|
|
|
Post by AnthroHeart on Feb 23, 2024 13:37:21 GMT
It checks the ASCII value of each character in your intention. It uses the min and the max of all the characters, which could be 26 letters apart. Then it expands them to fill the max size of 65536 bytes (which is how many possible values there are in a WAV), and gives a mapping between them.
|
|
|
Post by nathanmyersc on Feb 23, 2024 15:49:29 GMT
It checks the ASCII value of each character in your intention. It uses the min and the max of all the characters, which could be 26 letters apart. Then it expands them to fill the max size of 65536 bytes (which is how many possible values there are in a WAV), and gives a mapping between them. Do you think we could get better effects if we played with a higher sampling rate? i guess that would be faster affirmation cycling.
|
|
|
Post by reden on Feb 23, 2024 16:11:57 GMT
It is related, but there is a multiplier in it to provide a decent amplitude/volume. Your wave repeater is amazing. i put NATHAN IS GOD. AND FEELS LIKE GOD. in it and it is doing something amazing for me. Im not familiar with this part of wav creation. could it be even better at higher frequencies? like 384k instead of the 96k or whatever it is. This would be helpful for feeding the file into a Scalar Wave Machine, as they work better with high frequencies.
|
|
|
Post by reden on Feb 23, 2024 16:12:27 GMT
For a subliminal, downloading it at a lesser quality or exporting it as MP3 again will crush the voice data and destroy effects. I'm not sure how much of the WAV effect survives if it's crushed by exporting to MP3 instead of WAV or FLAC. Also, it may be possible to densify normal subliminals downloaded off Youtube. You just would need to make sure the downloaded file is the highest possible quality, which comes as a .webm file for some reason. This doesn't apply for energy charged files, right? The crushing? No, because energy charges are/go beyond the file data.
|
|
|
Post by reden on Feb 23, 2024 16:34:21 GMT
I managed to make another audio where the wav repeater file is layered 10^36 times, and I can confirm yet again that is is more powerful. Next field I make for myself I'll layer it 10^102 times. Let's see how it goes! How do you do that. im failing to find reliable information on programming in audacity nyquist. Which is embarrassing for me but nonetheless i would love to automate duplicating audio and mixing it down repeatedly as i just tested it. Satan was attacking me and i had a spell i recorded INFERNUM FORCE FIELDUS. and i had recorded a 2 3 second clip of that. and the initial file alone was not enough. But after duplicating like 10-20 times and mixing it down repeatedly like 10-20 times it actually is strong enough to make him shut his coward mouth. I think it would be powerful to just have a script that copied the file duplicated it however many times is feasible for your computer save that as the same audio file and start a new project and keep doing that over and over and over again. Its actually a good idea. Nyquist and its Audacity "fork" are rather obscure languages. Not many know, for example, that Nyquist can generate music via telling it what instrument to use, for how long, and other features like high/low notes. You can try looking at .ny (the extension) files and getting an idea of how it looks like. You can look at the Nyquist documentation for more ideas. The syntax looks like Lisp if you've heard of that language, all full of parentheses that have to be matched, such as ((( ( )))) It's amazing such a short incantation can be powered up so much, specially because those words look like fake latin, somewhat like a harry potter spell, yet it works still! My mentor once told me this one DIVINORUM PROTECTIONEM VIBRATIONEM (DIVINE PROTECTION VIBRATION) which is quite powerful too, based on Latin's power. AI sort of translated your own into "Clypeus Contra Infernum" Here are some videos that might help you further too: youtube.com/watch?v=KAN8QenSP1g SILENCE THE MOUTH OF SLANDERING LIONS (stops liars against you) youtube.com/watch?v=mWxuQphPCWI R.E.P.T.I.L.I.A.N DRACO ARCHON ZAPPER HEXAGON REMOVAL R.E.P.T.IL.I.A.N ARCHON PROTECTION PRAYER youtube.com/watch?v=9O1D-hVA3qs Dream Seeds Exorcism (which is quite powerful) youtube.com/watch?v=5Wjd1baZkOY Energy Body/Aura Deep Clearing Cleaning youtube.com/watch?v=dltWno9TSB8 Etheric Cord Cutter youtube.com/watch?v=rfQVgVayXcc This loud frequency removes negative entities very quickly, but it's tough to hear as it's intense youtube.com/watch?v=XvyPscRD1ss Subconscious Cleaner2 youtube.com/watch?v=LFXeCJ5j25o Etheric Flush I think and hope all of those videos can be densified!
|
|
|
Post by AnthroHeart on Feb 23, 2024 18:07:35 GMT
It checks the ASCII value of each character in your intention. It uses the min and the max of all the characters, which could be 26 letters apart. Then it expands them to fill the max size of 65536 bytes (which is how many possible values there are in a WAV), and gives a mapping between them. Do you think we could get better effects if we played with a higher sampling rate? i guess that would be faster affirmation cycling. I believe 96k is the highest sampling rate officially supported by WAV.
Higher than that might not play.
But try editing the .py file and change it:
sampling_rate = 96000.0
Change that line to something else and see if it still plays.
|
|
|
Post by reden on Feb 23, 2024 18:34:01 GMT
Do you think we could get better effects if we played with a higher sampling rate? i guess that would be faster affirmation cycling. I believe 96k is the highest sampling rate officially supported by WAV.
Higher than that might not play.
But try editing the .py file and change it:
sampling_rate = 96000.0
Change that line to something else and see if it still plays.
>Since the sampling rate of a WAV file can vary from 1 Hz to 4.3 GHz, and the number of channels can be as high as 65535, .wav files have also been used for non-audio data. LTspice, for instance, can store multiple circuit trace waveforms in separate channels, at any appropriate sampling rate, with the full-scale range representing ±1 V or A rather than a sound pressure.[26]
|
|
|
Post by reden on Feb 23, 2024 22:48:07 GMT
This one is like 6/10 strength and full body according to AnthroHeart. I made one "I am One with Infinite Source, the Infinite Creator. Om." and duplicated&mixed a lot of times, so many times at first it took 8 mins, then another sequence it was 4. I did not count how many, perhaps the first were 512 or so. AnthroHeart said of it Feels like 4/10 strong. Focused just around my 3rd eye. I also made m4a (what youtube uses for videos) and ogg versions, as well as one mp3. AH said the flac one was the strongest, which means the wav also is. The others were slightly weaker. Here it is, it's 8 seconds only as I cut its length so it wouldn't be +100 MB. Lower your speaker volume. Attachments:untitledddd.flac (716.28 KB)
silent.flac (9.04 KB)
|
|
|
Post by reden on Feb 23, 2024 22:49:34 GMT
1024 tracks on my computer take about 2 minutes to mix.
Edit: Have you considered the image -> WAV writer? However, I think that words can be and often are purer than images.
|
|
|
Post by reden on Feb 23, 2024 23:20:25 GMT
I managed to make another audio where the wav repeater file is layered 10^36 times, and I can confirm yet again that is is more powerful. Next field I make for myself I'll layer it 10^102 times. Let's see how it goes! Very interesting I wonder if it taps into some sort of different concept, and that's why it has no limit, whereas as far as I have seen, the Repeater is like an infinite ocean, but you only get energy using a pump. The pump (Repeater executable I think) after a while (100 Quadrillion) makes little difference how much faster it runs. Or perhaps the pump is only part of the reason and the other part is that there's "something" limiting total absolute energy flow for a lot of things, so that reality does not change too unexpectedly quickly and overwhelm people? Just a thought
|
|
|
Post by beanlord on Feb 24, 2024 1:53:41 GMT
Very interesting I wonder if it taps into some sort of different concept, and that's why it has no limit, whereas as far as I have seen, the Repeater is like an infinite ocean, but you only get energy using a pump. The pump (Repeater executable I think) after a while (100 Quadrillion) makes little difference how much faster it runs. Or perhaps the pump is only part of the reason and the other part is that there's "something" limiting total absolute energy flow for a lot of things, so that reality does not change too unexpectedly quickly and overwhelm people? Just a thought so, just to be clear. does using an .mp3 file on audacity to replicate it 1024 times and then execute as a new .mp3 single file makes it loss any potency/energy or it actually makes it much stronger than it was?
|
|
|
Post by reden on Feb 24, 2024 2:20:04 GMT
Or perhaps the pump is only part of the reason and the other part is that there's "something" limiting total absolute energy flow for a lot of things, so that reality does not change too unexpectedly quickly and overwhelm people? Just a thought so, just to be clear. does using an .mp3 file on audacity to replicate it 1024 times and then execute as a new .mp3 single file makes it loss any potency/energy or it actually makes it much stronger than it was? Make it a lot stronger than it was, but a little less intense than a WAV/FLAC would have been. This seems to apply to WAV Repeater created files too if they are converted to MP3 or a lossy format, because they encode the intention in the audio data. (If you infuse it later with Repeater, that part won't be lost, though I am not fully sure if when you convert an infused/charged file to another format, the energy is kept or lost, albeit intuition tells me it's kept)
|
|