How to create one-to-one video chat?

Hi,
I want to create one-to-one video chat facility for a demo
project of mine, but being total noob, I cannot find any pointers.
Can anybody help?
Thanks
Vijay G.

try this one!!! I use it... its good!!!
http://www.flash-db.com/Tutorials/privchat/
or
http://www.flash-db.com/Tutorials/privchat/PrivChat.php?
See ya!

Similar Messages

  • How To Create A Website Background Video In Adobe Edge ?

    Hello,
    I have video file in my computer SSD drive and i want it to play as background on my web page (page that i am creating).I did try to follow this video:
    How To Create A Website Background Video In Adobe Edge Animate Using Edgehero - YouTube
    but i cant follow 100% what he is doing.
    Guide that i did try to follow is at this link: How To Create A Website Background Video In Adobe Edge Animate Using Edgehero - YouTube
    Steps i do in Adobe Edge Animate CC
    1.) Create New
    2.) i click + sign under section Library >> Scripts >> Add JS File from URL...
    URL that i am adding is: http://www.edgehero.com/edgehero.js/1.2/edgehero_1.2_min.js  (URL is taken from site: Edgehero.js )
    I add this link: http://www.edgehero.com/edgehero.js/1.2/edgehero_1.2_min.js to box that occures after i click on Add JS File from URL
    3.) I go to Edgehero.js and from there i scrol down to section named as Media - Html5 video / Html5 audio
    and i select from there this:
    there is a code:
      // this will set the video as background of the div/rectangle
    backgroundvideo_1 ='movie.mp4';
      // put new edgehero.js variables here
    4.) I go to Adobe Edge Animate CC 2014 and right click on project and select Open Actions for "Stage"
    and then i click on + sign and select creationComplete
    This will open Stage window
    there i will copy this code:
      // this will set the video as background of the div/rectangle
    backgroundvideo_1 ='movie.mp4';
      // put new edgehero.js variables here
    5.) Then i click on ++ sign under library >> Video
    and i add video from my computer SSD drive.
    Video is named as video3.mp4
    Now i eddit the code in Stage window (See above)
    code will look after editing like this:
    Then i change under left side px to %
    6.) Then i copy backgroundvideo_1 from Stage Code:
    Then i select Rectangle Tool and mark the area  (white box) and i click on small C icon
    And the box that occures i type there backgroundvideo_1_mp4 autoplay
    now when i use ctrl and enter i only get gray box that does not play video.
    What am i doing wrong?

    Here is the html file.
    Note video file that i try to add is random training video from youtube, And file format is saved using this site:
    How do I download and save a YouTube video to my computer?
    this is only for testing as i am not gonna put that video on background to my web page. I am only trying to understand how to add video as background.
    http://www.filedropper.com/test3_5
    http://www.filedropper.com/test3_6
    http://www.filedropper.com/test3edge
    http://www.filedropper.com/test3edgeactions
    http://www.filedropper.com/test3edgepreload
    Goal is to create background video like u can see here:
    Adobe Muse Tutorial - Responsive Design Hack! by MuseThemes.com - YouTube
    Similar possibility is available also in Edge as i understand?

  • How to create a Online Media (Video/Audio) Player using Flash

    How to create a video player, or an MP3 player using Flash? I want the player to play videos/songs which are hosted on the web (online player). A very common example is the Video Player used in Youtube to play the videos. How to create such a Online Video/MP3 player?

    You could start from the open source Strobe Media Playback and modify it to suit your needs.
    http://sourceforge.net/adobe/smp/home/Strobe%20Media%20Playback/

  • I have an IMAC and an IPAD. How do I do face time/video chat betweeen the two.

    I have an IMAC and an IPAD. How do I do face time/video chat betweeen the two?

    You need to have the facetime app installed on your iMac and you need to be using an iPad 2. 

  • Need Help, how to create more than one rectangle from one button in one stage of canvas

    Dear Guys,
    I has problem to create more than one rectangle canvas from one button. here my role to create :
    1. I create input size with textfield
    2. I click button called "submit query"
    3. My web will create a rectangle with specific size.
    My problem come when I click again the button, my old rectangle has been remove than my new rectangle has created.
    My question is : how I can create more than one without delete/remove the old I was created?
    Here my Code :
    <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><link rel="stylesheet" type="text/css" media="all" href="css/style.css"><script src="kinetic-v4.7.2.min.js"></script></head> <body><label>Length</label><input name="panjang" id="panjang" type="text" size="5" maxlength="5"><br> <label>Width</label><input name="lebar" id="lebar" type="text" size="5" maxlength="5"><br>  <label>Height</label><input name="tinggi" id="tinggi" type="text" size="5" maxlength="5"><br> <label>Packing Name</label><input name="nam_pac" id="nam_pac" type="text" size="5" maxlength="5"><br> <input name="submit" type="submit"> <script defer>              var stage = new Kinetic.Stage({                container: 'container',                width: 943.5,                height: 254.10              });              var layer = new Kinetic.Layer();              var rectX = stage.getWidth() / 2 - 50;              var rectY = stage.getHeight() / 2 - 50;                            var group = new Kinetic.Group({                draggable: true              });                                         var box = new Kinetic.Rect({                x: rectX,                y: rectY,                width: <?php echo ($_POST['panjang']/10)/1.3; ?>,                height: <?php echo $_POST['lebar']/10; ?>,                //fill: '#00D2FF',                stroke: 'blue',                strokeWidth: 2                //draggable: true              });               var simpleText = new Kinetic.Text({                x: Math.round(box.getWidth() / 2),                y: Math.round(box.getHeight() / 2),                text: '<?php echo $_POST['tinggi'].'/'.$_POST['nam_pac']; ?>',                fontSize: 30,                fontFamily: 'Calibri',                fill: 'blue',              });                                          // add cursor styling              box.on('mouseover', function() {                document.body.style.cursor = 'pointer';              });              box.on('mouseout', function() {                document.body.style.cursor = 'default';              });                            group.add(box);              group.add(simpleText);              layer.add(group);              stage.add(layer);            </script></body> 
    this is my printscreen may help you to help me :
    thanks before to help me
    Regards,
    Prabowo.

    It's work Ken, but if I modify your code into my code.
    error again. they say like before (...is undefined)
    May You want to check my code
    <?php
    include('pinambung.php');
    ?>
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="utf-8">
    <title>GI Loading Plan Maker</title>
    <meta name="viewport" content="width=device-width" />
    <link rel="stylesheet" type="text/css" media="all" href="css/style_2.css">
    <script src="js/kinetic-v4.7.2.min.js"></script>
    <script src="js/CalendarPopup.js"></script>
    <script src="js/jquery-1.10.2.js"></script>
    </head>
    <body>
      <header class="w" id="header"> <!--Header Area -->
          <img src="images/headers.jpg" width="100%" height="100%" />
      </header><!--End of Header Area -->
      <nav class="w" id="nav"><!--nav Area -->
          <?php include('top.php'); ?>
      </nav><!--End of nav Area -->
      <section class="w" id="main"><!--section Area -->
          <section id="content">
          <article>
            <h2>Customer Info</h2>
            <form id="myForm" action="insert.php" method="post">
            <label>Customer Name :</label><input name="cs_name" id="cs_name" type="text" size="25" maxlength="50">
            <br>
            <label>Date of Shipment :</label><input name="shipment_date" id="shipment_date" type="text" size="10" maxlength="12" > use format : YYYY-MM-DD
            <br />
            <label>Container Name :</label><input name="con_num" id="con_num" type="text" size="10" maxlength="12">
            <label>Revision :</label><input name="revision" id="revision" type="text" size="5" maxlength="5"><br />
            <label>Prepared by :</label><input name="prepared_by" id="prepared_by" type="text" size="25" maxlength="50">
            <button id="saveinfo">Save As DB</button>
            <button id="saveall">Save As Image</button>
            <button id="print" onclick="window.print();return false">Print</button>
            </form>
            <span id="result"></span>
            <script type="text/javascript" src="js/insert.js"></script>
          </article>
              <br /><br />
          <article>
              <h2>Packing Info</h2>
            <label>Container Type :</label>
            40' HC<input name="con_type" type="radio" id="con_type" value="40hc">
            40'<input name="con_type" type="radio" id="con_type" value="40">
            20<input name="con_type" type="radio" id="con_type" value="20"><br />
            <input name="loadstan" type="button" value="Create Container" id="isSelect">
            <button id="removecon">Remove Container</button>
            <br />
            <label>Length</label><input name="panjang" id="panjang" type="text" size="5" maxlength="5">
            <label>Width</label><input name="lebar" id="lebar" type="text" size="5" maxlength="5">
            <label>Height</label><input name="tinggi" id="tinggi" type="text" size="5" maxlength="5">
            <label>Packing Name</label><input name="nam_pac" id="nam_pac" type="text" size="20" maxlength="55">
            <input name="loadstan" id="loadstan" type="button" value="Load Standard Packing" onclick="window.open('spk.php', 'winpopup', 'toolbar=no,statusbar=no,menubar=no,resizable=yes,scrollbars=yes,width=300,height=400');">
            <input name="submit" type="submit" value="Create Box">
            <button id="remove">Remove Box</button><br />
          </article>
        </section>
        <aside id="sidebar">
          <label for="layer-to-delate">Select a layer to delete or rotate</label><br />
          <select id="layer-to-delete" size="14"></select><br />
          <input id="delete-layer-button" type="button" value="Delete layer">
          <input id="rotate-layer-button" type="button" value="Rotate box">
        </aside>
        <section id="content2">
          <div id="container">
          </div>
          <script defer>
          function radians (degrees) {return degrees * (Math.PI/180)}
          function degrees (radians) {return radians * (180/Math.PI)}
          function angle (cx, cy, px, py) {var x = cx - px; var y = cy - py; return Math.atan2 (-y, -x)}
          function distance (p1x, p1y, p2x, p2y) {return Math.sqrt (Math.pow ((p2x - p1x), 2) + Math.pow ((p2y - p1y), 2))}
            var stage = new Kinetic.Stage({
                container: 'container',
                width: 943.5,
                height: 254.10
            var layers = new Array();
           function addCont(){
               layer2 = new Kinetic.Layer();
                switch ($('input:radio[name=con_type]:checked').val()){
                  case '40hc':
                     var box_con = new Kinetic.Rect({
                          x: 10,
                          y: 10,
                          width: 1190/1.3,
                          height: 2300/10,
                          stroke: 'black',
                          strokeWidth: 2
                      var TextCon = new Kinetic.Text({
                          x: 10,
                          y: 240,
                          text: 'Container Size 40 HC (11900mm X 2300mm X 2550mm)',
                          fontSize: 12,
                          fontFamily: 'Calibri',
                          fill: 'green',
                      layer2.add(box_con);
                      layer2.add(TextCon);
                      stage.add(layer2);
                      break;
                     case '40':
                     var box_con = new Kinetic.Rect({
                          x: 10,
                          y: 10,
                          width: 1190/1.3,
                          height: 2300/10,
                          stroke: 'black',
                          strokeWidth: 2
                      var TextCon = new Kinetic.Text({
                          x: 10,
                          y: 240,
                          text: 'Container Size 40 (11900mm X 2300mm X 2250mm)',
                          fontSize: 12,
                          fontFamily: 'Calibri',
                          fill: 'green',
                      layer2.add(box_con);
                      layer2.add(TextCon);
                      stage.add(layer2);
                      break;
                     case '20':
                     var box_con = new Kinetic.Rect({
                          x: 10,
                          y: 10,
                          width: 580/1.3,
                          height: 2300/10,
                          stroke: 'black',
                          strokeWidth: 2
                      var TextCon = new Kinetic.Text({
                          x: 10,
                          y: 240,
                          text: 'Container Size 20 (5800mm X 2300mm X 2250 mm)',
                          fontSize: 12,
                          fontFamily: 'Calibri',
                          fill: 'green',
                      layer2.add(box_con);
                      layer2.add(TextCon);
                      stage.add(layer2);
                      break;
            function addRect() {
                layer = new Kinetic.Layer();
                var box = new Kinetic.Rect({
                    x: 10,
                    y: 10,
                    width: +(($("#panjang").val()/10)/1.3),
                    height: +($("#lebar").val()/10),
                    stroke: 'blue',
                    strokeWidth: 2
                var group = new Kinetic.Group({
                            draggable: true,
                            snap : true
                var boxLabel = $("#nam_pac").val() + "/H : " + $("#tinggi").val();            
                if (($("#panjang").val() && $("#lebar").val()) != 0) {         
                var simpleText = new Kinetic.Text({
                    x: 10,
                    y: 10,
                    text: boxLabel,
                    fontSize: 12,
                    fontFamily: 'Calibri',
                    fill: 'red',
                } else {
                    var simpleText = new Kinetic.Text({
                    x: 10,
                    y: 10,
                    text: '',
                    fontSize: 12,
                    fontFamily: 'Calibri',
                    fill: 'red',
                group.add(box);
                group.add(simpleText);
                layer.add(group);
                stage.add(layer);
                layers.push(layer);
                $("#layer-to-delete").append("<option>Layer " + boxLabel + "</option>");
            function deleteRect() {
                if($("#layer-to-delete > option").length < 1) return;
                var i = $("#layer-to-delete").prop("selectedIndex");
                layers.splice(i,1)[0].destroy();
                $("#layer-to-delete > option").eq(i).remove();
            function rotateRect() {
                if($("#layer-to-delete > option").length < 1) return;
                var i = $("#layer-to-delete").prop("selectedIndex");
                layers[i].rotateDeg(30);
                layers[i].draw();
            $("#delete-layer-button").click(function(e) {
                  deleteRect();
            $("#rotate-layer-button").click(function(e) {
                rotateRect();
            $("input[type=submit]").click(function(e) {
                addRect();
            $("#isSelect").click(function () {
                  addCont();
            $("#removecon").click(function () {
                  layer2.destroy();
            $(window).keypress(function(e) {
                if(!$(document.activeElement).is("label")) {
                    if((e.keyCode || e.which) == 46) {
                        layer.destroy();
                if((e.keyCode || e.which) == 35) {
                        layer2.destroy();
            document.getElementById('saveall').addEventListener('click', function() {
              stage.toDataURL({
                callback: function(dataUrl) {
                      window.open(dataUrl);
            }, false);
          </script>
        </section>
      </section><!--End of section Area -->
      <footer class="w" id="footer"><!--footer Area -->
        Copyright <a href="login.php" target="_new">©</a> 2013, <a href="http://omhanggar.com" target="_new">created</a><a href="http://intranet.guentner-asia.com" target="_new"> by PT. Güntner Indonesia </a>
      </footer><!--End of footer Area -->
    </body>
    </html>
    thanks again before,
    Prabowo

  • How to CREATE SEQUENCE in one table

    dear all
    the one thing i want to know when i use CREATE SEQUENCE in one table like this and then at that table
    CREATE SEQUENCE oproduct_sequence
    START WITH 1  INCREMENT BY 1 
    nocache
    create table oproduct(
    tname varchar2(20) not null,
    tid int default  oproduct_sequence.nextval
    the system indicat that i cannot use this way to create table , so i really want to know how can i achieve this method
    becuase when i want to insert inot table oproduct only use
    insert into oproduct  valuse('aaaa');
    and the result like
    aaaaa 1
    bbbb   2

    Actual name is before insert trigger. Some examples are listed below:
    Example Number 1 ...
    create sequence product_seq start with 1 increment 1
    create or replace trigger product_insert before insert for each row begin
    select productseq.nextval
    into :new.product_id
    from dual;
    end;
    Example Number 2 ...
    How to create an autoincrement field in a table with a sequence ...
    SQLWKS> create table bob(a number , b varchar2(21));
    Statement processed.
    First create a sequence
    SQLWKS> create sequence x ;
    Statement processed.
    Then create the trigger.
    create trigger y before insert on bob
    for each row
    when (new.a is null)
    begin
    select x.nextval into :new.a from dual;
    end;
    Example Number 3 ...
    First create a sequence:
    create sequence emp_no_seq;By default it increments by 1 starting at 0.
    Use its values when inserting data into the table:
    insert into t_emp values (emp_no_seq.nexval, 'Joe Black');~ Madrid.

  • Cannot invite more than one person to video chat, why?

    I just got Leopard installed into my Macbook. When I video chat, i have all the new options including the effects, except the ability to invite more than one person into the video chat. When i press the "+" button the only option i get is "share a file with ichat theater"
    i can video chat with more than one person as long as i am invited, but i cant be the one to invite an additional person.
    Why can't i invite more than one person to a video chat?

    Hi
    First have you set the Quicktime streaming setting, goto sys prefs/quicktime/streaming/streaming speed, set to 1.5mbps
    In ichats prefs click on video and change bandwidth limit to 500.
    Restart iChat.
    Also do a speed test and tell us the up and download speeds http://www.speedtest.net/
    Tony

  • How to create more than one SID in .bash_profile

    I Want to create more than one SID in bash_profile without disturbing oracle's default SID i.e orcl and create database with new SID?

    you can create SID.env file or try to use . oraenv
    eg:-
    $ cat uat1.env
    export ORACLE_BASE=/u01/db/db10g
    export ORACLE_HOME=$ORACLE_BASE/10.2.0
    export PATH=$ORACLE_HOME/bin:$PATH
    export ORACLE_SID=UAT1
    export TNS_ADMIN=$ORACLE_HOME/network/admin
    $ . uat1.env
    $ echo $ORACLE_HOME
    /u01/db/db10g/10.2.0
    $ echo $ORACLE_SID
    UAT1else
    $ . oraenv
    ORACLE_SID = [UAT1] ? UAT1

  • How to create table from one to another schema?

    Hi,
    There is two schema A and B. schema A want to create table on Schema. which privilege we need to provide? how to create?
    thanks in advance
    Thanks,

    user2017273 wrote:
    Hi,
    There is two schema A and B. schema A want to create table on Schema. which privilege we need to provide? how to create?
    thanks in advance
    Thanks,When you give CREATE ANY TABLE TO A then user A will create table on any schema.But you can create stored PROCEDURE on schema B for creating table and give GRANT EXECUTE <PROC NAME> to A.

  • Two Macs, Same network - one cannot make video chat connections

    My iMac and my MacBook are on the same network. The iMac has no problems making video chat connections, the MacBook cannot make them at all.
    I've used two different accounts on both machines - both work on the iMac - neither works on the MacBook.
    I've deleted all the iChat preference files, I've adjusted the bandwidth and streaming preferences in iChat and Quicktime.
    I've swapped IP addresses on the two computers, I've tried both fixed IP addresses and DHCP addresses.
    Since the iMac is working, it's obviously not a firewall or router issue - I'm not doing any port forwarding to the iMac.
    I can make a video connection between the two machines using Bonjour, but not over the internet.
    Here's the output of the error message:
    Date/Time: 2008-05-02 17:32:01.865 +0100
    OS Version: 10.5.2 (Build 9C7010)
    Report Version: 4
    iChat Connection Log:
    2008-05-02 17:31:43 +0100: AVChat started with ID 2376434226.
    2008-05-02 17:31:43 +0100: [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    2008-05-02 17:31:43 +0100: 0x194760f0: State change from AVChatNoState to AVChatStateInvited.
    2008-05-02 17:31:52 +0100: 0x194760f0: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-05-02 17:31:52 +0100: [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-05-02 17:31:59 +0100: 0x194760f0: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-05-02 17:31:59 +0100: 0x194760f0: Error -7 (0x194760f0 cancelled the connection.)
    2008-05-02 17:31:59 +0100: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-05-02 17:31:59 +0100: [email protected]: Error -7 (0x194760f0 cancelled the connection.)
    Video Conference Error Report:
    15.188508 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    346.562264 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    13.188038 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK29c338c60e739b8c
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1970360005
    Call-ID: 829057ee-1864-11dd-b8ee-e4ef14d54012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 740
    v=0
    o=jmaxlaptop 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3328207175
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1028331073
    13.688636 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK29c338c60e739b8c
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1970360005
    Call-ID: 829057ee-1864-11dd-b8ee-e4ef14d54012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 740
    v=0
    o=jmaxlaptop 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3328207175
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1028331073
    14.689115 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK29c338c60e739b8c
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1970360005
    Call-ID: 829057ee-1864-11dd-b8ee-e4ef14d54012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 740
    v=0
    o=jmaxlaptop 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3328207175
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1028331073
    344.562403 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK2a562a443d252e31
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1111821221
    Call-ID: 4814098e-1865-11dd-b8ee-b8f6d6f94012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 740
    v=0
    o=jmaxlaptop 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3963184427
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2907408967
    345.063046 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK2a562a443d252e31
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1111821221
    Call-ID: 4814098e-1865-11dd-b8ee-b8f6d6f94012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 740
    v=0
    o=jmaxlaptop 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3963184427
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2907408967
    346.065041 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK2a562a443d252e31
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1111821221
    Call-ID: 4814098e-1865-11dd-b8ee-b8f6d6f94012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 740
    v=0
    o=jmaxlaptop 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3963184427
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2907408967
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000021 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000039 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000056 @:0 type=5 (00000000/16402)
    [Local SIP port]
    6.103377 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 320 bytes of local IP and port data (8 entries). Remote data was 0 bytes (0 entries).
    8.120302 @Video Conference/VideoConferenceMultiController.m:1507 type=5 (00000000/0)
    [Initiate Conference To User Cert Version: u0 with 120 bytes of connection data.
    336.438935 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 320 bytes of local IP and port data (8 entries). Remote data was 0 bytes (0 entries).
    339.500492 @Video Conference/VideoConferenceMultiController.m:1507 type=5 (00000000/0)
    [Initiate Conference To User Cert Version: u0 with 120 bytes of connection data.
    Binary Images Description for "iChat":
    0x1000 - 0x239fff com.apple.iChat 4.0.2 (604) /Applications/iChat.app/Contents/MacOS/iChat
    0x2ae000 - 0x31cfff com.apple.Bluetooth 2.1 (2.1f14) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x368000 - 0x4b9fff com.apple.viceroy.framework 363.1 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x527000 - 0x566fff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x588000 - 0x5a1fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5bb000 - 0x5f4fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x604000 - 0x618fff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x628000 - 0x646fff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x64e000 - 0x6c0fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x6fe000 - 0x72ffff com.apple.iChatCommonGUI 4.0.2 (604) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x758000 - 0x75bfff com.apple.BezelServicesFW 1.4.624 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x769000 - 0x769fff org.xlife.InquisitorLoader 3.0 (53) /Library/InputManagers/Inquisitor/Inquisitor.bundle/Contents/MacOS/Inquisitor
    0x76e000 - 0x76ffff com.ecamm.pluginloader Ecamm Plugin Loader v1.0.5 (1.0.5) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x785000 - 0x787fff com.apple.iChat.Styles.Text 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x7c6000 - 0x7cbfff com.apple.iChat.Styles.Balloons 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x7e3000 - 0x7e6fff com.apple.iChat.Styles.Boxes 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x7ed000 - 0x7f3fff com.apple.iChat.Styles.Compact 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x900000 - 0x925fff com.ecamm.iglasses v2.0.1 (2.0.1) /Library/InputManagers/Ecamm/Plugins/iGlasses.plugin/Contents/MacOS/iGlasses
    0xfd8000 - 0xfddfff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x15b5d000 - 0x15c67fff com.apple.RawCamera.bundle 2.0.4 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x15cbc000 - 0x15cc5fff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x16458000 - 0x16485fff com.apple.QuickTimeIIDCDigitizer 7.4.5 (67) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x16522000 - 0x16525fff com.apple.LiveType.component 2.1.3 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x1652a000 - 0x1658ffff com.apple.LiveType.framework 2.1.3 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x165af000 - 0x1661cfff com.DivXInc.DivXDecoder 6.6.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1662b000 - 0x1681dfff com.elgato.mpegsupport EyeTV MPEG Support 1.0.7 (build 43) (1.0.7) /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x16946000 - 0x16981fff com.apple.QuickTimeFireWireDV.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1698c000 - 0x169d6fff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x169fd000 - 0x16a00fff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x16a06000 - 0x16a0bfff com.apple.audio.AppleHDAHALPlugIn 1.5.6 (1.5.6a19) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x16a10000 - 0x16b92fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x16bc0000 - 0x16c19fff com.apple.driver.AppleIntelGMA950GLDriver 1.5.24 (5.2.4) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x16c21000 - 0x16c3dfff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x17d02000 - 0x17d10fff com.grame.JackRouter JackRouter (0.8.3) /Library/Audio/Plug-Ins/HAL/JackRouter.plugin/Contents/MacOS/JackRouter
    0x17d65000 - 0x17d6dfff com.grame.Jack Jack (0.101.3) /Library/Frameworks/Jack.framework/Versions/A/Jack
    0x17fb7000 - 0x18147fff com.apple.audio.codecs.Components 1.6.2 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x187f8000 - 0x187f9fff com.ecamm.iGlassesVDIG iGlasses v2.0.1 (2.0.1) /Library/Components/iGlasses.component/Contents/MacOS/iGlasses
    0x18aac000 - 0x18ab5fff com.apple.iokit.IOUSBLib 3.0.0 /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x196ba000 - 0x196ccfff com.apple.FCP Uncompressed 422.component 1.5 /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0x196d2000 - 0x196d7fff com.apple.DesktopVideoOut 1.2.4 /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0x196dc000 - 0x196dffff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x19a6c000 - 0x19a79fff com.apple.QuartzComposer.Backdrops 1.1 /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x19c96000 - 0x19cb2fff com.apple.QuartzComposer.ExtraPatches 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x19cc4000 - 0x19ce1fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1a3e4000 - 0x1a3fefff com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1a403000 - 0x1a408fff com.apple.AppleMPEG2Codec 1.0 (211) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x1a40e000 - 0x1a44afff com.apple.AppleVAFramework 4.0.16 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x1a451000 - 0x1a46bfff com.apple.applepixletvideo 1.2.10 (1.2d10) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x1a634000 - 0x1a859fff org.perian.Perian 1.1 /Library/QuickTime/Perian.component/Contents/MacOS/Perian
    0x1a936000 - 0x1ab76fff net.telestream.wmv.import 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x1abae000 - 0x1ad70fff net.telestream.wmv.advanced 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x9000dfff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9000e000 - 0x90022fff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90023000 - 0x90343fff com.apple.QuickTime 7.4.5 (67) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x90344000 - 0x9034dfff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9034e000 - 0x9034efff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9034f000 - 0x90391fff com.apple.NavigationServices 3.5.1 (161) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90392000 - 0x90471fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90472000 - 0x90476fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90477000 - 0x90492fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90493000 - 0x904edfff com.apple.CoreText 2.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90523000 - 0x90534fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x90535000 - 0x9080efff com.apple.CoreServices.CarbonCore 785.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9080f000 - 0x90841fff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90842000 - 0x90843fff libffi.dylib /usr/lib/libffi.dylib
    0x90844000 - 0x90894fff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90afe000 - 0x90b4cfff com.apple.datadetectorscore 1.0.1 (52.13) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x90b4d000 - 0x90f5dfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90f5e000 - 0x90f60fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90f61000 - 0x90f71fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x910cb000 - 0x9110ffff com.apple.DirectoryService.PasswordServerFramework 3.0.2 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x91110000 - 0x91182fff com.apple.PDFKit 2.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x91183000 - 0x92233fff com.apple.QuickTimeComponents.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x92234000 - 0x92236fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92237000 - 0x92302fff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92303000 - 0x92334fff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x92335000 - 0x923affff com.apple.print.framework.PrintCore 5.5.2 (245.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9241d000 - 0x924dafff com.apple.WebKit 5525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x924db000 - 0x92515fff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92516000 - 0x92557fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92558000 - 0x92558fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x92563000 - 0x92576fff com.apple.IMUtils 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x92577000 - 0x9257efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x9257f000 - 0x92582fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92583000 - 0x925a0fff com.apple.QuickLookFramework 1.1 (170.2) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x925d2000 - 0x925d6fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x925d7000 - 0x92709fff com.apple.CoreFoundation 6.5.1 (476.10) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9270a000 - 0x92740fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x92741000 - 0x92879fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x9287a000 - 0x9287afff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9287b000 - 0x9296ffff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92970000 - 0x9297ffff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x92980000 - 0x92996fff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92997000 - 0x929cefff com.apple.SystemConfiguration 1.9.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x929cf000 - 0x92d8dfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92d8e000 - 0x92e40fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x92e41000 - 0x92f26fff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x92f27000 - 0x92f9efff com.apple.CFNetwork 221.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92f9f000 - 0x93041fff com.apple.QuickTimeImporters.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x93042000 - 0x936dbfff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x936dc000 - 0x93767fff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93768000 - 0x93db8fff com.apple.WebCore 5525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x93db9000 - 0x93dc5fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93dc6000 - 0x93dcdfff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x93ddb000 - 0x93de0fff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x93de1000 - 0x93dfdfff com.apple.IMFramework 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x93dfe000 - 0x93e3cfff com.apple.CoreMediaIOServicesPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x93e3d000 - 0x93e87fff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x93e88000 - 0x94102fff com.apple.Foundation 6.5.4 (677.15) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94103000 - 0x94109fff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9410a000 - 0x94118fff libz.1.dylib /usr/lib/libz.1.dylib
    0x94119000 - 0x9423dfff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9423e000 - 0x942f8fff com.apple.CoreServices.OSServices 224.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x942f9000 - 0x94309fff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x94318000 - 0x94327fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94328000 - 0x9434cfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9434d000 - 0x944acfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x944ad000 - 0x9458efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x9458f000 - 0x946d4fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x946d5000 - 0x946f3fff com.apple.DirectoryService.Framework 3.5.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x947bd000 - 0x94978fff com.apple.QuartzComposer 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x94979000 - 0x94979fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9497a000 - 0x9499efff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9499f000 - 0x9499ffff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x949a0000 - 0x949a0fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x949a1000 - 0x949c9fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x949ca000 - 0x949d5fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x949db000 - 0x94a58fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x94a59000 - 0x94b2cfff com.apple.QuickTimeH264.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x94b2d000 - 0x94b44fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x94c25000 - 0x94c3bfff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94c3c000 - 0x94c64fff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x94c65000 - 0x94cf8fff com.apple.ApplicationServices.ATS 3.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x94cf9000 - 0x954f6fff com.apple.AppKit 6.5.2 (949.26) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x954f7000 - 0x95516fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95547000 - 0x9554efff libbsm.dylib /usr/lib/libbsm.dylib
    0x9554f000 - 0x95554fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x95593000 - 0x95593fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95594000 - 0x9561bfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9561c000 - 0x95753fff com.apple.imageKit 1.0.1 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x95754000 - 0x957b9fff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x957ba000 - 0x95813fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95814000 - 0x958a7fff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x958a8000 - 0x958adfff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x958ae000 - 0x95955fff com.apple.QD 3.11.52 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95956000 - 0x95956fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x95957000 - 0x959e0fff com.apple.DesktopServices 1.4.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x959e1000 - 0x959e5fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x959e6000 - 0x95b64fff com.apple.AddressBook.framework 4.1 (687.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95b65000 - 0x95ba3fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95ba4000 - 0x95bcefff com.apple.CoreMediaPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x95bcf000 - 0x95cd0fff com.apple.PubSub 1.0.3 (65.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x95cd1000 - 0x95d5dfff com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95d5e000 - 0x95d69fff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x95d6a000 - 0x95dc6fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x95dc7000 - 0x95e00fff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95e01000 - 0x95e21fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95e22000 - 0x95e40fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95e41000 - 0x95e86fff com.apple.Metadata 10.5.2 (398.7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95e87000 - 0x95ee4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x95ee5000 - 0x9627bfff com.apple.QuartzCore 1.5.1 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x96288000 - 0x962a0fff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x962a1000 - 0x962d0fff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x962d1000 - 0x9634dfff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9634e000 - 0x96356fff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x96357000 - 0x96382fff libauto.dylib /usr/lib/libauto.dylib
    0x96383000 - 0x9668bfff com.apple.HIToolbox 1.5.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9668c000 - 0x9668cfff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9668d000 - 0x96754fff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96755000 - 0x96c28fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96c29000 - 0x96c79fff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96c7a000 - 0x96d2afff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96d31000 - 0x96d38fff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96d39000 - 0x96d66fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96d67000 - 0x96d67fff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96d68000 - 0x96de7fff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x96de8000 - 0x96deafff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x96deb000 - 0x96debfff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96dec000 - 0x96e78fff com.apple.LaunchServices 286.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96e79000 - 0x96eb8fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x96eb9000 - 0x96f08fff com.apple.QuickLookUIFramework 1.1 (170.2) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x96f09000 - 0x970d4fff com.apple.security 5.0.2 (33001) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x970d5000 - 0x971a3fff com.apple.JavaScriptCore 5525.17 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore

    Im trying to just chat with another mac user. Both macbook pros. I've tried with two of my friends, and both came up with the same error saying they cancelled the connection. I tried changing my connection to port 443 and it doesnt work. Does anyone have any suggestions? Thanks!

  • How to create the subtitle for video

    I have been working on the editing and was wondering how to make the subtitles into it?  Can some one recommend a easy software to use?  Thank you.

    Dear Umesh,
    How Bom created for co product
    By product
    Header
    xxx
    101
    mvt
    mvt
    qty
    item
    yyy
    261
    1
    zzz
    531
    0.5-
    By product
    Same way how we create co product for BOM. pl explain with simple example.
    Thanks &regards,
    Sabhapathy R

  • How to set Port Forwarding for video chat with AIM user?

    I'm trying to setup video chat between my Mac in the US (with iChat 3.1) and my friend's PC in Japan (with AIM). I need to know what ports needs to be forwarded on my friend's router, and/or on my router.
    Right now, when I attempt video chat with my friend (in Japan) at my home network, the invitation only works one way (me -> friend). And when I try to do it at work, it doesn't work at all.
    Help appreciated,

    Hi,
    I am also having a similar problem that perhaps others can help with.
    I'm using an iMac G5 with iChat here in the States, and am trying to connect to my parents' PC running AIM 5.5 on Windows XP sp2. To complicate matters, my parents have a Belkin wireless modem/router that they use to connect to the Internet.
    Currently, I can text chat with my parents, and send files to them via iChat. However, whenever I try to initiate a video chat, I get an error saying that "Phil Waymouth" (i.e. my computer) isn't responding.
    This is where we are at the moment:
    - Internal firewall on my G5 is turned off. I can port scan login.oscar.aol.com fine for both TCP and UDP.
    - XP firewall on my parent's computer is on, but has UPnP Framework (ports TCP 2869 and UDP 1900) set up as an exception.
    - I've gone through the stages on http://portforward.com to set up Port Forwarding on my parents' Belkin router. In addition, we've enable UPnP on the router and restarted it. However, if we use www.myip.dk to get the IP address of one of their computers, and attempt to port scan it, it fails.
    It feels like it's still either their router, or some ISP issue that's the problem?
    I apologise for re-hashing the same problem, but perhaps someone here will have a lightbulb moment!
    Any help is much appreciated,
    Phil
    iMac G5   Mac OS X (10.4.3)  

  • How can you set up smiple video chatting on a website

    Hey,
    I'm trying to learn how to set up video chatting for a website. I was wondering how I would even go about starting this.

    Hi,
    Thanks for your interest. I can give you few public resources to get started.
    http://www.adobe.com/content/dotcom/en/devnet/flashmediaserver/samples.html
    http://www.flashcomguru.com/apps/
    http://www.flashconnections.com/2008/02/13/fms3-sample-applications/
    http://avchat.net/
    Hope the resouces help
    Thank you !

  • How to create a playlist for videos

    Hey guys pls help me; how to create a video playlist on Mac?

    Hello TibosForZan
    You can do it 2 different ways. The first is just creating a blank playlist and then navigate to the videos, then click and drag the videos and a menu on the right hand side will appear and choose that playlist. The other method involves enabling the side bar and the creating a blank playlist, then navigating to the videos and drag and drop the videos that you want. The article below about creating playlist will apply to videos as well.
    iTunes 11: Frequently used features
    http://support.apple.com/kb/HT5649
    iTunes 11 for Mac: Create a playlist
    http://support.apple.com/kb/PH12140
    Regards,
    -Norm G.

  • How to create and share streaming video?

    Hi -
    I have finally finished a project in PE8 and I'd like to upload it to my website so that others can stream it.
    I have created output in FLV, MOV and MPG formats.
    I have uploaded them to my web server.
    However, whenever I link to the video, my browser (IE or Firefox) just asks to download or run it.
    Then, it tries to download the entire video - this is a problem as the files are up to 1.3gb.
    I've tried this:
    <html>
    <a href="myvideo.flv">CLICK HERE</a>
    </html>
    and this:
    <OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
    CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" WIDTH="160" HEIGHT="136" >
    <PARAM NAME="src" VALUE="myvideo.mov" >
    <PARAM NAME="autoplay" VALUE="true" >
    <EMBED SRC="myvideo.mov" TYPE="image/x-macpaint"
    PLUGINSPAGE="http://www.apple.com/quicktime/download" WIDTH="160" HEIGHT="136" AUTOPLAY="true"></EMBED>
    </OBJECT>
    and this:
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="400" height="400" >
    <param name="movie" value="myvideo.flv">
    <param name="quality" value="high" >
    <param name="LOOP" value="false">
    <embed src="myvideo.flv" width="400" height="400" loop="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></ embed >
    </ object >
    So, why isn't it streaming?
    Is it the video format?
    The embedding on the web page?
    My server?
    Perhaps you can share the details of how you created and setup a streaming video?
    Thanks....

    You need to embed a player for the file. This will differ by the file type that you choose. I'd probably go with a Flash player, but you have other choices.
    I'd post your request for the exact instructions, and HTML code needed, plus tips on optimization to the Muvipix "Community," probably under the "Water Cooler" sub-forum. The Webmaster there, Ron, is an expert in embedded players, as are several other subscribers. I'll bet that you'll get the exact code, with all sorts of useful tweaks, in no time. If Ron suggests another file type and player, listen to him, and not to me. I just deliver the streaming AV files in the exact format that my client asks for. They have their Webmaster use them in their particular page design. My job ends, before your's, now, begins.
    Good luck,
    Hunt

  • How to use Quicktime to record video chats (Skype, Google  Hangouts)?

    Hi, all,
    I'm making a movie that includes an interview of someone who lives out of state.  Thanks to modern technology, I can interview her without either of us having to travel farther than our computers.  But, thanks to modern technology, shouldn't there also be a way for me to record this interview for my movie?
    I've figured out how to use QuickTime Player to take a screen recording that includes the audio from the computer, but there are several problems with this.
    I downloaded Soundflower, set the Sound Output to "Soundflower (2ch)" in my System Preferences, then went to QuickTIme, where I started a screen recording and set the Microphone to "Soundflower (2ch)".  With a test run using music, I was able to capture the moving playhead and the audio.  The audio was pretty good, but not quite as good as if I were just listening to the music normally.
    However, this process won't work for an interview setting.  While I was recording, I wasn't able to hear the music on my headphones.  Only afterwards was I able to hear the music.  This means that if I were interviewing someone, Quicktime would be recording her voice but I wouldn't be able to hear what she was saying until after I replayed the video.  Also, I have no idea if the person on the other end of the video chat would be able to hear me (I did leave the sound Input to "Internal microphone" with no trouble from Quicktime).
    Is there a way to have Quicktime record the video and audio and for me to hear what's going on at the same time?
    If not, what [free] software does this?
    Thanks!
    P.S.  Does Quicktime have a limit to screen recording time?

    Great info, thanks for the post!

Maybe you are looking for

  • Updated bind 9.3.0 package

    This is an updated version of the bind-9.3.0-1 found on current repository.  It brings the following:1. Runs as named user/group instead of root. 2. Automatically generate rndc.key at installation, if none is present. 3. Automatically create user and

  • How reduce the number of dialog processes? (disp+work.exe )

    Hello, i habe a question. How can i change the number of disp+work.exe processes? Currently it run about 17 prozesses. Through the CCMS tcode rz04 i have changed the number of all processes, also everone is now 1, unless dialog. Also Dialog is -10 Ba

  • Quicktime refuses to open WMV files

    Hi, As title, really. It just refuses, whatever I try. I have 'Flip4Mac' installed, and have tried unticking the box 'open sequences with QuickTime', but ticked or unticked, no way does a WMV wanna open. The error is simply a dialogue box with 'Error

  • How to sort just videos on iPhoto?

    I'm running out of memory and need to edit/delete some of my videos on iphoto. Is there a way to sort to just find videos? Thanks!

  • Cannot email recreated dynamic distribution list NDR 5.1.1

    We had an issue where we needed to change the location of the OU in a dynamic distribution groups that had moved from Exch 2003>2010>2013.  We couldn't do it so we recreated a new distribution group with the same SMTP address.  Now users are getting