Coverbild des Asterisk Buches von Stefan Wintermeyer

Letzte Woche => Endspurt!

Montag den 29.01.07 geht das Buch in die Produktion. Bis dahin laeuft der Beta-Test noch in vollem Umfang. Bitte melden Sie Fehler! Siehe Beta-Test FAQ.

Erscheinungstermin: 03.03.07. Das Buch wird auf dem Asterisk-Tag.org in Chemnitz vorgestellt und kann dort auch erworben werden. 10 Tage spaeter wird es im Buchhandel sein. Wer nicht in Chemnitz sein kann, sollte das Buch vorbestellen: Amazon oder direkt beim Verlag

Asterisk-Schulungen und Consulting vom Autor dieses Buches finden Sie auf http://www.amooma.de. Naechste Asterisk-Schulung: 12.02. - 13.02.07 (noch 1 Platz frei) - Ach ja, ... wir suchen auch noch Asterisk Entwickler! => http://www.amooma.de/jobs/


10.53. MixMonitor()

Schneidet das Gespräch auf dem aktuellen Channel mit (eine Datei)

MixMonitor(Basisname.Format[,Optionen[,Befehl]])

Startet die Audio-Aufzeichnung des aktuellen Channels. Dabei werden im im Gegensatz zu Monitor() direkt beide Kanäle zu einer Datei gemischt.

Optionen:

a
Hängt den Audio-Stream an eine bestehende Datei an.
b
Startet die Aufnahme erst, nachdem der Anruf mit einem anderen Channel verbunden wurde, also nachdem z.B. durch Dial() tatsächlich ein Gespräch zustande kommt.
v(x)
Passt die eingehende Lautstärke um Faktor x an (-4 bis 4).
V(x)
Passt die ausgehende Lautstärke um Faktor x an (-4 bis 4).
W(x)
Passt die eingehende und ausgehende Lautstärke um Faktor x an (-4 bis 4).

Befehl wird (falls angegeben) nach der Aufzeichnung ausgeführt. Die Variable ${MIXMONITOR_FILENAME} wird auf den Namen der aufgezeichneten Datei gesetzt.

Beachten Sie auch die Hinweise bei Monitor().

Anmerkung

Interner Hilfetext zu dieser Applikation in Asterisk 1.4: 

  -= Info about application 'MixMonitor' =- 

[Synopsis]
Record a call and mix the audio during the recording

[Description]
  MixMonitor(<file>.<ext>[|<options>[|<command>]])

Records the audio on the current channel to the specified file.
If the filename is an absolute path, uses that path, otherwise
creates the file in the configured monitoring directory from
asterisk.conf.

Valid options:
 a      - Append to the file instead of overwriting it.
 b      - Only save audio to the file while the channel is bridged.
          Note: does not include conferences.
 v(<x>) - Adjust the heard volume by a factor of <x> (range -4 to 4)
 V(<x>) - Adjust the spoken volume by a factor of <x> (range -4 to 4)
 W(<x>) - Adjust the both heard and spoken volumes by a factor of <x>
         (range -4 to 4)

<command> will be executed when the recording is over
Any strings matching ^{X} will be unescaped to ${X} and 
all variables will be evaluated at that time.
The variable MIXMONITOR_FILENAME will contain the filename used to record.

Differenz zum internen Hilfetext in Asterisk 1.2: 

- keine - 

Siehe auch. Abschnitt 10.54, „Monitor()