Commit ab2e0f79 authored by Dan Pascu's avatar Dan Pascu

Adjusted ringtone delays

parent 103f948a
...@@ -1653,10 +1653,10 @@ class IncomingSession(QObject): ...@@ -1653,10 +1653,10 @@ class IncomingSession(QObject):
if sound_file is not None and sound_file.path is DefaultPath: if sound_file is not None and sound_file.path is DefaultPath:
settings = SIPSimpleSettings() settings = SIPSimpleSettings()
sound_file = settings.sounds.inbound_ringtone sound_file = settings.sounds.inbound_ringtone
ringtone = WavePlayer(SIPApplication.alert_audio_mixer, sound_file.path, volume=sound_file.volume, loop_count=0, pause_time=6) if sound_file is not None else Null ringtone = WavePlayer(SIPApplication.alert_audio_mixer, sound_file.path, volume=sound_file.volume, loop_count=0, pause_time=2.7) if sound_file is not None else Null
ringtone.bridge = SIPApplication.alert_audio_bridge ringtone.bridge = SIPApplication.alert_audio_bridge
else: else:
ringtone = WavePlayer(SIPApplication.alert_audio_mixer, Resources.get('sounds/beeping_ringtone.wav'), volume=70, loop_count=0, pause_time=6) ringtone = WavePlayer(SIPApplication.alert_audio_mixer, Resources.get('sounds/beeping_ringtone.wav'), volume=70, loop_count=0, pause_time=5)
ringtone.bridge = SIPApplication.alert_audio_bridge ringtone.bridge = SIPApplication.alert_audio_bridge
self.__dict__['ringtone'] = ringtone self.__dict__['ringtone'] = ringtone
return self.__dict__['ringtone'] return self.__dict__['ringtone']
...@@ -1742,7 +1742,7 @@ class SessionManager(object): ...@@ -1742,7 +1742,7 @@ class SessionManager(object):
@property @property
def beeping_ringtone(self): def beeping_ringtone(self):
if 'beeping_ringtone' not in self.__dict__: if 'beeping_ringtone' not in self.__dict__:
ringtone = WavePlayer(SIPApplication.voice_audio_mixer, Resources.get('sounds/beeping_ringtone.wav'), volume=70, loop_count=0, pause_time=6) ringtone = WavePlayer(SIPApplication.voice_audio_mixer, Resources.get('sounds/beeping_ringtone.wav'), volume=70, loop_count=0, pause_time=10)
ringtone.bridge = SIPApplication.voice_audio_bridge ringtone.bridge = SIPApplication.voice_audio_bridge
self.__dict__['beeping_ringtone'] = ringtone self.__dict__['beeping_ringtone'] = ringtone
return self.__dict__['beeping_ringtone'] return self.__dict__['beeping_ringtone']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment