Browse Source

Add function to pause call

master
sqozz 4 years ago
parent
commit
45983e4578
  1. 1
      README.md
  2. 9
      pylinphone.py

1
README.md

@ -8,6 +8,7 @@ Currently implemented Features: @@ -8,6 +8,7 @@ Currently implemented Features:
* answer an incoming call (`accept`)
* terminate a running call (`terminate`)
* mute the call (`mute-call`)
* pause the call (`call-pause`)
Features supported by the unix socket (linphone deamon):

9
pylinphone.py

@ -80,7 +80,14 @@ class LinphoneCommunicationSocket(): @@ -80,7 +80,14 @@ class LinphoneCommunicationSocket():
def call_mute(self, mute=True):
self.socket.send("call-mute {mute}".format(mute="1" if mute else "0").encode("ascii"))
answer = self._await_answer()
pdb.set_trace()
if answer["status"]:
return True
else:
raise RuntimeError(answer["error"])
def call_pause(self, call_id):
self.socket.send("call-pause {call_id}".format(call_id=call_id).encode("ascii"))
answer = self._await_answer()
if answer["status"]:
return True
else:

Loading…
Cancel
Save