External Audio calls to Cisco MCU

I have a requirement for an external audio channel to access the shared meeting room that is hosted on the MCU 5320 Cisco.

This can be achieved directly through the MCU or is it a requirment for another audio bridge

Well, you can integrated MCU with VCS using SIP Trunk, even if the common deployment is to have registered in VCS, MCU or by using SIP, H323, or both. You can also integrate the MCU with CUCM, but in this case, MCU will be a multimedia resource of CUCM, thats why it is only recommended to the ad hoc conferences. You can also integrate the MCU with the driver of telepresence using the API, but it is often only when you have several MCU pools to manage.

To integrate the Cisco MCU with VCS, you can consult this document:

http://www.Cisco.com/en/us/docs/Telepresence/infrastructure/MCU/Install_Guide/Cisco_TelePresence_MCU_Deployment_guide_1-31.PDF

To learn more about how to work with auxiliary self on Cisco MCU, take a look at this guide:

Page 88 - http://www.cisco.com/en/US/docs/telepresence/infrastructure/mcu/admin_guide/Cisco_Telepresence_MCU_5300_Series_4-4_Product_administration_guide.pdf

If you want to integrate MCU with control systems third call, I can't say that it will work, because I still have my suggestions on basis Cisco official documentation, and there is little in the literature on integration of MCU with control systems third call.

If you think that your question has been resolved, please mark the right answer.  =)

Concerning

Paulo Souza

Please note the answers and mark it as "answered" as appropriate.

Tags: Cisco Support

Similar Questions

  • Telepresence call seconds Sx80 became as Audio call

    Hi all

    We have a few sx 80, c60 saved settings to VCS.

    MS option key not installed

    both endpoints are on video call\, when we make the second call, second call became only audio call and joined the first audio conference call (call first video still there)

    is this a normal behavior?

    My requirement:

    is it possible to limit the maximum number of calls to the 1. While the second call may not be done until it becomes audio only call.

    is it possible to change the policy to call in VCS to achieve

    Concerning

    Vigeesh

    It is a normal behavior if you do not have the option on the SX80 Multisite key.  You are allowed to a single video call and a second call audio only.  You must have the Multisite option key, or use an external MCU or telepresence server to fill the participants together.

    Take a look at the '[1.1] IncomingMultisiteCall conference Mode' setting in the SX80 Administrator's Guide on pg 76.  Note, this will prevent any incoming call if the codec is already in the middle of a call, so no one will be able to connect until the current call is interrupted.

  • A button to push causes endpoint to call twice the MCU

    Hi, I have a problem with the TMS conferences that use the type of button to push a connection. When the ends are the meeting quickly reach, I select join and end points, then dial conference number twice at the same time. This starts a video call and an audio call at the same time, causing an echo. If you hang up the audio call the Conference continues normally.

    Can someone shed light on how the meeting gets setup of TMS or advise what opens a session for further investigation.

    I have v8.6.2 CUCM, VCS - c v7.2.2, TMS v14.3.2 and MCU 5320 v4.4. All the end points are saved to CUCM. Manual and automatic calls all work well.

    Thanks in advance

    Hi Ian,

    Above problem is a known, documented bug in CSCul80930.

    This has been resolved in version 7.1 of TC. You can go to TC 7.1.1 version on your codec.

    http://software.Cisco.com/download/release.html?mdfid=283644997&flowid=2...

    Kind regards

    Amit

  • Audio call routed to the speaker when it is docked

    Hello

    When I anchor my Razr HD (JB 4.1.2) to my real car Motorola dock, my music will be automatically forwarded to speakers of the car, which is what I want, but for incoming calls and outgoing audio passes the external speaker to phones by default. I can touch the speaker button that forwards then the audio to the speakers of the car, but how can I do audio call road to the default car speakers and not the external speaker phones?

    If it is not a setting I can change then maybe an app that will do it for me?

    It seems a little strange that he must use the phones pregnant as I thought that the idea of a dock is to have fewer entry during the conduct of the user, I'm sure that ICS was not like that.

    Thank you

    Hi xrcist,

    Another phone never worked with your car? Were you able to route calls to your front car speakers?

    See you soon,.

    Nicole

  • Load an external audio file in table?

    Hello.

    I figured out how to load an external video file - and I can play an audio file imported, but I can't seem to use both methods to load an external audio file into a table. (doh)

    Here is my audio code:

    var tour_audio:Array = [tour1, tour2];

    var my_num:Number = Math.floor (Math.random () * 2);

    var ChosenSound = tour_audio [my_num];

    var playing: Sound = new ChosenSound();

    Playing.Play ();

    Here's my video code:

    var my_videos:Array = new Array ('link1.mp4', 'link2.mp4', 'link3.mp4', 'link4.mp4');

    var randomIndex = Math.floor (Math.random () * my_videos.length);

    my_player.source = my_videos [randomIndex];

    I tried ' var tour_audio:Array = ["link1.mp3", "link2.np3"];  - but it does not work.

    Ty

    //  ------------------------

    the table is from your code, the table will be the references for the two audio files

    var tour_audio:Array = new Array();

    then you must create two instances of the sound class to contain the audio files you load into

    var soundClip1:Sound = new Sound();

    var soundClip2:Sound = new Sound();

    then you need a sound channel to play audio files

    var sndChannel:SoundChannel = new SoundChannel();

    It's your randomizer code

    var my_num:Number = Math.floor (Math.random () * 2);

    now, you load each sound file in your instances of the sound using the URLRequest class

    soundClip1.load (new URLRequest ("tour1.mp3"));

    soundClip2.load (new URLRequest ("tour2.mp3"));

    to find out when loading, the files have completed, you must add an event listener to each of the classes of sounds

    These event listeners will be triggered the functions onComplete1 and onComplete2 when loading is completed to each sound file

    soundClip1.addEventListener(Event.COMPLETE,onComplete1,false,0,true);

    soundClip2.addEventListener(Event.COMPLETE,onComplete2,false,0,true);

    This is the function for the first hearing of his charger, it will add the instance of the sound in your table class once loaded the sound

    function onComplete1(evt:Event):void {}

    tour_audio.push (soundClip1);

    }

    This function does the same work for the second audio file

    function onComplete2(evt:Event):void {}

    tour_audio.push (soundClip2);

    }

    Call this function to play the selected audio file

    It could be called from the function of onComplete2 above

    function playRandomSound (): void {}

    var ChosenSound = tour_audio [my_num];

    sndChannel = ChosenSound.play ();

    }

    //  ------------------------

    I added comments to the code itself which should help to explain what is happening. Yes, AS3 is just jam packed with intimidating stuff. As use you it, it will start to make sense.

  • FaceTime remove audio calls

    FaceTime: How remove AUDIO call. I have deleted the video calls and use the FaceTime help without success...

    When you open Facetime there will be two tabs at the top of the screen, said audio and video said. Go to audio and tap on edit in the top left corner. Select the call you want to delete, and then click on remove in the bottom of the screen

  • Equium L20-197: no not line-in jack - how to record from an external audio source

    Hello

    I am generally very happy with my Equium L20, but I now find some trouble which I assume are from cost reduction. For example, there are no micro shipped, so need to buy one for Voip purposes. And I would like to use this notebook to record from an external audio source, but now to discover that he has no line-in, and it seems that the microphone jack is mono only, even if it was possible to configure the audo map to use this to source line.

    I would be very grateful if anyone has any ideas for a solution workaround, possibly using a USB port.

    TIA
    Keith

    Hello

    What this USB external to the line adapter:
    http://speechtechnology.stores.Yahoo.NET/am--USB--adapter.html

    The adapter is especially useful for laptops or computers that do not have a Line In Jack or is not good sound cards

  • The 10 Aspire has a plug external audio combo?

    Group,

    Looking to replace my Gateway netbook because I lost sound playback. The 10 Aspire has a plug external audio combo?

    Ham123

    There are audio problems with 8.1, but across all brands. Everyone expects 8.2.

  • I'm doing an audio call on Messenger (not a video call) but can't hear or be heard. What we're doing wrong?

    Audio call on Messenger

    I'm doing an audio call on Messenger (not a video call) but can't hear or be heard.  What we're doing wrong?

    Thank you. I'll do as you suggest.

  • receive unknown audio streams: How can I get rid of an external audio stream through my laptop? It sounds like a radio station.

    How can I get rid of an external audio stream through my laptop? It sounds like a radio station.

    Try this 1:

    Restore point:

    http://www.howtogeek.com/HOWTO/Windows-Vista/using-Windows-Vista-system-restore/

    Do Safe Mode system restore, if it is impossible to do in Normal Mode.

    Try typing F8 at startup and in the list of Boot selections, select Mode safe using ARROW top to go there > and then press ENTER.

    Try a restore of the system once, to choose a Restore Point prior to your problem...

    Click Start > programs > Accessories > system tools > system restore > choose another time > next > etc.

    http://www.windowsvistauserguide.com/system_restore.htm

    Read the above for a very good graph shows how backward more than 5 days in the System Restore Points by checking the correct box.

    See you soon.

    Mick Murphy - Microsoft partner

  • Reached the maximum of SX20 codec calls once an audio call is connected?

    Hi all

    I have different SX20 devices deployed on our corporate network that are currently on the same version of software: TC 7.2.1.

    For some strange reason that a device does not have a second call (audio) to be placed and added after it has established the first video call?

    Everyone knows this?

    In the State of the system it says the MaxNumberOfActiveCalls = 1 where, as my other systems SX20 say MaxNumberOfActiveCalls = 2?

    I have attached a picture of the number experienced in the tab "call control".

    Thank you

    Brad

    The SX20 has the Multisite Option? Check under the Home tab.

    If no Multisite option installed, adding another call for multipoint call will make the second audio call to become involved only and this is a normal behavior. You mentioned that you cannot add another call (audio), is the system put into service and recorded the CUCM?

    Check also under Configuration > System Configuration > conferences what Multipoint mode:

    Kind regards

    Acevirgil

  • Unable to make 1 + 1 audio call SX80 video call?

    I was under the impression that the SX10 has been the only codec that could not do 1 + 1 video audio call.

    I bought a SX80 without multisite, but once I'm in a video call, it won't let me add an audio call. Is this good?

    What version of software is the SX80?

    You might be hitting bug CSCuq41471, if you do not have anything below TC7.3.  See the TC7 Release Notes, on pg 18 under "SX80 updates".

  • Telepresence, only audio calls

    When we use our SX and C series for audio calls the cameras come out of standby. Is there a setting to keep cameras in mode sleep for audio only calls?

    No - videoconferencing system distinguishes audio and video calls in which use of the camera, so when videoconferencing system wakes the device too. Remember, system of videoconferencing will not know what type of appeal, you're going to do until you actually make the call.

    However, you can configure the camera to remain in the position of privacy, or what position you want that he go on wakeup - see System_Settings/Eve/WakeUpAction - he always wake up well.

    /Jens

    Please note the answers and score the questions as "answered" as appropriate.

  • C series audio call

    Hi all

    We have c series with link ISDN endpoint. How can I dial an audio call of C-series endpoint. Currently we are in place video calls to the other video endpoints, but calls to mobile phones were not going.

    Please guide me here all parameters to change to start the audio call or it will be automatically negotiated.

    Thank you.

    It's instant on TC6.2.0beta3.

  • No free sessions in cisco MCU errors

    just by connecting to the web interface of the joint cisco MCU, am getting error no. FREE SESSIONS, screenshot, please help

    Hi Eric,.

    Allow me to pass this message to the community of telepresence, so that you get the attention of the TP experts. This community is for Cisco WebEx and Cisco Unified MeetingPlace meeting server products and is not normally observed by TP experts.

    I hope that you will get the answers you need faster.

    Kind regards

    -Dejan

Maybe you are looking for