No video across ICT when using different firmwares

Setup:
CM8.6 firmware 9-3-2-11
CM10.5 firmware 9-3-4-17
8941 phones
Tested different scenarios and seem unable to get 2 way video across the ICT.
If both phones are on 9-3-2-11 video works fine.
If both phones are on 9-3-4-17 video is one way
If both phones are on different firmware then video is one way.
Any offers?
Rich

Hi daGUY:
The only way I've been able to get around it is by selecting the video, extracting the audio, and then manually fading the audio in/out so that it matches the length of the video fade in/out. While this works, it's more work, takes more time, isn't as precise since I have to manually do it, and is totally unnecessary! The transitions are supposed to automatically apply to both the video AND its audio!
That's the right thing to do in this case (as you found out). But, it may be that this is a one time problem and the next video will work fine...
Sue

Similar Messages

  • Do IMAQ Cast Image or IMAQ Linear averages give different results when using different computers that are running under Windows XP ?

    Hello
    I'm currently developping an image processing algorithm using Labview 7.1 and the associated IMAQ Vision tools. After several tests, I found a weird result. Indeed, I put the labview algorithm - including the IMAQ VI on the library to get sure that I use all the time the same VI - on my memory stick and used it on two different computers. I tested the same picture (still in my memory stick) and had two very different results.
    After several hours trying to understand why, I found that there were a difference between the results given by both computers at the very begining of the algorithm. Indeed, I used a JPEG file.
    To open it, I first create an Image with IMAQ Create (U8). Then, I open it.
    Then in my first sub-VI, I use IMAQ Cast Image to be sure that the picture is a U8 grayscale picture.
    Right after that, I use the IMAQ Linear Averages. The results of this VI are different on the two computers.
    I tried several time on the same picture : one computer always give me the same result but the two computers give me a different result. So there is no random variable on the results.
    So my question is : Do IMAQ Cast Image or IMAQ Linear averages give different results when using different computers that are running under Windows XP ?
    My bet is on IMAQ Cast Image but I'm not quite sure and I do not undestand why. The labview and IMAQ are the same on both computers.
    The difference between the two computer are above :
    Computer 1 :
    Pentium(R) 4 CPU 3.20GHz with a RAM of 1Go. The processor is an Intel(R).
    The OS is windows XP Pro 2002
    Computer 2 :
    Pentium(R) 4 CPU 2.80GHz with a RAM of 512Mo. The processor is an Intel(R).
    The OS is windows XP Pro 2002.
    If anybody can help me on this problem, it would be really helpful.
    Regards
    Florence P.

    Hi,
    Indeed it's a strange behaviour, could you send me your VI and your JPEG file, (or another file that reproduces) so that I could check this inthere ?
    I'll then try to find out what's happening.
    Regards
    Richard Keromen
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> Découvrez, en vidéo, les innovations technologiques réalisées en éco-conception

  • Just got my ipad air tried to play a video in nbc it says my video is disabled when using 3g/4g go to settings to turn on where do I go to do this

    ipad air not playing video in nbc app it says video is disabled when using 3g/4g how do i turn it on in settings

    The app is saying that a cellular 3G or 4G connection is not good enough for video. Connect your iPad to a WiFi connection rather than cellular to use video in this app.

  • Dbms_crypto - avoid error when using different key in lower environment

    Hello Experts,
    We are using Oracle 11.2.0.2. We are planning to implement dbms_crypto to encrypt few columns. We clone the data from production to lower environment ( DEV, QC).
    For the lower environments, we do not want to get the sensitive data from production and do not plan to use same key. Rather than getting an error when using differnt key, is it possible to get a different resultset back.
    In other words, we want the implementation to be same across environments but want to use a diffent key in lower environment and get different result (or garbage).
    Any suggestions would be greatly appreciated.
    While testing this logic, I am getting following error when using differnt key to decrypt. It works fine if I use same key.
    Error at line 1
    ORA-28817: PL/SQL function returned an error.
    ORA-06512: at "SYS.DBMS_CRYPTO_FFI", line 67
    ORA-06512: at "SYS.DBMS_CRYPTO", line 44
    ORA-06512: at line 19
    DECLARE
      l_credit_card_no    VARCHAR2(19) := '1234 5678 9012 3456';
      l_ccn_raw           RAW(128) := UTL_RAW.cast_to_raw(l_credit_card_no);
    l_key               RAW(128) := UTL_RAW.cast_to_raw('abcdefgh');
       l2_key               RAW(128) := UTL_RAW.cast_to_raw('12345678');
      l_encrypted_raw     RAW(2048);
      l_decrypted_raw     RAW(2048);
    BEGIN
      DBMS_OUTPUT.put_line('Original  : ' || l_credit_card_no);
      l_encrypted_raw := DBMS_CRYPTO.encrypt(src => l_ccn_raw,
                                             typ => DBMS_CRYPTO.des_cbc_pkcs5,
                                             key => l_key);
      DBMS_OUTPUT.put_line('Encrypted : ' || RAWTOHEX(UTL_RAW.cast_to_raw(l_encrypted_raw)));
      l_decrypted_raw := DBMS_CRYPTO.decrypt(src => l_encrypted_raw,
                                             typ => DBMS_CRYPTO.des_cbc_pkcs5,
                                             key => l2_key); --**Using different key to decrypt
      DBMS_OUTPUT.put_line('Decrypted : ' || UTL_RAW.cast_to_varchar2(l_decrypted_raw));
    END;Thank you.

    If I understand what you are trying to do ... and I may not ... it is not going to work.
    SQL> DECLARE
      2   l_credit_card_no VARCHAR2(19) := '1612-1791-1809-2605';
      3   l_ccn_raw RAW(128) := utl_raw.cast_to_raw(l_credit_card_no);
      4   l_key1     RAW(128) := utl_raw.cast_to_raw('abcdefgh');
      5   l_key2     RAW(128) := utl_raw.cast_to_raw('zyxwvuts');  -- alternate key used to attempt a different decryption
      6 
      7   l_encrypted_raw RAW(2048);
      8   l_decrypted_raw RAW(2048);
      9  BEGIN
    10    dbms_output.put_line('Original : ' || l_credit_card_no);
    11 
    12    l_encrypted_raw := dbms_crypto.encrypt(l_ccn_raw, dbms_crypto.des_cbc_pkcs5, l_key1);
    13 
    14    dbms_output.put_line('Encrypted : ' || RAWTOHEX(utl_raw.cast_to_raw(l_encrypted_raw)));
    15 
    16    l_decrypted_raw := dbms_crypto.decrypt(src => l_encrypted_raw, typ => dbms_crypto.des_cbc_pkc
    s5, key => l_key1);
    17 
    18    dbms_output.put_line('Key1 : ' || utl_raw.cast_to_varchar2(l_decrypted_raw));
    19 
    20    l_decrypted_raw := dbms_crypto.decrypt(src => l_encrypted_raw, typ => dbms_crypto.des_cbc_pkc
    s5, key => l_key2);
    21 
    22    dbms_output.put_line('Key2 : ' || utl_raw.cast_to_varchar2(l_decrypted_raw));
    23  END;
    24  /
    Original : 1612-1791-1809-2605
    Encrypted : 3534443342333642353141363846384237463732384636373943374630364234323243334539383042323135
    Key1 : 1612-1791-1809-2605
    DECLARE
    ERROR at line 1:
    ORA-28817: PL/SQL function returned an error.
    ORA-06512: at "SYS.DBMS_CRYPTO_FFI", line 67
    ORA-06512: at "SYS.DBMS_CRYPTO", line 44
    ORA-06512: at line 20

  • Video loses audio when using transitions

    On my band's website, I frequently post videos of us rehearsing or playing at a show. Before I upload the videos, I bring them into iMovie, add a simple fade in and fade out to the beginning and end, and then save them compressed so that they download faster. I've never had a problem with this before.
    Today, I tried to work on some new clips. For some reason, the fade ins and fade outs are fading the video correctly, but not the audio. Instead, the audio simply drops out during the length of the transition; it then jumps back in at 100% when the transition is complete.
    I turned on "show clip volume levels" in the timeline and the volume on the transition is shown to be fading in gradually, starting at 0% and ending at 100% right before the main clip. That's correct, and that's how it's always looked in the past, except now when I play it back, the actual volume stays at 0% during the transition.
    I've tried everything I could think of to fix this, with no luck. I tried importing the video separately instead of pulling it out of my iPhoto library, changing the length of the transition, using a different video file, using different transitions, etc. Nothing works. Furthermore, the problem sticks when I export the video to QuickTime, so it's not an issue just with previewing the video in iMovie. It's also persisted even after quitting and relaunching iMovie, and rebooting the computer entirely.
    The only way I've been able to get around it is by selecting the video, extracting the audio, and then manually fading the audio in/out so that it matches the length of the video fade in/out. While this works, it's more work, takes more time, isn't as precise since I have to manually do it, and is totally unnecessary! The transitions are supposed to automatically apply to both the video AND its audio!
    Any ideas? Please help - I have a iMovie project due on Monday and I will need to use these effects!

    Hi daGUY:
    The only way I've been able to get around it is by selecting the video, extracting the audio, and then manually fading the audio in/out so that it matches the length of the video fade in/out. While this works, it's more work, takes more time, isn't as precise since I have to manually do it, and is totally unnecessary! The transitions are supposed to automatically apply to both the video AND its audio!
    That's the right thing to do in this case (as you found out). But, it may be that this is a one time problem and the next video will work fine...
    Sue

  • No longer outputs video down FW, when using FW external HD?

    In a recent upgrade (I think it was actually when I went to OSX 10.4.6 - although it might have been QT 7.1.1 or even FCS 5.1.1) I have noticed that:
    - when using an external FW800 HD drive for captured footage, and trying to play out DV to my ADVC-100 (on a FW400 bus)
    - my dual G4 no longer plays DV out of FW for more than a few seconds. The FW video output just stops.
    The fact that it plays for a few seconds obviously shows it is all connected up and working OK.
    If I take the HD out of the external FW case and put it inside the G4 (on an IDE bus) - all is fine - DV plays out of FW indefinitely. It also used to work previously (before a software upgrade) - playing DV down FW400 while using external FW800 drives for captured footage.
    Familiar to anybody else? Any solutions?
    I am (I believe) all up to date with updates, including ProAppSupport.

    Answering my own question here:
    Solution was to use an additional FW PCI card (Sonnet Allegro) to give me a second FW bus in my Dual G4 1.42GHz FW800.
    I (wrongly) assumed that with a G4 FW800, with two FW400 ports and one FW800 port, that the FW800 and FW400 busses were separate. Not so, as someone pointed out, saying there are NO Macs with more than one FW bus built in.
    So, external HD on internal FW800 bus, and ADVC-100 on PCI FW400 card - and all is OK now.
    Can I give myself "solved" points?

  • Images on Facebook do not appear when using different web browsers

    Images on Facebook do not appear when using Safari on my Macbook Pro (I've tried Google Chrome too with the same result).  This makes me think it's a setting within OS Mavericks that I'm missing.  I have not seen this issue on any other computers.  This only occurs on my, and others' profile pictures on my profile page and on the news feed, not photos that are posted in albums or on walls.  and yes, i have images enabled in Safari.
    In safari the images don't appear, and in their place is a small blue "?" square >>.
    In Chrome it appears as a broken image link >>
    Has anyone encountered this?  Is there a fix?  It is very annoying.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • QBE issue when using different db types

    Hello,
    Our ADF application has the ability to connect to the same schema but different backends (Oracle and SQL Server). I have successfully implemented switching the AM data source. I am running into a syntax issue when performing Query By Example for a table. The error is (Incorrect Syntax near "|"). In the VOImpl I overrode the function public String getViewCriteriaClause(boolean forQuery) and I can see the viewCriteriaClause is "( (UPPER(TransMasterEO.TMMessage) LIKE UPPER( ? || '%') ) )". This works when running against the Oracle instance but fails when running against the SQL Server instance.
    I implemented code to replace the "||" with "+" but then we fail on Oracle. Can someone recommend an approach to resolve?
    Running 11.1.1.6
    Thank you
    Rudy

    he different dbs yre using different sql flavors. This is causing trouble if you change the connection to a db which is using a different flavor. I'm not aware that you can change the flavor used to build the queries to, but you can implement your own sqlbuilder which may just extend from the one for hte right flavor and then build the sql through the right class.
    Check http://jobinesh.blogspot.com/2013/02/customizing-sql-builder-class.html for more info on how to change the sqlbuilder.
    Timo

  • HT4623 Ipad not playing any videos on Internet when using wifi

    Ipad 4 not playing any videos when using wifi

    Try this:
    1. Close all inactive apps. Double-click the Home button and hold apps in the Task Bar down until they all wiggle then tap the minus sign to close apps. Tap the home button to return to Home screen.
    2. Hold the Sleep/Wake and Home button down until you see the Apple Logo.

  • Project changes when using different pc's

    ok i had using pro 4 a project saved on  pc one
    i then opened it up on another pc [pc 2] where i added some title pages
    then saved the project on pc2 and copied the whole saved folder back to pc one
    when i opened the copied project on pc one [using pc one] the title fonts have changed
    is there some issue when using more than one pc to work on one project ???
    oh i forgot pc one = win xp and pc2 = windows 7 !!!
    cheers

    ok the font used was MV Boli
    on both pc when i look in titler they both say MV Boli
    they just look totaly different
    other thing different between the two is :-  the font templates used and saved on pc 2
    are not showing up when opend on pc 1

  • When using different profile, I can't get it cleared for security

    Due to trouble with Flash, I changed/added a ff profile.
    When I then tried to sign in to yahoo, I got screen saying for security purposes I had to verify my ID. I had a choice of several methods, text or voice to cell, email to different email.
    I tried both texting my cell and getting email. Both times, I got code. I typed it in and clicked on 'submit'. Nothing happens.
    The image remains the same. It looks like I did not click at all. I have repeated this, sometimes clicking 8-9 times. still no change.
    In order to reach my yahoo mail, I had to go back to my earlier profile. I may as well change back to old profile and as changing did not solve the problem with flash.
    But I would still like to know what is going on/ how to fix it.When I travel and use different computer, I have to do this, verify ID. I want to know how to force the verifcation through.
    Thanks

    Some added toolbar and anti-virus add-ons are known to cause
    Firefox issues. '''Disable All of them.'''
    Start '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Firefox in Safe Mode]''' {web Link} by holding down the '''<Shift ''(Mac Options)'' >''' key, and then starting Firefox. Is the problem still there?

  • Video quality deteriorates when using title tool or color.

    hi there, I'm currently editing a HD project in FCE 4,0,1. All goes well, except when I use the title tool (lower thirds) or when I use color to adjust a certain shot. When using color, the movements begin to jitter. When using the title tool, the video in the background + the title itself becomes pixelated, meaning that the quality drops far below the original HD quality. The bad quality remains when exporting the movie. When I move the title just a tiny bit, the quality goes back to regular HD, but when I render it, it goes back to inferior video. Any ideas, suggestions, insights, ... ? Thank you

    Hi(Bonjour)!
    Welcome to the forum.
    Did you render the timeline?
    What are the original clip format/codec ?
    See those links about titling in video/DV:
    http://www.kenstone.net/fcphomepage/perfect_titlesphil.html
    http://www.kenstone.net/fcphomepage/motion_text_in_fcpspencer.html
    http://www.kenstone.net/fcphomepage/basic_photoshopfiles.html
    http://www.kenstone.net/fcphomepage/basic_ps_stills_tofcp.html
    http://www.kenstone.net/fcphomepage/basicps.html
    http://www.kenstone.net/fcphomepage/livetypefundamentals.html
    http://www.kenstone.net/fcphomepage/basic_textgenerators.html
    http://www.kenstone.net/fcphomepage/basic_credit_rollstc.html
    Michel Boissonneault

  • Why is the video so dark when using 'Hello' video calls?

    HI,
    I have used 'Hello' on 4 computers this week to trial it. For each of them the video is very dark. When I open AnyMeeting on the same computers the video output is might lighter. Can anyone tell me why this is and/or how to change the Hello settings?

    Hello Laine,
    Please try refreshing your Mozilla Firefox using its refresh feature.
    The Refresh feature (called "Reset" in older Firefox versions) can fix many issues by restoring Firefox to its factory default state while saving your bookmarks, history, passwords, cookies, and other essential information.
    '''''Note:''' When you use this feature, you will lose any extensions, toolbar customizations, and some preferences.'' See the [[Refresh Firefox - reset add-ons and settings]] article for more information.
    To Refresh Firefox:
    # Open the Troubleshooting Information page using one of these methods:
    #*Click the menu button [[Image:New Fx Menu]], click help [[Image:Help-29]] and select ''Troubleshooting Information''. A new tab containing your troubleshooting information should open.
    #*If you're unable to access the Help menu, type '''about:support''' in your address bar to bring up the Troubleshooting Information page.
    #At the top right corner of the page, you should see a button that says "Refresh Firefox" ("Reset Firefox" in older Firefox versions). Click on it.
    #Firefox will close. After the refresh process is completed, Firefox will show a window with the information that is imported.
    #Click Finish and Firefox will reopen.
    Did this fix the problem? Please report back to us!
    Thank you.

  • Why is the audio of MSNBC, YouTube and other site videos very low when using Firefox?

    For several weeks now, when I view videos from msnbc.msn.com, youtube.com and other videos from other sites, the audio is so low....I can hardly hear it. But when I view the same videos using Google Chrome, the audio is very good.
    == URL of affected sites ==
    http://www.youtube.com

    Did you check the volume setting in the Flash player?
    Do those Flash players have a volume button that opens a slider?
    Clear the Flash cookies and settings.
    Flash Local Storage - http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html
    The Flash object on that page shows the local storage on your computer.
    You can also delete the macromedia.com and #SharedObjects folders to reset all Flash cookies and settings.
    XP: C:\Documents and Settings\&lt;user&gt;\Application Data\Macromedia\Flash Player\
    Vista: C:\Users\&lt;user&gt;\AppData\Roaming\Macromedia\Flash Player\
    (AppData is a hidden folder: http://kb.mozillazine.org/Show_hidden_files_and_folders )

  • Is there a new way to download videos on Safari when using Lion?

    Since I upgraded to Lion 10.7.3, the method I was using to download videos, from YouTube and other internet sites, no longer works.  This method (with Snow Leopard) involved going to the Window menu, clicking on Activity, and finding the video file in a list, and double clicking it.  Usually the video would still be downloading and would be a certain number of MB in a long list of files of various KB sizes.
    Now, there is no downloadable file listed (in Activity) for the video I'm watching.  Is there a way to download the video without purchasing additional software?

    If this can "help" you I remember that also in previous versions of OSX sometimes Activity Monitor did not show certain particular videos: I think it depends by the way the video is set on the web page (something too technical for me)
    Anyway the best solution for downloading videos from the web will always be Firefox + the extension "DownLoadThemAll". Unfortunately there is nothing like it for Safari.
    I have also tryed different Apps & Tricks for downloading easily videos from Youtube but the "Dream team" Firefox+DownLoadThemAll is always the best!
    Maybe there is something similar with Greasekit but actually the "Activity" method works fine for me.

Maybe you are looking for

  • PI 7.0 settings to avoid IDOC conversion to XML

    Hi Experts, In order to have idoc tunneling in PI 7.0 I know I have to: --set the parameter in IE: XML_CONVERSION = 2. --add entry in the exception table IDXIDOCINB using the report IDX_SELECT_IDOCTYP_WITHOUT_IS Actually performing the 2nd step I can

  • TP4[BUG]: Memory profile and CPU profile doesn't work for MAC

    I'm using Mac OSX 10.5.4. When I try to use Memory profile and CPU profile, I got following error: Error occurred during initialization of VM Could not find agent library in absolute path: /Shared/jdevstudiobase1111/jdev/lib/profiler15.so But the fil

  • My 30g ipod video wont stop blinking the little apple!!! help!!

    i plugged it in and forgot to 'safely remove the hard drive' and now its freaking out and blinking that little apple!! i cant turn it off or anything. I JUST GOT THIS IPOD TODAY!!!! somebody PLEASE help!

  • Need driver for OS 10.9 for Samsung clp-365w Printer

    Trying to conect may Samsaung CLP-363W printer to me Mac Book Pro Running Maverick. Please help Need driver for OS 10.9 for Samsung clp-365w Printer

  • DVDs keep ejecting and won't play

    When I try to insert some dvds, but not all of them, they just pop back out and will not play in the dvd player on my 2008 Macbook Pro. How can I fix this? Is this a dvd problem or a computer problem??? I am baffled and would really love to fix this