File size: 632 Bytes
cab263c
 
1581bbf
cab263c
4affef3
cab263c
42bce02
 
42b403c
da8c3cd
 
42bce02
 
9bb15cf
 
 
a001cc5
9bb15cf
f17c2a1
 
 
4affef3
 
1581bbf
 
4affef3
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
# version - ArticMonkey:19.03.24:1743

import psutil

import streamlit as st 
from audio2text.a2t import A2T
from audiorecorder import audiorecorder

def main():
    audio = audiorecorder("Record", "Stop")
    
    if len(audio) > 0:
        a2t = A2T(audio)
        if st.button("Get text"):
            with st.spinner("Wait for it...."):
                text = a2t.predict()
                st.write(text)
            st.success("Done")

    del audio
    del a2t

if __name__ == "__main__":
    print('RAM memory % used:', psutil.virtual_memory()[2])
    print('RAM Used (GB):', psutil.virtual_memory()[3]/1000000000)
    main()