'Can Dynamic Feature 'playmonkeys' play audio to both channels?

How can I get the audio from the DYNAMIC_FEATURES "playmonkeys" to play on both channels at the same time? Not just the opposite channel.

playmonkeys => #9,peer,Playback,tt-monkeys  ;Allow both the caller and callee to play tt-monkeys to the opposite channel

Thanks for any ideas.

-Iggy



Solution 1:[1]

Features.conf application can play caller,calle or both.

For more info see http://www.asteriskdocs.org/en/3rd_Edition/asterisk-book-html-chunk/AdditionalConfig_id256654.html

"playmonkeys" is not a feature, it is just a sample.

Solution 2:[2]

if you implement this code, you will see the window gets created and disappears immediately.

import sys
from PyQt5 import QtGui, QtWidgets,QtCore
from PyQt5.QtWidgets import QApplication, QMainWindow

app = QtWidgets.QApplication(sys.argv)
window = QtWidgets.QWidget()
window.setGeometry(50,50,500,500)
window.setWindowTitle("GUI window")
window.show()

To solve that problem write "sys.exit(app.exec_())" after window.show() and the window will stay on the screen.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 arheops
Solution 2 Dhanashree Desai