You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
172 lines
5.0 KiB
172 lines
5.0 KiB
2 years ago
|
#pyaudio loopback
|
||
|
import pyaudio
|
||
|
import wave
|
||
|
import os
|
||
|
|
||
|
defaultframes = 512
|
||
|
|
||
|
class textcolors:
|
||
|
if not os.name == 'nt':
|
||
|
blue = '\033[94m'
|
||
|
green = '\033[92m'
|
||
|
warning = '\033[93m'
|
||
|
fail = '\033[91m'
|
||
|
end = '\033[0m'
|
||
|
else:
|
||
|
blue = ''
|
||
|
green = ''
|
||
|
warning = ''
|
||
|
fail = ''
|
||
|
end = ''
|
||
|
|
||
|
recorded_frames = []
|
||
|
device_info = {}
|
||
|
useloopback = False
|
||
|
recordtime = 5
|
||
|
|
||
|
#Use module
|
||
|
p = pyaudio.PyAudio()
|
||
|
|
||
|
#Set default to first in list or ask Windows
|
||
|
try:
|
||
|
default_device_index = p.get_default_input_device_info()
|
||
|
except IOError:
|
||
|
default_device_index = -1
|
||
|
|
||
|
#Select Device
|
||
|
print (textcolors.blue + "Available devices:\n" + textcolors.end)
|
||
|
for i in range(0, p.get_device_count()):
|
||
|
info = p.get_device_info_by_index(i)
|
||
|
print (textcolors.green + str(info["index"]) + textcolors.end + ": \t %s \n \t %s \n" % (info["name"], p.get_host_api_info_by_index(info["hostApi"])["name"]))
|
||
|
|
||
|
if default_device_index == -1:
|
||
|
default_device_index = info["index"]
|
||
|
|
||
|
#Handle no devices available
|
||
|
if default_device_index == -1:
|
||
|
print (textcolors.fail + "No device available. Quitting." + textcolors.end)
|
||
|
exit()
|
||
|
|
||
|
|
||
|
#Get input or default
|
||
|
device_id = int(input("Choose device [" + textcolors.blue + str(default_device_index) + textcolors.end + "]: ") or default_device_index)
|
||
|
print ("")
|
||
|
|
||
|
#Get device info
|
||
|
try:
|
||
|
device_info = p.get_device_info_by_index(device_id)
|
||
|
except IOError:
|
||
|
device_info = p.get_device_info_by_index(default_device_index)
|
||
|
print (textcolors.warning + "Selection not available, using default." + textcolors.end)
|
||
|
|
||
|
#Choose between loopback or standard mode
|
||
|
is_input = device_info["maxInputChannels"] > 0
|
||
|
is_wasapi = (p.get_host_api_info_by_index(device_info["hostApi"])["name"]).find("WASAPI") != -1
|
||
|
if is_input:
|
||
|
print (textcolors.blue + "Selection is input using standard mode.\n" + textcolors.end)
|
||
|
else:
|
||
|
if is_wasapi:
|
||
|
useloopback = True;
|
||
|
print (textcolors.green + "Selection is output. Using loopback mode.\n" + textcolors.end)
|
||
|
else:
|
||
|
print (textcolors.fail + "Selection is input and does not support loopback mode. Quitting.\n" + textcolors.end)
|
||
|
exit()
|
||
|
|
||
|
recordtime = int(input("Record time in seconds [" + textcolors.blue + str(recordtime) + textcolors.end + "]: ") or recordtime)
|
||
|
|
||
|
#Open stream
|
||
|
channelcount = device_info["maxInputChannels"] if (device_info["maxOutputChannels"] < device_info["maxInputChannels"]) else device_info["maxOutputChannels"]
|
||
|
stream = p.open(format = pyaudio.paInt16,
|
||
|
channels = channelcount,
|
||
|
rate = int(device_info["defaultSampleRate"]),
|
||
|
input = True,
|
||
|
frames_per_buffer = defaultframes,
|
||
|
input_device_index = device_info["index"],
|
||
|
as_loopback = useloopback)
|
||
|
|
||
|
#Start Recording
|
||
|
print (textcolors.blue + "Starting..." + textcolors.end)
|
||
|
|
||
|
for i in range(0, int(int(device_info["defaultSampleRate"]) / defaultframes * recordtime)):
|
||
|
recorded_frames.append(stream.read(defaultframes))
|
||
|
print (".")
|
||
|
|
||
|
print (textcolors.blue + "End." + textcolors.end)
|
||
|
#Stop Recording
|
||
|
|
||
|
stream.stop_stream()
|
||
|
stream.close()
|
||
|
|
||
|
#Close module
|
||
|
p.terminate()
|
||
|
|
||
|
filename = input("Save as [" + textcolors.blue + "out.wav" + textcolors.end + "]: ") or "out.wav"
|
||
|
from pydub import AudioSegment
|
||
|
# Advanced usage, if you have raw audio data:
|
||
|
sound = AudioSegment(
|
||
|
# raw audio data (bytes)
|
||
|
data=b''.join(recorded_frames),
|
||
|
# 2 byte (16 bit) samples
|
||
|
sample_width=p.get_sample_size(pyaudio.paInt16),
|
||
|
# 44.1 kHz frame rate
|
||
|
frame_rate=int(device_info["defaultSampleRate"]),
|
||
|
# stereo
|
||
|
channels=channelcount
|
||
|
)
|
||
|
sound.export("out.mp3", format="mp3")
|
||
|
#waveFile = wave.open(filename, 'wb')
|
||
|
#waveFile.setnchannels(channelcount)
|
||
|
#waveFile.setsampwidth(p.get_sample_size(pyaudio.paInt16))
|
||
|
#waveFile.setframerate(int(device_info["defaultSampleRate"]))
|
||
|
#waveFile.writeframes(b''.join(recorded_frames))
|
||
|
#waveFile.close()
|
||
|
|
||
|
|
||
|
#pyaudio classic
|
||
|
|
||
|
from sys import byteorder
|
||
|
from array import array
|
||
|
from struct import pack
|
||
|
import pyaudio
|
||
|
import wave
|
||
|
THRESHOLD = 500
|
||
|
CHUNK_SIZE = 1024
|
||
|
FORMAT = pyaudio.paInt16
|
||
|
RATE = 44100
|
||
|
|
||
|
STOP_BOOL = False
|
||
|
import time
|
||
|
STOP_SEC_INT = 10
|
||
|
TIME_LAST = time.time()
|
||
|
|
||
|
def is_silent(snd_data):
|
||
|
"Returns 'True' if below the 'silent' threshold"
|
||
|
return max(snd_data) < THRESHOLD
|
||
|
|
||
|
def normalize(snd_data):
|
||
|
"Average the volume out"
|
||
|
MAXIMUM = 16384
|
||
|
times = float(MAXIMUM)/max(abs(i) for i in snd_data)
|
||
|
r = array('h')
|
||
|
for i in snd_data:
|
||
|
r.append(int(i*times))
|
||
|
return r
|
||
|
def trim(snd_data):
|
||
|
"Trim the blank spots at the start and end"
|
||
|
def _trim(snd_data):
|
||
|
snd_started = False
|
||
|
r = array('h')
|
||
|
for i in snd_data:
|
||
|
if not snd_started and abs(i)>THRESHOLD:
|
||
|
snd_started = True
|
||
|
r.append(i)
|
||
|
elif snd_started:
|
||
|
r.append(i)
|
||
|
return r
|
||
|
# Trim to the left
|
||
|
snd_data = _trim(snd_data)
|
||
|
# Trim to the right
|
||
|
snd_data.reverse()
|
||
|
snd_data = _trim(snd_data)
|
||
|
snd_data.reverse()
|
||
|
return snd_data
|