File size: 1,618 Bytes
9690d29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
55
56
57
58
import pyaudio
import wave
from pynput import keyboard

FORMAT = pyaudio.paInt16
CHANNELS = 1
RATE = 44100
CHUNK = 1024
#RECORD_SECONDS = 5
WAVE_OUTPUT_FILENAME = "test.wav"

frames = []

def on_press(key):
    global frames

    if key == keyboard.Key.esc:
        # Stop recording
        audio = pyaudio.PyAudio()
        stream = audio.open(format=FORMAT, channels=CHANNELS,
                            rate=RATE, input=True,
                            frames_per_buffer=CHUNK)
        stream.stop_stream()
        stream.close()
        audio.terminate()
        print("Finished recording audio.")
        # Save recorded audio data to a .wav file
        wf = wave.open(WAVE_OUTPUT_FILENAME, 'wb')
        wf.setnchannels(CHANNELS)
        wf.setsampwidth(audio.get_sample_size(FORMAT))
        wf.setframerate(RATE)
        wf.writeframes(b''.join(frames))
        wf.close()
        # Stop the listener
        return False

    elif key.char == 'a':
        # Start recording
        audio = pyaudio.PyAudio()
        stream = audio.open(format=FORMAT, channels=CHANNELS,
                            rate=RATE, input=True,
                            frames_per_buffer=CHUNK)
        print("Recording audio...")
        while True:
            data = stream.read(CHUNK)
            frames.append(data)
            if keyboard.Controller().pressed(keyboard.Key.esc):
                print("esc key press here")
                break
        stream.stop_stream()
        stream.close()
        audio.terminate()

# Start the listener
with keyboard.Listener(on_press=on_press) as listener:
    listener.join()