Cisco Profile 52/55 Dual - displays video on only one screen after software upgrade 7.1.4

Hi,
I've upgraded the Profile 52/55 Dual system to TC 7.1.4 and it no longer shows video on both screens during a conference. It displays content on the second screen fine. It worked in version 6 so I wonder if something changed in the software or the endpoint requires some additional configuration.
I've checked settings under Configuration > System Configuration > Video > Monitors and it's set to Dual. I've changed it few times and set it back to Dual but this didn't resolve the issue. I can't see any dual screen option key added under system information but I assume it has a dual screen option hence it's a dual screen system.
Do I need to change any settings?

Hi Patrick
Thank you very much for your response.
The system doesn’t have a remote control as such, it’s an MX700 so it has the 10inch touch panel, I had some engineers onsite attempting to bring the self-view image up using the panel but the only image that they managed to retrieve was a self-view PIP on the main image.
If I change the self-view settings in the configuration nothing appears to happen on the codec, the second monitor will only display the presentation, it’s as if the system is stuck in dual screen presentation only, even though when I set the system to dual screen, flick it back to single screen, set it to dual screen, back to the same situation no image unless there is a presentation being sent.
I have ensured that these settings are forced on the system
xconfig Video Monitors: Dual
xconfig Video CamCtrlPip CallSetup Mode: Off
xconfig Video SelfviewDefault Mode: Off
xconfig Video SelfviewDefault OnMonitorRole: Second
xconfig Video SelfviewDefault FullscreenMode: On
But no matter what I do I am unable to get the behaviour that I expect, this is why I have posted on this forum, I seem to think that the problem may be related to a software bug, however I am unable to downgrade as that would stop the control panel from working (this system doesn’t have a remote), and I see no mention of a second monitor issue reading the release notes, I have checked the online bugs and cannot find anything there either. so I am wondering if someone in Cisco has any idea as to what is happening here.
I thought about trying to use TC console to see if I could force a layout via this tool / or at least see what layouts are on the system, however the TC console version 6 will not connect to this system (I think this is more firewall related than system, as standard telnet and ssh attempts fail also).
Again I appreciate any and all assistance provided greatly, I am completely baffled as to what is happening here.
Cheers

Similar Messages

  • How do I use dual displays to have a full screen app on one monitor and another full screen app or the desktop on the other?

    How do I use dual displays to have a full screen app on one monitor and another full screen app or the desktop on the other?
    I want to have my itunes visualizer on my TV which is connected via HDMI adapter, and still have access to full screen itunes and my desktop on the main display.
    Any suggestions?  App downloads that can do this?  Please let me know.

    You can't do it.  This has been an issue since Lion.

  • Dual Core G5 using only one CPU

    Anyone has an idea about what happened to me last week? Here is what happened:
    I let my dual 2.3 GHz Power Mac G5 run over night to run a certain task. When I came back the following morning, the fans were running like crazy and the computer was frozen. I had to reset it. After that it started up, but from then on only used one CPU. In System Profiler as well as in Activity Monitor, only one CPU is shown. After some more days, it would not turn on anymore, not even with one CPU.
    What to do now? Thanks for helping me out...

    It is insurance. It keeps a system running so you can do a safe shutdown. It protects the boot drive from directory corruption. Protects wired ethernet port from getting fried (someone last week's sad tale).
    "Nice idea." Well, yes. Can you drive a car without insurance? I'll take UPS and help protect my systems.
    If you want to leave a system running unattended and not come back to a dead or dying system... I have read enough tales of woe that "but it was working yesterday" and "we've had some storms but lights stayed on" that I don't take chances. And I often give advice that isn't 1:1 correlation. Like "backup daily" and "run disk repairs before there is a problem."
    maybe it over-heated, too.

  • How can I play different videos with only one MediaPlayer?

    I want to play two videos with only one MediaPlayer:
    private static MediaPlayerBuilder mpB;
    private static Media mLogo;
    private static Media mSaludo;
    private static MediaPlayer mpLogo;
    private static MediaView mvLogo;
    private static Group gLogo;
    public void start(final Stage stage) {
    mLogo = MediaBuilder.create().source(myGetResource(VIDEOLOGO_PATH)).build();
    mSaludo = MediaBuilder.create().source(myGetResource(VIDEOSALUDO_PATH)).build();
    mpB = MediaPlayerBuilder.create();
    mpLogo = mpB.media(mLogo).build();
    mvLogo = MediaViewBuilder.create().mediaPlayer(mpLogo).build();
    gLogo.getChildren().add(mvLogo);
    sActual = new Scene(gPozos, WIDTH, HEIGHT, Color.BLACK);
    stage.setScene(sActual);
    stage.show();When I want to play mLogo:
    sActual.setRoot(gLogo);
    mpLogo.play();Then, when I want to play mSaludo I do this:
    mpLogo = mpB.media(mSaludo).build();
    sActual.setRoot(gLogo);
    mpLogo.play();or this:
    mpB.media(mSaludo).applyTo(mpLogo);
    sActual.setRoot(gLogo);
    mpLogo.play();or this:
    mpB.media(mSaludo);
    sActual.setRoot(gLogo);
    mpLogo.play();But is impossible to change the Media. It doesn't work. Sometimes I play mLogo video and sometimes (depends on the code) the video mLogo doesn't start and I see an image of the first keyframe and nothing else. I have no exceptions, no errors, nothing.
    I want to play mLogo and then mSaludo. How can I do this?
    Thanks
    Noelia

    Ok, I understand, if I have 100 videos I have to build 100 MediaPlayers but only one MediaView.
    Here I post my code with only two videos, I included all the asynchronous errors.
    package pruebafx;
    import java.util.logging.FileHandler;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaErrorEvent;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaView;
    import javafx.stage.Stage;
    * @author Solange
    public class PruebaFX extends Application {
        private static final Logger logger = Logger.getLogger("pruebafx.pruebafx");
        private static final String MEDIA_PATH = "/images/";
        private static final String VIDEOLOGO_PATH = MEDIA_PATH + "logo.flv";
        private static final String VIDEOSALUDO_PATH = MEDIA_PATH + "saludo.flv";
        private static Group root;
        private static Scene scene;
        private static MediaPlayer mpLogo;
        private static MediaPlayer mpSaludo;
        private static Media mLogo;
        private static Media mSaludo;
        private static MediaView mediaView;
         * @param args the command line arguments
        public static void main(String[] args) {
            Application.launch(args);
        @Override
        public void start(Stage primaryStage) {
            try {
                FileHandler fh = new FileHandler("DisplayManagerlog-%u-%g.txt", 100000, 100, true);
                // Send logger output to our FileHandler.
                logger.addHandler(fh);
                // Request that every detail gets logged.
                logger.setLevel(Level.ALL);
                // Log a simple INFO message.
                logger.info("Starting PruebaFX");
            } catch (Exception e) {
                System.out.println(e.getMessage());
            primaryStage.setTitle("Change Videos");
            root = new Group();
            mLogo = new Media(myGetResource(VIDEOLOGO_PATH));
            mSaludo = new Media(myGetResource(VIDEOSALUDO_PATH));
            mpLogo = new MediaPlayer(mLogo);
            mpSaludo = new MediaPlayer(mSaludo);
            mediaView = new MediaView(mpLogo);
            mpLogo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpLogo.stop();
                    mediaView.setMediaPlayer(mpSaludo);
                    mpSaludo.play();
            mpSaludo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpSaludo.stop();
                    mediaView.setMediaPlayer(mpLogo);
                    mpLogo.play();
            mLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mLogo");
            mSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mSaludo");
            mpLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpLogo");
            mpSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpSaludo");
            mediaView.setOnError(new EventHandler<MediaErrorEvent>() {
                public void handle(MediaErrorEvent t) {
                    logger.severe("Error en MediaView mediaView");
                    logger.severe(t.getMediaError().getMessage());
            root.getChildren().addAll(mediaView);
            scene = new Scene(root, 300, 250);
            primaryStage.setScene(scene);
            primaryStage.show();
            mpLogo.play();
        public String myGetResource(String path) {
            return (this.getClass().getResource(path).toString());
    }My video saludo.flv hangs up.
    Here is the content of the log file:
    <?xml version="1.0" encoding="windows-1252" standalone="no"?>
    <!DOCTYPE log SYSTEM "logger.dtd">
    <log>
    <record>
    <date>2011-12-12T12:03:53</date>
    <millis>1323702233578</millis>
    <sequence>0</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>INFO</level>
    <class>pruebafx.PruebaFX</class>
    <method>start</method>
    <thread>12</thread>
    *<message>Starting PruebaFX</message>*
    </record>
    <record>
    <date>2011-12-12T12:04:06</date>
    <millis>1323702246109</millis>
    <sequence>1</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>SEVERE</level>
    <class>pruebafx.PruebaFX$6</class>
    <method>run</method>
    <thread>12</thread>
    *<message>Error en MediaPlayer mpSaludo</message>*
    </record>
    <record>
    <date>2011-12-12T12:04:06</date>
    <millis>1323702246109</millis>
    <sequence>2</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>SEVERE</level>
    <class>pruebafx.PruebaFX$4</class>
    <method>run</method>
    <thread>12</thread>
    *<message>Error en Media mSaludo</message>*
    </record>
    </log>
    Do you know when will be available the 2.0.2 version???
    I have to finish my application!!!
    Thanks.
    Noelia

  • Setting Photoshop monitor profiles when using dual displays?

    I'm using a Macbook Pro connected to an Apple Cinema Display under OS 10.5.8. Both monitors are calibrated and I export from Lightroom to Photoshop in ProPhoto. The Photoshop working colour space is also ProPhoto so there is no mismatch there.
    When in dual display mode I like to have my Photoshop application on the Macbook screen and the photo I'm working on shown on the Cinema Display. In fact, I couldn't work any other way because the laptop's screen is not at all suitable for precision work.
    I noticed that when I send an image from Lightroom to Photoshop CS4 for further editing the colours were off in Photoshop. This lead me to check the monitor profile used by Photoshop and I saw it was using the Macbook Pro .icc profile. This seems to be used even if the image is displayed in the external display. Selecting the Cinema Display as "default" in ColorSync doesn't change the situation. As a result, the colours as displayed by Photoshop are incorrect.
    The only "solution" I have found is to either go to System Preferences > Displays  and select the external monitor as the principal one (which is inconvenient because it negates many of the advantages of using dual monitors) or setting the Cinema Display's .icc profile for the Macbook Pro as well (which makes it the one chosen by Photoshop but means I'm only working wiht one correctly calibrated monitor).
    Is there a solution to this problem? Ideally I want to have both my monitors calibrated and Photoshop detect which one I'm using to view my photo. Failing that, I would like to have both monitors calibrated and "tell" Photoshop to use the Cinema Display as the principal monitor.I don't want .
    Many thanks!

    Thanks for your reply!
    I'm not too worried about 10.6 because I'm not using it ( I reverted to 10.5.8 precisely because of the colour issues).
    I don't really understand your reply. My problem is that if Photoshop uses my Mabook Pro profile as the "monitor profile" my pictures - as displayed on the Cinema Display - look different in Lightroom and in Photoshop. It's as if Lightroom is "aware" of which of the two displays is being used whereas Photoshop can only deal with one at a time. I would like to know if this analysis is correct and what I can do so that Photoshop displays my photographs the same way as Lightroom does on each of my two displays.

  • FCP 7, issue with dual display (video frozen but audio plays)

    I have just installed FCP 7 (Studio 3) onto a new MacPro 8-core with Radion5770 GFX card.
    Primary monitor is running via DVI, secondary monitor is running via DisplayPort to HDMI.
    My problem is that if i enable the secondary display so that I get a full screen image from the timeline and then attempt to play the video remains frozen whilst the audio plays.
    Its the same on the primary display video viewer window as well.
    If I TURN OFF the secondary display then the video viewer on the primary window returns to normal play back without any issues.
    If I turn the seconday display back on, then "scratch" along the timeline then the video refeshes corectly - but every time i hit play the video remains frozen.
    Any ideas???

    Ive found the solution.
    its quite easy.
    symply go to
    Final Cut Pro -> Audio/Video Settings
    Navigate to A/V Devices and under video select the screen your using. If your using the computers screen, like a macbooks screen make sure to check the box. "Miror on desktop". If you do not do this you will have a black frozen immage and the sound will continue playing.
    I set a shortcut for "All frames" so that when I press a cmd+p it automatically plays full screen on my macbook.
    Hope that helps.
    Sylvain Cruiziat
    http://www.vimeo.com/sylvaincruiziat

  • How to display events of only one IPS in Security Monitor?

    Hello,
    i searched the forum with no result. I have CW 2.2 with IDSMC 2.1. I got two IPS and 2 IDSM-2 (4.x is in production / 5.x is in test) which have all their four interfaces sniffing in different network segments. Now i am flooded by the thousands of messages from the internet with no possibilty to just concentrate my view on the events generated on only one special interface of a single IPS.
    To temporarily focus only one one interface of a single IPS how can i filter the events in Security Monitor to only display the events of a this device and a single interface?
    This would be extremly helpfull for to simulate attacks in an test environment with shuning/blocking. I have rare possiblities to set up a second CW IDSMC on another machine. And after all, i would appreciate to focus (filter) in that way for later examining my network to tune signatures and events.
    Furthermore, on IEV 4.1 i was able to get a real time dashboard showing 'real time' events. I did not see this functionality for IPS 5.x and IDSMC. How can i view real time data there to see my networks reaction to simulated attacks.
    Any ideas how to only display only wanted data in Security-Monitor?
    Thanks in advance, Gerhard

    As far as I know, you cannot display the events of only one IPS in Sec Mon.

  • Video mirroring of Ipad2 using component cable only displays videos but not home screen

    I watched videos online that show that I should be able to view my ipad2 home screen and apps while I'm video mirroring on my television but I can't see anything (only hear the audio) except when I play videos or watch youtube and use apps that have the TV Out function...Is there anyway to fix it?

    I mean I can only view videos that I play on my TV from my Ipad2 but other than that I can't see my Ipad home screen on TV or any other apps that I open, though I can hear the audio. I'm using a component cable. I thought that I should be able to view my home screen etc with the cable?

  • Dual-Display Issue: Mavericks selects primary screen randomly

    I am using to Displays with my Mac Pro connected with 2 internal graphic-cards (2 original mac specific GT 120 ounted at PCIe Slot 1 and Slot 3). It worked like a charme till i updated to Mavericks.
    Currently on every system-(re)start the primary screen is swapped/selected randomly. Sometims the left one, sometimes the right one is primary. No matter the display settings i made.
    I need a solution for this.
    Best regards
    Volker
    Btw:
    When will colors come back to Mac OS? Everythings grey and colorless since Lion. Imho a usability setback. Especially the Finder could benefit of some colored Icons again.

    This has been happening to me regularly since buying one of the new mid-2009 MacBook Pros. It had never happened with my previous early-2008 MacBook Pro.
    Additionally, the detect displays functionality is not triggered as it should be by dis/connecting the display. I have to manually “detect displays“ every time. Very frustrating, and pretty weird.

  • Can the Classic display video on its own screen while sending video "out"?

    Well, the topic pretty well covers it. I'd like to use the iPod as a monitor while outputting to projector. Any way to do this?

    Unfortunately, the new 3rd generation Nanos require the more expensive Composite or Component cables for TV out to work. The cable you are using is the older regular A/V cable.
    iPod: TV out support
    http://docs.info.apple.com/article.html?artnum=300233
    Patrick
    p.s. if you DO have the newer composite cable, as shown on the page I linked to, then you might simply have a bad cable, which has been reported here from time to time as happening.

  • Dual 7916's showing blank blue screen after 30 mins. uptime

    Have any of you had this experience before? I have a 7975 series phone with dual 7916's expansion modules; The phone and the expansion modules boot-up fine but after 30 mins or more of idle time, the expansion modules display screen is Blue with no programing.This setup is working fine on other phones but is an issue on two 7975's right now. I have deleted and re-added the problem phones in CUCM 9.1 replace, ALL hardware (i.e. phone, pwr cube, expansion modules etc.) and swapped all network components. See the following Specs. below:
    CUCM 9.1
    7975 firmware SCCP75.9-3-1SR1-1S
    7916 firmware B016-1-0-4-2

    Hi Richard,
    Just covering all steps here but are the expansion modules selected within the phone configuration within CUCM?  On the physical phone itself, if you press the settings button and select Status, then Expansion Modules what do you see?  May have to upgrade the firmware of the 7916's.
    Hope this helps
    Tony
    Please rate helpful posts

  • RV325 Dual WAN Router - Use only one IP

    I have a rv325 dual wan router. I have setup load balancing on the router, but I don't want one of the servers here being load balanced. How do i set it to only use a specific WAN while everything else is load balanced?

    Michael,
    I like to share link that will has a step by step screenshots on how to configure protocol binding. Your source ip will be server and Destination is whichever WAN you are shaping that traffic. Hope this helps
    Article ID: 4242
    http://sbkb.cisco.com 

  • USB 2.0 Video Adaptors don't work after lion upgrade

    I use to two USB 2.0 Video DVI Adaptors and I recently upgraded to Lion. Now neither of the two work. I went online and loaded the most recent drivers, but no joy. all the displays do is flicker.. I am starting to regret upgrading. Do you have any ideas? they are IOGEAR GUC2020DW6 Diamond BVUMD3, both worked great prior to the upgrade.

    I believe those adapters use are DisplayLink Certified, and if so, there are generic Lion Beta drivers you can download from
    http://www.displaylink.com/support/mac_downloads.php
    I am about to order that hardware and take a leap of faith with the Beta drivers.

  • Display shows only white screen after booting up

    My computer froze while the screen saver was playing and I rebooted and now there is only a white screen.  The apple apears and the grey circle spins but then it freezes and the display just stays white.  I can still access all of the harddrives over my network so I am assuming it is just my video card.  Any thoughts?

    I doubt it's your video card, but if you want to test that theory, try the Apple Hardware Test.
    Intel-based Macs: Using Apple Hardware Test

  • IMovie '08 won't preview my newly imported video, shows only black screen.

    Hi,
    I just imported a new video from my camera, and it won't preview it in the viewer. the thumbnails will "play", but noting in the viewer. I just tried opening an older project, and they work fine.
    Is there a way to force imovie to rebuild the previews of selected clips?
    Thanks,
    t

    Hi,
    I just imported a new video from my camera, and it won't preview it in the viewer. the thumbnails will "play", but noting in the viewer. I just tried opening an older project, and they work fine.
    Is there a way to force imovie to rebuild the previews of selected clips?
    Thanks,
    t

Maybe you are looking for

  • "Not an executable or is a link" errors when starting Messaging Server

    "Not an executable or is a link" errors when starting Messaging Server <P> If Calendar Server 3.x has been installed to the same server root as Messaging server, it is possible that the command 'NscpMail start' to restart the server will return a str

  • Connecting 2 WAN clouds on the same IP address range.

    Hello, I have a problem connecting my office to two third party companies. I have two Cisco 1700 series WAN links to my office from these companies, Both routers are fully managed by their respective companies, both use static routing, and both are u

  • Return value is null

    hi, in my java file, i am selecting only one field and the value will be displayed into my jsp file, the problem is, it return a null value meaning the value of bizid is null.can anybody can tell what's the problem with my script?? here is my method

  • Problem loading Cyrillic characters with UTF16

    I am trying to use SQL*Loader to load data into a table that consists of American and Cyrillic columns. The Cyrillic columns are of type NVARCHAR2(300). The database NLS params are as follows: NLS_LANGUAGE = AMERICAN, NLS_TERRITORY = AMERICA, NLS_CHA

  • Cognos & Documentum Integration with Access Manager

    Hi We are trying to implementation a solution around Cognos & Documentum(6) using Sun Access Manager. Does anyone has implementation such solution or has any suggestion . Please help.. Thanks