-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtranslator.py
54 lines (43 loc) · 1.72 KB
/
translator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import json
from gtts import gTTS
all = {
'A': '.-', 'B': '-...', 'C': '-.-.', 'D': '-..', 'E': '.',
'F': '..-.', 'G': '--.', 'H': '....', 'I': '..', 'J': '.---',
'K': '-.-', 'L': '.-..', 'M': '--', 'N': '-.', 'O': '---',
'P': '.--.', 'Q': '--.-', 'R': '.-.', 'S': '...', 'T': '-',
'U': '..-', 'V': '...-', 'W': '.--', 'X': '-..-', 'Y': '-.--',
'Z': '--..',
'0': '-----', '1': '.----', '2': '..---', '3': '...--', '4': '....-',
'5': '.....', '6': '-....', '7': '--...', '8': '---..', '9': '----.',
' ': '/'
}
def load_lottiefile(filepath: str):
with open(filepath, "r") as f:
return json.load(f)
def to_morse(inp):
morsed = [all[a] for a in inp.upper()]
return (" ".join(morsed))
def to_text(morse_code):
# return a string without leading or trailing whitespaces
morse_code = morse_code.strip()
morse_code = morse_code.split(' ') # returns a list
morse_code_dict = {
'.-': 'A', '-...': 'B', '-.-.': 'C', '-..': 'D', '.': 'E',
'..-.': 'F', '--.': 'G', '....': 'H', '..': 'I', '.---': 'J',
'-.-': 'K', '.-..': 'L', '--': 'M', '-.': 'N', '---': 'O',
'.--.': 'P', '--.-': 'Q', '.-.': 'R', '...': 'S', '-': 'T',
'..-': 'U', '...-': 'V', '.--': 'W', '-..-': 'X', '-.--': 'Y',
'--..': 'Z', '-----': '0', '.----': '1', '..---': '2', '...--': '3',
'....-': '4', '.....': '5', '-....': '6', '--...': '7', '---..': '8',
'----.': '9'
}
text = ''
for symbol in morse_code:
if symbol in morse_code_dict:
text += morse_code_dict[symbol]
elif symbol == '/':
text += ' '
return text
def to_aud(text):
tts = gTTS(text=text, lang='en', slow=True)
tts.save("./output.mp3")