Basic VT / Video Question

I am upgrading my CM to v4.2 this month and looking to do a limited implemenation of some video. I have read the basics on VT Advantage solution and had some questions I can't seem to find the answers to:
1. Besides the obvious desktop software and hardware (camera) installation, what additonal configuration changes do I need to make to CM/Unity/gateways to get video working in the environment?
2. What kind of additional load is now placed on the network with video and what will this do to my current bandwidth configurations?

Michael,
First off you should check out the IP Video Telephony SRND if you are thinking about deploying video. Here is the link. (It's a 4.1 reference but should be 99% the same for 4.2).
http://www.cisco.com/application/pdf/en/us/guest/netsol/ns268/c649/ccmigration_09186a00804ff6ba.pdf
Somewhat brief answers to your questions.
1. QoS for video on all network devices. The above guide discusses this but the Enterprise QoS SRND is the best reference. Switched only VT advantage isn't that hard. If you have WAN links then the LLQs should be configured independantly for video and voice(still only one llq though but this will ease admin and give the ability to police the video). Call Manager locations can be created to help enforce Call Admission Control of video calls. Provisioning the bandwidth is going to be one of the harder things to configure.
ACLs will need to be adjusted for PC/Cam to Phone communication. The phone proxies the connection for the Camera and determines the camera via CDP (local on the phone switch) and then sets up a TCP connection traversing L2 vlans to L3 router and back. So if you have Phone acls they need to be adjusted. Again this is referenced in the above document.
Regions for video types. You have a few options on video quality. This response will also answer 2. You can choose Cisco wideband, 7mps each direction for the highest quality and low amount of system overhead on the pc cpu. Of course this takes up a total 14mb for video. Should only be used on local lan. Then you have increments of h263. They range from 128 up to 1536. The higher the bandwidth the better the quality and more cpu on the local pc. You will need to use regions to set the desired video codecs and locations to enforce the bandwidth the codecs require.
Lastly multipoint conferencing and other video endpoint integration. If you want conference with video you need to add MCUs. Currently (not sure on 4.2) CCM has a limitation on determining Video conference resources in an intelligent fashion. Essentially you need to have any video MCUs at the top of your MRGLs in CCM. This leaves the potential for Audio only conferences happening on very expensive video conference bridges. This calls for Device Pool and MRGL design changes for people who really only need multi-point video conferences.
Read that SRND, great resource.
Please rate any helpful posts
Thanks
Fred

Similar Messages

  • Basic Hyperion Workspace question

    Is there any way to Drill-Down to data by double-clicking on the chart item in Hyperion Workspace? I can do this in Hyperion Reporting Studio.

    hi all,Hi Neerav
    I have very basic clone database question
    If i create database A and clone database B using A...
    I want to know that any operation done on A will be automatically done on Cloned database B.Oops....Now you're asking about rocket science. Sorry, I don't know.
    I know about some basics:
    Streams or Replication--> Which can give you data on B in read-write mode.
    DR--> For safeguarding your database and B will work as DR solution.
    Hope u understandNo, please make us understand.
    Regards,
    S.K.

  • Basic recording/feedback question

    I'm recording basic vocals against accompaniment tracks using an APOGEE ONE and Audio-Technica 40 series AT8449 condenser mic. I use only headphones, no external speakers.
    If I record with "monitoring" on I constantly battle feedback/distortion, especially on songs with a wide dynamic range. When the feedback protection kicks in the message indicates that I'm getting feedback through my external speakers (which I don't have), I can minimize the problem by turning "monitoring" off but I lose the reference vocal. I know I must be overlooking something very simple. Any help is appreciated.

    hi all,Hi Neerav
    I have very basic clone database question
    If i create database A and clone database B using A...
    I want to know that any operation done on A will be automatically done on Cloned database B.Oops....Now you're asking about rocket science. Sorry, I don't know.
    I know about some basics:
    Streams or Replication--> Which can give you data on B in read-write mode.
    DR--> For safeguarding your database and B will work as DR solution.
    Hope u understandNo, please make us understand.
    Regards,
    S.K.

  • Basic PDF/SSL Question

    Okay, I know this is a basic question, and I'm not sure if this is really where I should be posting it, but maybe someone out there has experience with this.
    I have a PDF form sitting on a secure server.  I have it set up to email the completed PDF back to our company when the user clicks the SUBMIT buttton.  Whether or not the PDF is secure coming back to us would be dependent on the email server the user uses - not that the form sits in a secure area on our server or that the PDF is security settings are set, correct?
    Any input appreciated.
    Thanks
    Q

    hi all,Hi Neerav
    I have very basic clone database question
    If i create database A and clone database B using A...
    I want to know that any operation done on A will be automatically done on Cloned database B.Oops....Now you're asking about rocket science. Sorry, I don't know.
    I know about some basics:
    Streams or Replication--> Which can give you data on B in read-write mode.
    DR--> For safeguarding your database and B will work as DR solution.
    Hope u understandNo, please make us understand.
    Regards,
    S.K.

  • Basic wifi service question

    basic wifi service question
    A Windows-using friend of mine subscribes to a service from Verizon that is sort of like a cell phone for a computer - wifi service that you can access from theoretically anywhere, for something like $60 a month -
    as far as I can determine, one CAN get this for Mac but ONLY if you have a 15 or 17 inch laptop with PC slots - unless I am missing something. It requires a special kyocera card.
    Another company, T-Mobile, offers a similar service, but with no MAC access at all.
    So my question is: is there a similar service, wi-fi access theoretically anywhere (or even just anywhere in New York City) ? Hopefully with just the regular mac airport card and not any additional special hardware?
    Thanks!
    Will

    Hello WillFriedwald2
    The kind of service your describing is probably a 3G and GPRS service.
    Phone companies now offer mobile high speed connections using EDGE technology or GPRS2 and supply a 3G or GPRS PCMCIA card.
    However some companies are now offering a package whereby you get high speed 3g and gprs and also wifi.
    So to use this service on a laptop that has no PC card slot you need to get a 3G or GPRS2 phone that supports blue tooth then you can connect your laptop to the phone over bluetooth and therefore access high speed internet.
    But if you had a desktop mac such as a G5 you would be better just getting a regular cable or dsl connection in your home and invest in a wireless router.

  • Basic JDBC transactional question

    Hello all,
    I have (what I believe) is a basic transactional JDBC question.
    Here's what I want to do:
    begin transaction
    select a row from a table where (some condition).
    that row may or may not exist.
    if the row exists: update the row
    else if the row does not exist, insert a new row
    end transaction
    I want this entire thing to be atomic .. I don't want the select to complete, then have something else come in there before the update/insert takes place.
    I'm using MySQL .. I seem to remember hearing about some proprietary MySQL command which would do a SELECT + UPDATE atomically .. which would be fine, but I can't find it.
    Wrapping this with a row-level lock would be fine too .. I'm just not sure how to do that in JDBC.
    Thanks!
    -d

    By thte way, and not that it helps the orignal poster, who's using MySQL, but Oracle has a proprietary MERGE statement that does "insert or update" in one go. For example:
    MERGE INTO bonuses D
       USING (SELECT employee_id, salary, department_id FROM employees
       WHERE department_id = 80) S
       ON (D.employee_id = S.employee_id)
       WHEN MATCHED THEN UPDATE SET D.bonus = D.bonus + S.salary*.01
         DELETE WHERE (S.salary > 8000)
       WHEN NOT MATCHED THEN INSERT (D.employee_id, D.bonus)
         VALUES (S.employee_id, S.salary*0.1)
         WHERE (S.salary <= 8000);

  • Basic Clone database question

    hi all,
    I have very basic clone database question
    If i create database A and clone database B using A...
    I want to know that any operation done on A will be automatically done on Cloned database B.
    Hope u understand
    Thanks,
    Neerav

    hi all,Hi Neerav
    I have very basic clone database question
    If i create database A and clone database B using A...
    I want to know that any operation done on A will be automatically done on Cloned database B.Oops....Now you're asking about rocket science. Sorry, I don't know.
    I know about some basics:
    Streams or Replication--> Which can give you data on B in read-write mode.
    DR--> For safeguarding your database and B will work as DR solution.
    Hope u understandNo, please make us understand.
    Regards,
    S.K.

  • Basic s-video cable question

    hello,
    I'm new to using a dvd recorder and am trying to hook it up.   My tv does not have an s-video port but the dvd player and cable box do.  I have the regular audio/video cables hooking the dvd player to the tv.. those work fine.  When i use those same cables to record with the dvd player, from box to dvd player they work fine also.  I figured since it was there i would get an s-video cable and use that.  So i have basic red and white audio cables hooking the cable box to the dvd recorder and it records audio ok.. but the s-video cable i just connected the cable box to the dvd player either doesn't work or i'm missing something because there is no video going to the player.
    Basically am I missing something in getting the cable box to product video through my new s-video cable?  
    thank you
    Solved!
    Go to Solution.

    You should not have paid more than $5 for a s-video cable.  Next time, order from Monoprice.com.
    The Motorola box always outputs through s-video, so if you aren't getting a picture, then you need to check two things.  First, make sure the s-video is connected to a s-video input on the DVD recorder, not a s-video output.  Second, you may need to change a setting on the DVD recorder to use the s-video input rather than composite (yellow RCA) input.
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it.

  • Basics -  video question

    Hi All,
    quick question.. all i need to do is import a ten second video, autoplay it, and loop it.
    How do i? I can imort it easy.. but autoplay and loop is proving a bit more difficult.

    You can import the FLV video onto stage and timeline using File -> Import -> Import Video option. Popup dialog will open. Select second radio button 'Embed FLV in swf and play in timeline'. Browse for the video file and click Next.  Select 'Place instance on Stage' and click Next. Click Finish to import your video on stage. Click 'Ctrl+Enter' to test your video. It should auto play and loop indefinitely.
    Hope this answers your question.
    Thanks,
    Karthikeyan R.

  • Mac pro video questions

    I'm thinking about getting one or more of the mac pro videos to supplement the logic manual in my attempt to get a better grasp of the program and its capabilities and am looking for some advice. Although I'm partially temped to just buy the whole bundle, adding $200 to the amount I'm spending on music gear in the next couple months (I'll be buying monitors and a firewire interface) is probably not a good idea, and there are some videos that I don't expect I'd use at all (at least not any time soon). Addionally, I am aware that a great deal can be learned through experimentation, but that a good course or reference guide will provide a much faster learning process for me, and teach me things I won't figure out on my own.
    Basically, I'm trying to decide whether to simply get the 101 video or the producer's bundle. Here's a basic overview of what I've used Logic for so far, and what I expect to do in the near future:
    -primarliy small projects--only a few minutes in length, no more than 12 tracks
    -exclusively Logic's plugin instruments and effects thus far, but intend to start using some live audio as well (though VIs will still make up the majority of the music)
    -I've started to work on a couple short student film projects, and plan to do more in the future--for right now, I'm content with scoring for smaller instrumentation while still developing compositional skills.
    My big question is about use of the environment and whether or not I should get the corresponding video. I know that this is an extremely useful tool, and yet with what I've been doing so far, I haven't needed to deal with it. Perhaps I'm missing things that I could be doing using it for, but so far I've found that everything I've needed can be found in the audio mixer. I'm sure that somewhere down the road I'll want to be familiar with the environment's functions, but I'm not certain that I need it now with my current setup. If someone could clarify some of the environments uses that would be beneficial to my current needs, that would be super. This may determine whether or not I go for the producer's bundle.
    I know the obvious answer is most likely "the bundles are worth the added expense," and would certainly agree, but I'm going into poor/in debt student mode soon, so I need to be careful. Thanks.

    I guess the main issue here is whether I should get them all now or get them gradually. Obviously, the general feeling here is that I should just go for it, and given the money I'd save all around by getting the main bundle, it makes sense. However, I feel that, for the projects I've been working on until now and will have in the near future, there are videos I could do without. And given my financial situation (aka I work at a video store and will soon have massive student debt), it might be best to wait on those.
    So I'm wondering how essential certain elements are to general versatility in using Logic, so I can decide whether or not I need them right away. For example, I'm planning on using the native instruments bundle for samples, so I'm not sure that I really need the EXS tutorial. And I've just realized that I do actually use the environment all the time, I just forgot that the audio mixer is technically part of it--so that tutorial would probably be very useful.
    Hypothetically, if I were to choose 1 or 2 tutorials (in addition to 101) to buy, and given the general overview of how I've been using Logic, which ones should they be?

  • Basic ipod-nano questions - help !

    Hi
    i dont know what fifith generation ipod refers to....BUT
    i want to get one of the new 8bg ipod nanos.
    3 basic questions:
    1. I'm really confused about the current relationship between ipods & encripted/ copy protected mp3's. I don't buy from itunes (yet) - i just want to use my current mp3 collection for now.
    Can i just drag & drop these onto the ipod without any hassle ???
    2. How many songs/mp3s does 8gb actually hold in terms of time/numbers ?
    3. I'm on a three year old emac with OS X 3.9 - Is this an issue or can i just expect to connect up & get on with it. ( I'm fire-wire & only USB 1. on this machine.)
    thanks someone....
    d

    A Fifth Generation iPod refers to the 30GB, 60GB or 80GB iPod with video.
    1. If your current MP3s were not purchased from some other online store and are not copy protected they'll work with your iPod
    2. Around 2000 depending on song length and file format. The advertised song capacity of iPod is based on 4 minute songs encoded in AAC (MP4)format at a bit rate of 128 kbps. Longer songs and songs encoded at a higher bitrate or in uncompressed formats take up more space. You'll get a similar number if you MP3 are that bit rate or lower, the figures are pretty approximate.
    3. You won't be able to use Firewire to update, only to charge. USB 1.1 will be signigicantly slower that USB 2 but if you can live with that should work ok.

  • Separate Audio/Video Question

    I'm in the midst of transitioning from iMovie/iDVD to Final Cut Studio. In the last chapter of FCP6: Beyond the Basics, I sent a sequence to Compressor and generated an Audio file and a Video file. The book didn't really say anything about what happens next. I tried it with my first FCP video, (which I had previously simply exported as a QT file and dropped into iDVD, and as I write this I can see that it processing a Dolby Digital file and an MPEG-2. Admittedly, I haven't cracked the book on DVD Studio Pro yet, in fact, I haven't really opened the app except to glance at the interface, and my question will probably be answered there, but what's going to happen next. When I open up DVD Studio Pro, will I be selecting both of these files for the project and then they'll just automatically sync?

    Hi, and welcome to the Palm Community Forums.
    Let's keep this thread focused on the dialing issue, and I suggest you take up the picture/messaging issue in a separate thread in the Audio, Video and Photos board.
    First question is whether the phone has behaved this way from day one, or if it just started after working correctly for a few weeks. You could try soft-resetting the phone...remove the battery and wait a minute, then reinsert, start it up and try again. If that doesn't work, a Hard Reset might be in order, which wipes everything clean and lets you start over. This can correct issues relating to corrupt data or conflicting third-party applications which may have found their way onto the Centro. This article discusses the various types of Reset for different Palm devices.
    After the Hard Reset, do not synchronize the phone with your desktop. See if the phone works normally.
    Another issue might be a bad SIM card, but I don't know enough about that...the folks at the AT&T store should be able to verify whether the card is good or not.
    If all else fails, return it to your AT&T store for a replacement. AT&T has a 30-day return policy for any reason.
    Good luck, please let us know how it turns out.
    Post relates to: Centro (AT&T)
    Message Edited by smkranz on 08-15-2008 09:49 AM
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • Adobe Premiere Basics Creating Video Publishing and Adding advertisments within the video.

    Hi I am new to Adobe Premiere and have some basic questions I have a video that I would like to mix sound into and also add a flash advertisment in but am having problems previewing the movie in perfect quality.  For example, when I drag my imported video in, the movie gets much smaller when I preview it.  Even after I get some of the sequences finished and I export it, the video looks small.
    I think this is something in the publishing or importing features that I don't know of, basically how do I work on my video and create parts to it while keeping the quality of the video 100%
    My second question is, I have created a simple fade in fade out advertisment that I would like to go in the bottom right part of the video, how do i position it exactly there?
    thanks pros!

    1 - See 2nd post for picture of NEW ITEM process http://forums.adobe.com/thread/872666?tstart=0
    2 - Read about PIP = Picture in Picture
    CS5 User Guides - online and PDF (see link in upper right corner at individual pages)
    http://blogs.adobe.com/premiereprotraining/2010/08/help-documents-for-creative-suite-5-pdf -and-html.html

  • Basic music synching question

    When selecting the "sync only checked songs and videos," the warning command turns on warning that "all existing content on this iphone will be replaced with content from your libary."
    Will only the music get replaced or will all of the information, including contacts & all other information get replaced too?
    Thank you for your help with this basic question.
    Best Regards, progressivejay

    It just refers to content in your iTunes library. Contacts, calendars, SMS, etc are NOT part of your iTunes library & will be unaffected. Is this the first time syncing to this computer? If so, you do not want to sync to an empty address book or calendar. Make sure you have an entry in each one. This will generate a merge or replace prompt when you do sync, you want to select merge.

  • Basic RAM upgrade question

    Hi,
    I've read a lot of threads on ram upgrades, but still have a very basic question. I want to buy the $599 Mac Mini, which comes with 1G RAM. Clearly, the Mac RAM is overpriced, but I've been told by a friend to upgrade to at least 2G for $50 extra. I realize Crucial and others sell it cheaper, but I don't know about my ability to put it in.
    Is it worth another $100 to go from 2G to 4G. Will I see a noticeable performance increase if I'm using iMovie, Photoshop or Final Cut Express? Or surfing? Are we talking about a few extra seconds when rendering video but no other noticeable effects? I plan to keep this machine for our family machine now that my child is using iWeb.
    I'm sorry if this has been answered, but I'm on a very tight budget and worried about my job in this economy. Thanks for your help.

    If you are on a tight budget and have any concern about on-going warranty support for a new mini, then it is a better proposition to buy the $50 upgrade to 2Gb from Apple than to do the RAM upgrade yourself and go to 4Gb for little more. It's not that the upgrade is particularly difficult because it isn't, but if you are not reasonably confident in your skills and something goes wrong, Apple could declare the warranty void due to the work you've done on the inside of the system.
    There is a notable performance gain to be had from 4Gb as opposed to 2Gb, but much of the difference is less than obvious, particularly if you are careful about what apps you have running at any time. Running Photoshop, for example, would cause the system to slow down if you then launch another major app such as iMovie, but running it alone in 2Gb RAM would give you respectable performance. Final Cut Express isn't particularly demanding on the system so should run well, as would the vast majority of Intel-native applications. It's only if you are running any non-native processes (applications, drivers etc) that 2Gb would prove notably limiting.
    If it were me, I'd probably opt for the base model, buy 4Gb RAM from Crucial and do the upgrade myself. Next choice would be the base model, buy the RAM from Crucial and have a local Apple Approved Service Provider do the work for me - some AASPs charge a reasonable fee for this. Third choice would be to buy the base model with Apple-supplied 2Gb RAM and then at a later time replace that with 4Gb from Crucial as and when funds and circumstances reasonably permit it.

Maybe you are looking for

  • How can i add my macbook pro to my icloud

    I have a macbook pro and I have iCloud on it but it isn't blending with my other devices that I have bought more storage with. If I look on find my phone it isn't listed on there. Also I am out of iCloud storage on the macbook when I should have plen

  • Succesful commands for Provisioning Tool(CS6/PC)

    Hi, Have any of you guys had any luck using the Provisioning Tool to unserialize a CS6-installation? If so - what was the command line you used? We've tested various commands but none of them have been succesful. Some gives the return code 1 and a si

  • Icons are tiny.......

    I have just downloaded Photoshop CS6 Extended. The icons and text on the screen are absolutely tiny. Does anyone know how to make these bigger. By the way I have a high resolution screen. Please help....

  • I need  to implement clone method  in theAdvancedDataGrid class

    I need  to implement clone method  in theAdvancedDataGrid class, to copy the object in its completeness   Could anyone give me a helping hand.

  • Sharepoint access denied- Domain name expired

    Hi All, I am one of the user of sharepoint. Access and domain name was created by administrator for me earlier. Now when I am trying to log in it says domain name expired. In such cases, if any document is uploaded and shared through sharepoint then