Artwork

内容由Hens Zimmerman提供。所有播客内容(包括剧集、图形和播客描述)均由 Hens Zimmerman 或其播客平台合作伙伴直接上传和提供。如果您认为有人在未经您许可的情况下使用您的受版权保护的作品,您可以按照此处概述的流程进行操作https://zh.player.fm/legal
Player FM -播客应用
使用Player FM应用程序离线!

Een buitenaards bericht van aardse makelij

16:48
 
分享
 

Manage episode 450973732 series 3424872
内容由Hens Zimmerman提供。所有播客内容(包括剧集、图形和播客描述)均由 Hens Zimmerman 或其播客平台合作伙伴直接上传和提供。如果您认为有人在未经您许可的情况下使用您的受版权保护的作品,您可以按照此处概述的流程进行操作https://zh.player.fm/legal

Op 24 mei vorig jaar werd een testbericht uitgezonden vanuit een baan rond de planeet Mars. Een en ander gebeurde ter voorbereiding op de dag dat we daadwerkelijk een buitenaards signaal ontvangen. Eerder dit jaar werd de boodschap eindelijk ontcijferd.
Trace Gas Orbiter:

https://exploration.esa.int/web/mars/-/46475-trace-gas-orbiter

A Sign In Space:

https://asignin.space/

Can You Decode an Alien Message?

https://www.scientificamerican.com/article/can-you-decode-an-alien-message/

Decryption of Messages from Extraterrestrial Intelligence Using the Power of Social Media - The SETI Decrypt Challenge:

https://arxiv.org/abs/1706.00653

Testing SETI Message Designs:

https://arxiv.org/pdf/0911.3976

YouTube over het bericht van Daniela de Paulis:

https://www.youtube.com/watch?v=gly2NoqRFi0

SETI Live: A Sign in Space - Simulating First Contact:

https://www.youtube.com/watch?v=zgQq36IR-Lk

De originele boodschap van de Trace Gas Orbiter (binair):

https://github.com/BatchDrake/ASignInSpace/blob/master/Candidates/artifacts/data17.bin

De originele boodschap van de Trace Gas Orbiter (text):

https://github.com/BatchDrake/ASignInSpace/blob/master/Candidates/artifacts/data17.txt

Discord van A Sign In Space:

https://discord.com/invite/2upxzmZkqY

Arecibo message:

https://en.wikipedia.org/wiki/Arecibo_message

Phase Shift Keying (PSK):

https://en.wikipedia.org/wiki/Phase-shift_keying

Python script om de boodschap hoorbaar te maken op een enigszins wetenschappelijk verantwoorde wijze:

# Sonification of the TGO message.

# Hens Zimmerman, 18-11-2024.

# There exist two equal length wav files:

# 1.wav is a short beep

# 0.wav is silent

import wave

# Open and read original text version of the TGO message.

# https://github.com/BatchDrake/ASignInSpace/blob/master/Candidates/artifacts/data17.txt

with open('data17.txt') as f:

msg = f.read()

# The whole beepy sonification will be constructed here.

data = []

# Read the two sound files into buffers.

w = wave.open('0.wav', 'rb')

zero = [w.getparams(), w.readframes(w.getnframes())]

w.close()

w = wave.open('1.wav', 'rb')

one = [w.getparams(), w.readframes(w.getnframes())]

w.close()

# Append a beep for every '1' and silence for every '0'.

for c in list(msg):

if c == '1':

data.append(one)

elif c == '0':

data.append(zero)

# Write the output file to disk.

output = wave.open('sonification.wav', 'wb')

output.setparams(data[0][0])

for idx in range(len(data)):

output.writeframes(data[idx][1])

output.close()

De Zimmerman en Space podcast is gelicenseerd onder een Creative Commons CC0 1.0 licentie.
http://creativecommons.org/publicdomain/zero/1.0

  continue reading

107集单集

Artwork
icon分享
 
Manage episode 450973732 series 3424872
内容由Hens Zimmerman提供。所有播客内容(包括剧集、图形和播客描述)均由 Hens Zimmerman 或其播客平台合作伙伴直接上传和提供。如果您认为有人在未经您许可的情况下使用您的受版权保护的作品,您可以按照此处概述的流程进行操作https://zh.player.fm/legal

Op 24 mei vorig jaar werd een testbericht uitgezonden vanuit een baan rond de planeet Mars. Een en ander gebeurde ter voorbereiding op de dag dat we daadwerkelijk een buitenaards signaal ontvangen. Eerder dit jaar werd de boodschap eindelijk ontcijferd.
Trace Gas Orbiter:

https://exploration.esa.int/web/mars/-/46475-trace-gas-orbiter

A Sign In Space:

https://asignin.space/

Can You Decode an Alien Message?

https://www.scientificamerican.com/article/can-you-decode-an-alien-message/

Decryption of Messages from Extraterrestrial Intelligence Using the Power of Social Media - The SETI Decrypt Challenge:

https://arxiv.org/abs/1706.00653

Testing SETI Message Designs:

https://arxiv.org/pdf/0911.3976

YouTube over het bericht van Daniela de Paulis:

https://www.youtube.com/watch?v=gly2NoqRFi0

SETI Live: A Sign in Space - Simulating First Contact:

https://www.youtube.com/watch?v=zgQq36IR-Lk

De originele boodschap van de Trace Gas Orbiter (binair):

https://github.com/BatchDrake/ASignInSpace/blob/master/Candidates/artifacts/data17.bin

De originele boodschap van de Trace Gas Orbiter (text):

https://github.com/BatchDrake/ASignInSpace/blob/master/Candidates/artifacts/data17.txt

Discord van A Sign In Space:

https://discord.com/invite/2upxzmZkqY

Arecibo message:

https://en.wikipedia.org/wiki/Arecibo_message

Phase Shift Keying (PSK):

https://en.wikipedia.org/wiki/Phase-shift_keying

Python script om de boodschap hoorbaar te maken op een enigszins wetenschappelijk verantwoorde wijze:

# Sonification of the TGO message.

# Hens Zimmerman, 18-11-2024.

# There exist two equal length wav files:

# 1.wav is a short beep

# 0.wav is silent

import wave

# Open and read original text version of the TGO message.

# https://github.com/BatchDrake/ASignInSpace/blob/master/Candidates/artifacts/data17.txt

with open('data17.txt') as f:

msg = f.read()

# The whole beepy sonification will be constructed here.

data = []

# Read the two sound files into buffers.

w = wave.open('0.wav', 'rb')

zero = [w.getparams(), w.readframes(w.getnframes())]

w.close()

w = wave.open('1.wav', 'rb')

one = [w.getparams(), w.readframes(w.getnframes())]

w.close()

# Append a beep for every '1' and silence for every '0'.

for c in list(msg):

if c == '1':

data.append(one)

elif c == '0':

data.append(zero)

# Write the output file to disk.

output = wave.open('sonification.wav', 'wb')

output.setparams(data[0][0])

for idx in range(len(data)):

output.writeframes(data[idx][1])

output.close()

De Zimmerman en Space podcast is gelicenseerd onder een Creative Commons CC0 1.0 licentie.
http://creativecommons.org/publicdomain/zero/1.0

  continue reading

107集单集

所有剧集

×
 
Loading …

欢迎使用Player FM

Player FM正在网上搜索高质量的播客,以便您现在享受。它是最好的播客应用程序,适用于安卓、iPhone和网络。注册以跨设备同步订阅。

 

快速参考指南