forked from jdibenes/hl2ss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_stream_extended_audio.py
95 lines (77 loc) · 3.34 KB
/
client_stream_extended_audio.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#------------------------------------------------------------------------------
# This script receives microphone and application audio from the HoloLens and
# plays it. The main thread receives the data, decodes it, and puts the decoded
# audio samples in a queue. A second thread gets the samples from the queue and
# plays them. Audio stream configuration is fixed to 2 channels, 48000 Hz.
# Press esc to stop.
#------------------------------------------------------------------------------
from pynput import keyboard
import hl2ss
import hl2ss_lnm
import hl2ss_utilities
import pyaudio
import queue
import threading
import json
# Settings --------------------------------------------------------------------
# HoloLens address
host = "192.169.1.41"
# Mixer mode
# Options:
# hl2ss.MixerMode.MICROPHONE (microphone audio only)
# hl2ss.MixerMode.SYSTEM (application audio only)
# hl2ss.MixerMode.BOTH (microphone and application audio)
# hl2ss.MixerMode.QUERY (get list of microphones)
mixer_mode = hl2ss.MixerMode.BOTH
# Microphone selection
# 1. Connect your external USB-C microphone to the HoloLens
# 2. Call hl2ss_lnm.download_devicelist_extended_audio to obtain a dictionary
# (see audio_devices below) describing all audio capture devices
# 3. Find the value of source_index for your microphone in the dictionary
# audio_devices[source_index]
# The built-in microphone is included in the dictionary and can be selected
# Only microphones that support the following configurations can be used:
# 1 or 2 channels, 48000 Hz sample rate, 16-bit PCM or 32-bit Float
# Default device (as set in Settings > System > Sound) has source_index = -1
source_index = 0
# Audio encoding profile
profile = hl2ss.AudioProfile.AAC_24000
#------------------------------------------------------------------------------
if ((mixer_mode & hl2ss.MixerMode.QUERY) != 0):
audio_devices = json.loads(hl2ss_lnm.download_devicelist_extended_audio(host, hl2ss.StreamPort.EXTENDED_AUDIO))
print(json.dumps(audio_devices, indent=2))
quit()
# RAW format is s16 packed, AAC decoded format is f32 planar
audio_format = pyaudio.paInt16 if (profile == hl2ss.AudioProfile.RAW) else pyaudio.paFloat32
enable = True
def pcmworker(pcmqueue):
global enable
global audio_format
p = pyaudio.PyAudio()
stream = p.open(format=audio_format, channels=hl2ss.Parameters_MICROPHONE.CHANNELS, rate=hl2ss.Parameters_MICROPHONE.SAMPLE_RATE, output=True)
stream.start_stream()
while (enable):
stream.write(pcmqueue.get())
stream.stop_stream()
stream.close()
def on_press(key):
global enable
enable = key != keyboard.Key.esc
return enable
pcmqueue = queue.Queue()
thread = threading.Thread(target=pcmworker, args=(pcmqueue,))
listener = keyboard.Listener(on_press=on_press)
thread.start()
listener.start()
client = hl2ss_lnm.rx_extended_audio(host, hl2ss.StreamPort.EXTENDED_AUDIO, mixer_mode=hl2ss.extended_audio_device_mixer_mode(mixer_mode, source_index), profile=profile)
client.open()
while (enable):
data = client.get_next_packet()
# RAW format is s16 packed, AAC decoded format is f32 planar
audio = hl2ss_utilities.microphone_planar_to_packed(data.payload) if (profile != hl2ss.AudioProfile.RAW) else data.payload
pcmqueue.put(audio.tobytes())
client.close()
enable = False
pcmqueue.put(b'')
thread.join()
listener.join()