-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathnao_audio.py
executable file
·240 lines (194 loc) · 8.64 KB
/
nao_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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
#!/usr/bin/env python
#
# ROS node to serve NAOqi audio functionalities
# This code is currently compatible to NaoQI version 1.6
#
# Copyright 2014 Manos Tsardoulias, CERTH/ITI
# http://www.ros.org/wiki/nao
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# # Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# # Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# # Neither the name of the CERTH/ITI nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
import rospy
import naoqi
from naoqi import (
ALModule,
ALBroker,
ALProxy )
from naoqi_driver.naoqi_node import NaoqiNode
from std_msgs.msg import (
String,
Int32)
from std_srvs.srv import (
EmptyResponse,
Empty)
from nao_interaction_msgs.msg import (
AudioSourceLocalization)
from nao_interaction_msgs.srv import (
SetAudioMasterVolumeResponse,
SetAudioMasterVolume,
AudioRecorder,
AudioPlayback)
class Constants:
NODE_NAME = "nao_audio_interface"
class NaoAudioInterface(ALModule, NaoqiNode):
def __init__(self, moduleName):
# ROS initialization
NaoqiNode.__init__(self, Constants.NODE_NAME )
# NAOQi initialization
self.ip = ""
self.port = 10602
self.moduleName = moduleName
self.init_almodule()
#~ ROS initializations
self.playFileSrv = rospy.Service("nao_audio/play_file", AudioPlayback, self.playFileSrv )
self.masterVolumeSrv = rospy.Service("nao_audio/master_volume", SetAudioMasterVolume, self.handleAudioMasterVolumeSrv)
self.enableRecordSrv = rospy.Service("nao_audio/record", AudioRecorder, self.handleRecorderSrv)
self.audioSourceLocalizationPub = rospy.Publisher("nao_audio/audio_source_localization", AudioSourceLocalization)
self.subscribe()
rospy.loginfo(Constants.NODE_NAME + " initialized")
def init_almodule(self):
# before we can instantiate an ALModule, an ALBroker has to be created
rospy.loginfo("Connecting to NaoQi at %s:%d", self.pip, self.pport)
try:
self.broker = ALBroker("%sBroker" % self.moduleName, self.ip, self.port, self.pip, self.pport)
except RuntimeError,e:
print("Could not connect to NaoQi's main broker")
exit(1)
ALModule.__init__(self, self.moduleName)
#~ Memory proxy registration
self.memProxy = ALProxy("ALMemory",self.pip,self.pport)
if self.memProxy is None:
rospy.logerr("Could not get a proxy to ALMemory on %s:%d", self.pip, self.pport)
exit(1)
#~ ALAudioProxy registration
self.audioPlayerProxy = ALProxy("ALAudioPlayer",self.pip,self.pport)
if self.audioPlayerProxy is None:
rospy.logerr("Could not get a proxy to ALAudioPlayer on %s:%d", self.pip, self.pport)
exit(1)
#~ ALAudioRecorder proxy registration
self.audioRecorderProxy = ALProxy("ALAudioRecorder",self.pip,self.pport)
if self.audioRecorderProxy is None:
rospy.logerr("Could not get a proxy to ALAudioRecorder on %s:%d", self.pip, self.pport)
exit(1)
#~ ALAudioDevice proxy registration
self.audioDeviceProxy = ALProxy("ALAudioDevice",self.pip,self.pport)
if self.audioDeviceProxy is None:
rospy.logerr("Could not get a proxy to ALAudioDevice on %s:%d", self.pip, self.pport)
exit(1)
#~ ALAudioSourceLocalization registration
self.audioSourceLocalizationProxy = ALProxy("ALAudioSourceLocalization",self.pip,self.pport)
if self.audioSourceLocalizationProxy is None:
rospy.logerr("Could not get a proxy to ALAudioSourceLocalization on %s:%d", self.pip, self.pport)
exit(1)
#~ ALAudioSourceLocalization parameter trimming
self.audioSourceLocalizationProxy.setParameter("EnergyComputation", True)
self.audioSourceLocalizationProxy.setParameter("Sensibility", 0.8)
def playFileSrv(self, req):
"Serves the srv request for audio file playback"
if req.file_path.data == "":
return EmptyResponse
self.audioPlayerProxy.playFile("/home/nao/" + req.file_path.data)
return EmptyResponse
def handleAudioMasterVolumeSrv(self, req):
if (req.master_volume.data < 0) or (req.master_volume.data > 100):
return
self.audioDeviceProxy.setOutputVolume(req.master_volume.data)
return SetAudioMasterVolumeResponse()
def handleRecorderSrv(self, req):
file_path = req.file_path.data
if file_path == "":
return EmptyResponse
secs = req.secs.data
channels = []
#~ Channel setup
channels_enabled = 0
if req.left_channel.data == True:
channels.append(1)
channels_enabled += 1
else:
channels.append(0)
if req.right_channel.data == True:
channels.append(1)
channels_enabled += 1
else:
channels.append(0)
if req.front_channel.data == True:
channels.append(1)
channels_enabled += 1
else:
channels.append(0)
if req.rear_channel.data == True:
channels.append(1)
channels_enabled += 1
else:
channels.append(0)
#~ If no channels were selected return
if channels_enabled == 0:
return EmptyResponse
#~ Set audio type
audio_type = ""
if req.audio_type.data == 0:
audio_type = "wav"
elif req.audio_type.data == 1:
audio_type = "ogg"
else:
return EmptyResponse
#~ Set samplerate
samplerate = req.samplerate.data
if samplerate <= 0:
return EmptyResponse
#~ Set recording type
if (secs <= 0.0):
return EmptyResponse
self.audioRecorderProxy.startMicrophonesRecording("/home/nao/" + file_path, audio_type, samplerate, channels)
rospy.sleep(secs)
self.audioRecorderProxy.stopMicrophonesRecording()
return EmptyResponse
def shutdown(self):
self.unsubscribe()
def subscribe(self):
self.memProxy.subscribeToEvent("ALAudioSourceLocalization/SoundLocated", self.moduleName, "onSoundLocated")
def unsubscribe(self):
self.memProxy.unsubscribeToEvent("ALAudioSourceLocalization/SoundLocated", self.moduleName)
def onSoundLocated(self, strVarName, value, strMessage):
msg = AudioSourceLocalization()
msg.azimuth.data = value[1][0]
msg.elevation.data = value[1][1]
msg.confidence.data = value[1][2]
msg.energy.data = value[1][3]
msg.head_pose.position.x = value[2][0]
msg.head_pose.position.y = value[2][1]
msg.head_pose.position.z = value[2][2]
msg.head_pose.orientation.x = value[2][3]
msg.head_pose.orientation.y = value[2][4]
msg.head_pose.orientation.z = value[2][5]
self.audioSourceLocalizationPub.publish(msg)
if __name__ == '__main__':
ROSNaoAudioModule = NaoAudioInterface("ROSNaoAudioModule")
rospy.spin()
rospy.loginfo("Stopping ROSNaoAudioModule ...")
ROSNaoAudioModule.shutdown();
rospy.loginfo("ROSNaoAudioModule stopped.")
exit(0)