Convert sound encoded in RTTY 45.45 baud using minimodem
Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
I've downloaded a file encoded in RTTY 45.45 baud (mp3 output of linked video). I'm not sure if the final output should be audio or text.
I've also installed minimodem
which I'm reading can convert data into audio with option --tx
and out with --rx
.
For example converting a picture into audio and back with:
cat pic.jpg | minimodem --tx 9600 -f audio.wave
minimodem --rx 9600 -f audio.wave > pic2.jpg
I tried the following two commands, one expecting audio output and another expecting text:
minimodem --rx rtty -f youtube.mp3 > out.mp3
minimodem --rx rtty -f youtube.mp3 > out.txt
Neither of these seem to work.
Can anyone advise me on how to decode this story?
audio modem telephony
add a comment |
up vote
2
down vote
favorite
I've downloaded a file encoded in RTTY 45.45 baud (mp3 output of linked video). I'm not sure if the final output should be audio or text.
I've also installed minimodem
which I'm reading can convert data into audio with option --tx
and out with --rx
.
For example converting a picture into audio and back with:
cat pic.jpg | minimodem --tx 9600 -f audio.wave
minimodem --rx 9600 -f audio.wave > pic2.jpg
I tried the following two commands, one expecting audio output and another expecting text:
minimodem --rx rtty -f youtube.mp3 > out.mp3
minimodem --rx rtty -f youtube.mp3 > out.txt
Neither of these seem to work.
Can anyone advise me on how to decode this story?
audio modem telephony
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I've downloaded a file encoded in RTTY 45.45 baud (mp3 output of linked video). I'm not sure if the final output should be audio or text.
I've also installed minimodem
which I'm reading can convert data into audio with option --tx
and out with --rx
.
For example converting a picture into audio and back with:
cat pic.jpg | minimodem --tx 9600 -f audio.wave
minimodem --rx 9600 -f audio.wave > pic2.jpg
I tried the following two commands, one expecting audio output and another expecting text:
minimodem --rx rtty -f youtube.mp3 > out.mp3
minimodem --rx rtty -f youtube.mp3 > out.txt
Neither of these seem to work.
Can anyone advise me on how to decode this story?
audio modem telephony
I've downloaded a file encoded in RTTY 45.45 baud (mp3 output of linked video). I'm not sure if the final output should be audio or text.
I've also installed minimodem
which I'm reading can convert data into audio with option --tx
and out with --rx
.
For example converting a picture into audio and back with:
cat pic.jpg | minimodem --tx 9600 -f audio.wave
minimodem --rx 9600 -f audio.wave > pic2.jpg
I tried the following two commands, one expecting audio output and another expecting text:
minimodem --rx rtty -f youtube.mp3 > out.mp3
minimodem --rx rtty -f youtube.mp3 > out.txt
Neither of these seem to work.
Can anyone advise me on how to decode this story?
audio modem telephony
audio modem telephony
edited Dec 10 at 2:42
asked Dec 10 at 2:26
Philip Kirkbride
2,3612779
2,3612779
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
I'm not familiar with minimodem
, but found the following eventually worked:
minimodem -a --rx rtty --stopbits 1 -f new1ch.wav
which produces output like
### CARRIER 45.45 @ 740.0 Hz ###
SET YOUR DECODER MODE TO RTTY 45
START TRANSMISSION...
HELLO AND WELCOME TO ANOTHER STRANGE BEACONS RTTY STORY.
The command did not seem to like an mp3 file as input, and when I converted that to wave it said input stream must be 1-channel, so I used sox new.mp3 -c1 new1ch.wav
to reduce the file to 1 channel. The option -a
made the command auto-detect the carrier frequency of 740hz. Initially, the text output was recognisable but with missing letters, so I tried the --stopbits 1
to override the default of 1.5 and that helped a lot.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f487040%2fconvert-sound-encoded-in-rtty-45-45-baud-using-minimodem%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
I'm not familiar with minimodem
, but found the following eventually worked:
minimodem -a --rx rtty --stopbits 1 -f new1ch.wav
which produces output like
### CARRIER 45.45 @ 740.0 Hz ###
SET YOUR DECODER MODE TO RTTY 45
START TRANSMISSION...
HELLO AND WELCOME TO ANOTHER STRANGE BEACONS RTTY STORY.
The command did not seem to like an mp3 file as input, and when I converted that to wave it said input stream must be 1-channel, so I used sox new.mp3 -c1 new1ch.wav
to reduce the file to 1 channel. The option -a
made the command auto-detect the carrier frequency of 740hz. Initially, the text output was recognisable but with missing letters, so I tried the --stopbits 1
to override the default of 1.5 and that helped a lot.
add a comment |
up vote
2
down vote
accepted
I'm not familiar with minimodem
, but found the following eventually worked:
minimodem -a --rx rtty --stopbits 1 -f new1ch.wav
which produces output like
### CARRIER 45.45 @ 740.0 Hz ###
SET YOUR DECODER MODE TO RTTY 45
START TRANSMISSION...
HELLO AND WELCOME TO ANOTHER STRANGE BEACONS RTTY STORY.
The command did not seem to like an mp3 file as input, and when I converted that to wave it said input stream must be 1-channel, so I used sox new.mp3 -c1 new1ch.wav
to reduce the file to 1 channel. The option -a
made the command auto-detect the carrier frequency of 740hz. Initially, the text output was recognisable but with missing letters, so I tried the --stopbits 1
to override the default of 1.5 and that helped a lot.
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
I'm not familiar with minimodem
, but found the following eventually worked:
minimodem -a --rx rtty --stopbits 1 -f new1ch.wav
which produces output like
### CARRIER 45.45 @ 740.0 Hz ###
SET YOUR DECODER MODE TO RTTY 45
START TRANSMISSION...
HELLO AND WELCOME TO ANOTHER STRANGE BEACONS RTTY STORY.
The command did not seem to like an mp3 file as input, and when I converted that to wave it said input stream must be 1-channel, so I used sox new.mp3 -c1 new1ch.wav
to reduce the file to 1 channel. The option -a
made the command auto-detect the carrier frequency of 740hz. Initially, the text output was recognisable but with missing letters, so I tried the --stopbits 1
to override the default of 1.5 and that helped a lot.
I'm not familiar with minimodem
, but found the following eventually worked:
minimodem -a --rx rtty --stopbits 1 -f new1ch.wav
which produces output like
### CARRIER 45.45 @ 740.0 Hz ###
SET YOUR DECODER MODE TO RTTY 45
START TRANSMISSION...
HELLO AND WELCOME TO ANOTHER STRANGE BEACONS RTTY STORY.
The command did not seem to like an mp3 file as input, and when I converted that to wave it said input stream must be 1-channel, so I used sox new.mp3 -c1 new1ch.wav
to reduce the file to 1 channel. The option -a
made the command auto-detect the carrier frequency of 740hz. Initially, the text output was recognisable but with missing letters, so I tried the --stopbits 1
to override the default of 1.5 and that helped a lot.
answered Dec 13 at 9:13
meuh
31.4k11754
31.4k11754
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f487040%2fconvert-sound-encoded-in-rtty-45-45-baud-using-minimodem%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown