PLEASE HELP with publishing video for youtube use while on trial!

I have the 30 day trial of adobe premiere pro and i just finished a project i have been working on for a long time of me singing with multiple videos playing at once. i would like to know how i can save the video to put onto my youtube page. i need to know as soon as possible! can anyone help me?

These videos show the use of the YouTube H.264 preset that shooternz mentioned, as well as other crucial aspects of exporting:
http://www.video2brain.com/en/videos-4001.htm
http://www.video2brain.com/en/videos-3781.htm

Similar Messages

  • Can I use iMovie to create a video for youtube using an MP3  and a video?

    I have some music I've recorded on Logic Pro that I'd like to post on youtube and am trying to figure the easiest way to link it with either still photos or a video so it'd be OK for youtube. What's the best way to go about this please?

    just drag 'n drop your jpg and your mp3 into the timeline of your Project - done.
    Depending on what version of iM you're using, you can directly upload from within iMovie, or you have to export first, then use YT's upload web interface ...
    in case you own a licence of Quicktime Pro,  open a jpg with it, open in a 2nd window your mp3, select all, copy, paste to picture - done .. no 'fullsize editor' needed.

  • PLEASE Help with HTML code for email background image...

    Hi there!
    i have a background image that I want to pop into an html email widget for the email's background...  here is the web link I created in Photoshop: file:///C:/Users/Rachel/Desktop/iMuse%20Clients/LeadMachine360/Email%20Signatures/tileabl e-metal-textures-2.html
    If anyone could please help me out that would be AWESOME!  I've attached pics of the background & I'm using Infusionsoft email builder which allows for HTML widgets.  I have a code that I use for my landing pages & webforms which works, tried that but no dice!
    Any help would be much appreciated - I'm an html newbie!
    Here is the code that I use for landing pages & works great, tried it for the email & it was a fail:
    <style>
      #mainContent .background, {
          background: url('file:///C:/Users/Rachel/Desktop/iMuse%20Clients/LeadMachine360/Email%20Signatures/ti leable-metal-textures-2.html') no-repeat center center fixed;
        background-size: cover;
    </style>
    <script src="file:///C:/Users/Rachel/Desktop/iMuse%20Clients/LeadMachine360/Email%20Signatures/ti leable-metal-textures-2.html">
    </script>
    <script>
      jQuery(document).ready(
          function(){
          jQuery(' table.bodyContainer').removeAttr('bgcolor');
    </script>
    thanks in advance!
    Muse

    Not sure what you expect. Your URL is absolute and pointing to a local file resource. It's not a proper relative HTML link. Beyond that it's toatlly unclear how you actually plan to load your image and where they are hosted, so nobody can tell you anything. Either way, there is an obviously painful lack of understanding of even the most basic web techniques, so the best advise anyone would give you is to spend some time with a web search and actualyl learn some of that stuff...
    Mylenium

  • Please help with Posting Keys For Fast Entry (t.code OBXJ)

    Dear experts,
    Please help me to be more familiar with configurtation of Enjoy Transactions (t.code OBXJ). I want to configure fast entry transaction and change standard assignement of posting key. But there are no editing options in this transaction, just three transaction keys are predefined and posting keys are assigned to them (those are changable). But where to see what those transaction keys mean? And what could be your proposals, how to configure this IMG step?
    Thanks!

    Hi,
    t.code OBXJ is for automatccly postings, normal you never change the standard posting keys.
    In the block line items you can select colums you need and place the one's you need to the begin of the screen and in the right top corner of posting line items you can click an save this as (default) variant.
    When you want to use an other posting keys you use the option complex posting (F6)
    Paul

  • PLEASE help with server-side form validation using PHP!!!

    I feel like im going round and round in circles with this, after looking into all sorts of server-side advice i've come to the conclusion that i want to validate my form using server-side validation with PHP.
    So my form has several drop down menu's and  textareas  (not all of them need validation). For the part of my form i would like to validate, all i want is the drop downs to have to be changed/selected. So just a simple message like "You must select an option" if customers haven't done so. For the textareas, they just need to be filled out, so a message like "Information required" to come up if customers haven't done so.
    I believe i need to create a PHP page say for example 'error.php' place  the validation code in there and set this part of the the form to -
    <form name="product"form action="error.php" method="post" class="product_form">
    BUT im getting really confused with creating the code for the error.php. Please please can anyone help me with this!!!???
    Here are the drop down menu's i need validation on, error message being "You must select an option",
    "figurine"
    "engraving"
    "font"
    and here are the textareas that need validating, error message "Information required",
    "test"
    "Name"
    "house"
    "line_1"
    "line_2"
    "county"
    "postcode"
    "tel"
    www.milesmemorials.com/product-GK1.html
    I'd really appreciate any help!!!

    Ness_quick wrote:
    Great thats good enough for me. In that case, would you please be able to help me create the javascript for the above validation?? If you could just help me create it for this page i can amend it for all the other pages. I'd really really appreciate it!!!
    Can you follow the below example?? Obviously AFTER validation has been successful you need to collect the information from the form and send it to the recipient email address...that's where you can use php. I'll check back tomorrow and see how you are doing.
    <!DOCTYPE HTML>
    <html><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Form validation</title>
    <!-- VALIDATE ORDER FORM  -->
    <script type="text/javascript">
    <!--
    function RequiredFormFields() {
        // inform customer to provide figurine choice
    var figurine = document.forms.product.figurine.value;
    if (figurine == "-- Select figurine --")
    alert("Please provide figurine choice");
    return false;
    // inform customer to provide engraving choice
    var engraving = document.forms.product.engraving.value;
    if (engraving == "-- Select engraving --")
    alert("Please provide engraving choice");
    return false;
    // inform customer to provide font choice
        var font = document.forms.product.font.value;
    if (font == "-- Select style --")
    alert("Please select font style");
    return false;
    // inform customer to provide their name
    var Name = document.forms.product.Name.value;
    if (Name == null || Name == "")
    alert("Please provide your name");
    return false;
    // inform customer to provide their house number/name
    var house = document.forms.product.house.value;
    if (house == null || house == "")
    alert("Please provide your house number/name");
    return false;
    } // end function
    -->
    </script>
    </head>
    <body>
    <form name="product" form action="processForm.php" method="post" class="product_form" onsubmit="return RequiredFormFields()">
    <p class="product_form_options">Choice of Figurine<br>
    <select name="figurine" class="productButton" id="figurine" onChange="Recalculate()">
    <option selected>-- Select figurine --</option>
    <option value="7031">Tropical Green Granite with bronze sacred heart figurine as pictured(&pound;7031)</option>
    <option value="5216">Tropical Green Granite with bronze effect sacred heart figurine (&pound;5216)</option>
    <option value="5216">Tropical Green Granite with reconstituded figurine MF122(&pound;5216)</option>
    </select>
    </p>
    <p class="product_form_options">Engraved Lettering<br>
    <select name="engraving" class="productButton" id="engraving" onChange="Recalculate()">
            <option selected>-- Select engraving --</option>
            <option value="2.30">Sandblast and enamel painted (&pound;2.30/letter)</option>
            <option value="2.80">Sandblast and guilded (&pound;2.80/letter)</option>
            <option value="2.20">Maintenance free (&pound;2.20/letter)</option>
            <option value="3.73">Traditionally hand cut and enamel painted (&pound;3.73/letter)</option>
            <option value="3.98">Traditionally hand cut and gilded (&pound;3.98/letter)</option>
            <option value="4.34">Raised lead and enamel painted (&pound;4.34/letter)</option>
            <option value="4.59">Raised lead and gilded (&pound;4.59/letter)</option>
          </select>
    </p>
    <p class="product_form_options">Letter/Font Style<br>    
          <select name="font" class="productButton" id="font" >
               <option selected>-- Select style --</option>
               <option value="Maintenance free">Maintenance free </option>
               <option value="White painted block">White painted block</option>
               <option value="White painted roman">White painted roman</option>
               <option value="White painted Script">White painted Script</option>
               <option value="White painted Celtic">White painted Celtic</option>
               <option value="White painted Nova">White painted Nova</option>
               <option value="Sliver painted block">Sliver painted block</option>
               <option value="Sliver painted roman">Sliver painted roman</option>
               <option value="Sliver painted Script">Sliver painted Script</option>
               <option value="Sliver painted Celtic">Sliver painted Celtic</option>
               <option value="Sliver painted Nova">Sliver painted Nova</option>
               <option value="Gold leaf painted block">Gold leaf painted block</option>
               <option value="Gold leaf painted roman">Gold leaf painted roman</option>
               <option value="Gold leaf painted Script">Gold leaf painted Script</option>
               <option value="Gold leaf painted Celtic">Gold leaf painted Celtic</option>
               <option value="Gold leaf painted Nova">Gold leaf painted Nova</option>
               <option value="Gold leaf painted Old English">Gold leaf painted Old English</option>
             </select>
             </p>
             <p>
    <p>Name<br>
    <input name="Name" type="text" id="Name" value="">
    </p>
    <p>House name or number:<br>
    <input name="house" type="text" id="house" size="67">
    </p>
    <p>
    <input name="submit" type="submit" class="place_order" id="submit" value="Place order">
    </p>  
    </form>
    </body>
    </html>

  • Please help with this bapi for creating billing document

    I want to create a billing document using the bapi:  BAPI_BILLINGDOC_CREATEMULTIPLE from a delivery number and NOT A SALES ORDER.
    Please tell me what  details to be passed to table  BILLINGDATAIN . Please don't provide me function module documentation because it does n't help me create billing document from delivery. A sample source code or suggestion to what to pass would be really great!
    Thanks,
    Krishen
    P.S. Points assured for helpful answers and thanks for your time.

    Hi,
    Try this..
    DATA: s_vbap TYPE vbap.
    TABLES: vbak,vbap,likp, lips.
    DATA: t_billing TYPE STANDARD TABLE OF bapivbrk WITH HEADER LINE.
    DATA: t_conditions TYPE STANDARD TABLE OF bapikomv WITH HEADER LINE.
    DATA: t_return TYPE STANDARD TABLE OF bapireturn1 WITH HEADER LINE.
    DATA: t_ccard  TYPE STANDARD TABLE OF bapiccard_vf WITH HEADER LINE.
    DATA: t_errors TYPE STANDARD TABLE OF bapivbrkerrors WITH HEADER LINE.
    DATA: t_success TYPE STANDARD TABLE OF bapivbrksuccess WITH HEADER LINE
    PARAMETERS: p_vbeln TYPE vbeln.
    select single * from likp
                    where vbeln = p_vbeln.
    SELECT SINGLE * from lips where
                    vbeln = likp-vbeln.
      t_billing-salesorg   = likp-vkorg.
      t_billing-ref_doc     = likp-vbeln.
      t_billing-ref_item    = lips-posnr.
      t_billing-doc_number     = p_vbeln.
      t_billing-itm_number    = lips-posnr.
      t_billing-ordbilltyp  = 'ZINV'.
      t_billing-price_date = sy-datum.
      t_billing-ref_doc_ca  = likp-vbtyp.
      t_billing-material    = lips-matnr.
      t_billing-plant       = lips-werks.
      APPEND t_billing.
    CALL FUNCTION 'BAPI_BILLINGDOC_CREATEMULTIPLE'
      TABLES
        billingdatain         = t_billing
        return                = t_return
        success               = t_success
    commit work.
    Thanks,
    Naren

  • Please help with RMAN dup for RAC db

    Happy Holidays!! All,
    I need help with the following issue:
    Both target and auxiliary databases are:
    Database version is 10.2.0.3 with 2-node RAC db
    Servers are MS 2003
    Oracle Clusterware 10.2.0.3
    Oracle ASM for storage
    I have run the rman dup from RAC to a single instance db for a while. This is the first time I ran from RAC to RAC. This auxiliary db was refreshed before and was up for a while and was managed by server control tool. Now I am trying to refresh it with new backup files from production. I did the following as people suggested:
    1)     shutdown instance in the second node.
    2)     Startup nomount mode in the first node
    3)     Run RMAN dup
    It failed in the same place with slightly different errors. I pasted error messages at the bottom. I already created a TAR with Oracle but would like to know if anybody has any info related to this. Also I have several questions to ask:
    1)     Should I stop all services related to Oracle in node-2
    2)     Should I stop all clustware related services in node-1 except oracleCSServie since ASM uses it?
    3)     Is there any way I can finish the dup manually from the place I failed? What going to happen if I don’t finish the rest of the dup and go ahead with “alter database open resetlogs”?
    4)     How do I remove the database from under Server control – I already run “srvctl remove database -d atlrac” successfully. Is this all?
    Thanks a lot for your help and have a great holiday season!!!
    First time run:
    contents of Memory Script:
    shutdown clone;
    startup clone nomount ;
    executing Memory Script
    database dismounted
    Oracle instance shut down
    connected to auxiliary database (not started)
    RMAN-00571: ====================================================
    RMAN-00569: ======= ERROR MESSAGE STACK FOLLOWS ==============
    RMAN-00571: =============================================
    RMAN-03002: failure of Duplicate Db command at 12/21/2009 20:24:47
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-04014: startup failed: ORA-00610: Internal error code
    Second time run:
    contents of Memory Script:
    shutdown clone;
    startup clone nomount ;
    executing Memory Script
    database dismounted
    Oracle instance shut down
    connected to auxiliary database (not started)
    RMAN-00571: ===================================================
    RMAN-00569: ========== ERROR MESSAGE STACK FOLLOWS ==========
    RMAN-00571: ===================================================
    RMAN-03002: failure of Duplicate Db command at 12/22/2009 15:53:27
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-04014: startup failed: ORA-03113: end-of-file on communication channel
    Shirley

    1) Should I stop all services related to Oracle in node-2
    No, you just need to stop the second instance.
    2) Should I stop all clustware related services in node-1 except oracleCSServie since ASM uses it?
    No, you don't need to stop anything. Just have the instance startup nomount.
    3) Is there any way I can finish the dup manually from the place I failed? What going to happen if I don’t finish the rest of the dup and go ahead with “alter database open resetlogs”?
    You have not shown enough information. Did the restore succeed ? Did the recover succeed ? What was it doing when it failed ?
    4) How do I remove the database from under Server control – I already run “srvctl remove database -d atlrac” successfully. Is this all?
    Yes, srvctl remove database is all you need. (unless you also want to remove from listener.ora, tnsnames.ora, oratab etc)

  • I'm new and don't get it yet. Please help with adding video to timeline.

    Please give me direction with this.
    I  created 5 swfs (simple, short animations) The swfs are named "movie1," "movie2," and so on. I want to import all 5 movie clips and thread them  together so that they play one after the other inside the timeline of a new Flash  Document. I am hoping to have "movie 1" play, stop,  have "movie 2" play, stop and so on until the 5th "movie plays then  stops (no looping necessary). It will be played on a Mac laptop and not online.
    I've been fiddling with timeline actions for 2  days and can't figure how to lead one movie to the other. I've been using  Action Script 2 so far.
    What I've done is create 5 layers (1 for each clip)
    "movie1" is on layer 1, frame 1
    "movie2" is on layer 2, frame 2
    "movie3" is on layer 3, frame 3
    "movie4" is on layer 4, frame 4
    "movie5" is on layer 5, frame 5
    Is this workable?
    Thanksk all.
    Al Naclerio

    if you have swfs (and not movieclips), that probably won't work:   no actionscript in those swfs will work.  so, if you have any actionscript those swfs you'll need to "load" the swfs.

  • Please Help With Academic Proof for Lightroom!

    I got the version of Lightroom that you download, and I need to provide academic proof. When I go to the "My Orders" page, I click on the "Submit Proof" thing like I am supposed to, but then nothing happens. It doesn't bring me to a new page or anything. It just sits there and when I scroll over "Submit Proof" the box that popped up before is sitting there with a loading circle inside of it. No matter how long I leave it there it doesn't do anything. Please help me!

    If a different web browser still is not resolving the issue then I would recommend you contact our support team to submit your proof of eligibility directly.  For the best assistance, I recommend our chat support at http://adobe.ly/tuMwkC.  Our chat representatives can provide a personalized experience to resolve the issue you have described.

  • Fixed Layout ePub - please help me embed video and/or use Folio overlay with web content

    Hi
    I have an In Design file used to create a print book (11"x11") and have decided to use CC 2014 to create a fixed-layout ePub 3 for a digital version.  I converted the book over with minor issues of having to change the font and it looks beautiful.
    I would like to add videos at the end of the book to take advantage of the flexibility of the digital format.  I create a year-end slideshow of my photos and host them on Vimeo.
    I have tried the following:
    Using the Vimeo standard embed code in an HTML element
    Using the old flash Vimeo embed code and converting to HTML - worked great on iBooks on Mac but not on iPhone/iPad as flash-based
    Hosting and linking to videos on my own web server and using the Media - insert video link to the mp4 file
    Hosting and linking to videos on my old photo server at smugmug.com
    I can embed the actual videos but, at their smallest size they increase the file size of the ePub from 78MB to 400MB...
    I then thought I would use a Folio Overlay - Web Content.
    The idea is to use this blank page on my website which would look for all intents and purposes like another white page in the book - 2012 Slideshow - Oren Photography
    The overlay works in Folio Preview but not when exported as an ePub
    Is this a limitation of the ePub format?
    Any help/advice/suggestions on fixing this are greatly appreciated.
    E

    Thanks again Steve and Bill
    My interest in embedding videos was largely to minimize the final file size and amount of space used on each person's device.  I ended up following your advice about using Adobe Media Encoder to minimize the size of each slideshow but it still increased the final ePub from 65 MB to over 200 MB.  And that was with video quality that was far inferior from what I could offer through an embed or, my final solution, a link out to my website.
    I happen to be of the same thought as Bill that most people are now connected to the internet and would favor a smaller file with access to online content over a very large file.  I would have liked to embed the videos and allow 720p quality inside the ePub over the link I ended up settling for.
    E

  • Please help with ENGLISH names for extd details

    Please can anyone with an ENGLISH OS (en-xx, Sub langID should all be the same ?? i guess) run the following lines and post the result.
    tab = Text.GetCharacter(9)
    tmpFile = File.GetTemporaryFilePath()
    allDetails = LDShell.AllDetails
    nDetails = Array.GetItemCount(allDetails)
    ' TextWindow.WriteLine(allDetails)
    'Goto End '
    For n = 1 To nDetails
    File.WriteLine(tmpFile, n, n-2 +tab+ allDetails[n-2])
    'File.WriteLine(tmpFile, n, allDetails[n-2])
    EndFor
    File.WriteLine(tmpFile, n+1, tab)
    File.WriteLine(tmpFile, n+2, "sum:" +tab+ nDetails)
    LDProcess.Start("notepad.exe", tmpFile)
    End:
    Needs LitDev extension and will return a long list like this one in german (Win7 SP1):
    -1    Infotip
    0    Name
    1    Größe
    2    Elementtyp
    3    Änderungsdatum
    4    Erstelldatum
    5    Letzter Zugriff
    6    Attribute
    7    Offlinestatus
    8    Offline verfügbar
    9    Erkannter Typ
    10    Besitzer
    11    Art
    12    Aufnahmedatum
    13    Mitwirkende Interpreten
    14    Album
    282    Datenrate
    283    Bildhöhe
    284    Einzelbildrate
    285    Bildbreite
    286    Gesamtbitrate
    I would need the ENGLISH (original) detail names for
    Win7 and up, if there are more then 286 (288) extended details available or other details on newer Win8, Win8SP1 and/or Win10.
    The only old overview in englsh i could find was on
    Get Extended File Properties (kixtart) and this is incomplete (or incorrect) too. Seems the latest there is from Win7 (noSP ??)
    The list is rather long ~300 lines, so if it's too long to post, maybe try an ID, an upload anywhere or pastebin.com.
    Thanks

    Windows 7 Professional SP 1
    -1 Infotip
    0 Name
    1 Size
    2 Item type
    3 Date modified
    4 Date created
    5 Date accessed
    6 Attributes
    7 Offline status
    8 Offline availability
    9 Perceived type
    10 Owner
    11 Kind
    12 Date taken
    13 Contributing artists
    14 Album
    15 Year
    16 Genre
    17 Conductors
    18 Tags
    19 Rating
    20 Authors
    21 Title
    22 Subject
    23 Categories
    24 Comments
    25 Copyright
    26 #
    27 Length
    28 Bit rate
    29 Protected
    30 Camera model
    31 Dimensions
    32 Camera maker
    33 Company
    34 File description
    35 Program name
    36 Duration
    37 Is online
    38 Is recurring
    39 Location
    40 Optional attendee addresses
    41 Optional attendees
    42 Organizer address
    43 Organizer name
    44 Reminder time
    45 Required attendee addresses
    46 Required attendees
    47 Resources
    48 Meeting status
    49 Free/busy status
    50 Total size
    51 Account name
    52 Task status
    53 Computer
    54 Anniversary
    55 Assistant's name
    56 Assistant's phone
    57 Birthday
    58 Business address
    59 Business city
    60 Business country/region
    61 Business P.O. box
    62 Business postal code
    63 Business state or province
    64 Business street
    65 Business fax
    66 Business home page
    67 Business phone
    68 Callback number
    69 Car phone
    70 Children
    71 Company main phone
    72 Department
    73 E-mail address
    74 E-mail2
    75 E-mail3
    76 E-mail list
    77 E-mail display name
    78 File as
    79 First name
    80 Full name
    81 Gender
    82 Given name
    83 Hobbies
    84 Home address
    85 Home city
    86 Home country/region
    87 Home P.O. box
    88 Home postal code
    89 Home state or province
    90 Home street
    91 Home fax
    92 Home phone
    93 IM addresses
    94 Initials
    95 Job title
    96 Label
    97 Last name
    98 Mailing address
    99 Middle name
    100 Cell phone
    101 Nickname
    102 Office location
    103 Other address
    104 Other city
    105 Other country/region
    106 Other P.O. box
    107 Other postal code
    108 Other state or province
    109 Other street
    110 Pager
    111 Personal title
    112 City
    113 Country/region
    114 P.O. box
    115 Postal code
    116 State or province
    117 Street
    118 Primary e-mail
    119 Primary phone
    120 Profession
    121 Spouse/Partner
    122 Suffix
    123 TTY/TTD phone
    124 Telex
    125 Webpage
    126 Content status
    127 Content type
    128 Date acquired
    129 Date archived
    130 Date completed
    131 Device category
    132 Connected
    133 Discovery method
    134 Friendly name
    135 Local computer
    136 Manufacturer
    137 Model
    138 Paired
    139 Classification
    140 Status
    141 Client ID
    142 Contributors
    143 Content created
    144 Last printed
    145 Date last saved
    146 Division
    147 Document ID
    148 Pages
    149 Slides
    150 Total editing time
    151 Word count
    152 Due date
    153 End date
    154 File count
    155 Filename
    156 File version
    157 Flag color
    158 Flag status
    159 Space free
    160 Bit depth
    161 Horizontal resolution
    162 Width
    163 Vertical resolution
    164 Height
    165 Importance
    166 Is attachment
    167 Is deleted
    168 Encryption status
    169 Has flag
    170 Is completed
    171 Incomplete
    172 Read status
    173 Shared
    174 Creators
    175 Date
    176 Folder name
    177 Folder path
    178 Folder
    179 Participants
    180 Path
    181 By location
    182 Type
    183 Contact names
    184 Entry type
    185 Language
    186 Date visited
    187 Description
    188 Link status
    189 Link target
    190 URL
    191 Media created
    192 Date released
    193 Encoded by
    194 Producers
    195 Publisher
    196 Subtitle
    197 User web URL
    198 Writers
    199 Attachments
    200 Bcc addresses
    201 Bcc
    202 Cc addresses
    203 Cc
    204 Conversation ID
    205 Date received
    206 Date sent
    207 From addresses
    208 From
    209 Has attachments
    210 Sender address
    211 Sender name
    212 Store
    213 To addresses
    214 To do title
    215 To
    216 Mileage
    217 Album artist
    218 Album ID
    219 Beats-per-minute
    220 Composers
    221 Initial key
    222 Part of a compilation
    223 Mood
    224 Part of set
    225 Period
    226 Color
    227 Parental rating
    228 Parental rating reason
    229 Space used
    230 EXIF version
    231 Event
    232 Exposure bias
    233 Exposure program
    234 Exposure time
    235 F-stop
    236 Flash mode
    237 Focal length
    238 35mm focal length
    239 ISO speed
    240 Lens maker
    241 Lens model
    242 Light source
    243 Max aperture
    244 Metering mode
    245 Orientation
    246 People
    247 Program mode
    248 Saturation
    249 Subject distance
    250 White balance
    251 Priority
    252 Project
    253 Channel number
    254 Episode name
    255 Closed captioning
    256 Rerun
    257 SAP
    258 Broadcast date
    259 Program description
    260 Recording time
    261 Station call sign
    262 Station name
    263 Summary
    264 Snippets
    265 Auto summary
    266 Search ranking
    267 Sensitivity
    268 Shared with
    269 Sharing status
    270 Product name
    271 Product version
    272 Support link
    273 Source
    274 Start date
    275 Billing information
    276 Complete
    277 Task owner
    278 Total file size
    279 Legal trademarks
    280 Video compression
    281 Directors
    282 Data rate
    283 Frame height
    284 Frame rate
    285 Frame width
    286 Total bitrate
    sum: 288

  • Please help with iChat Video connection problem

    Hi,
    I'm having problems getting iChat video to connect with other users. Is there anyone here who can interpret the log for me to diagnose the problem?
    I'm using iChat 4.0.2 (604) on OSX 10.5.2. I'm able to make a test call to the appleu3test01 account but not to anyone else. My computer is behind a firewall/nat that allows all outgoing connections.
    Thanks in advance,
    Charley
    log follows ----
    Date/Time: 2008-04-25 10:54:51.252 -0700
    OS Version: 10.5.2 (Build 9C31)
    Report Version: 4
    iChat Connection Log:
    2008-04-25 10:54:20 -0700: AVChat started with ID 3060103232.
    2008-04-25 10:54:20 -0700: [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    2008-04-25 10:54:20 -0700: 0x18c33f90: State change from AVChatNoState to AVChatStateInvited.
    2008-04-25 10:54:24 -0700: 0x18c33f90: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-04-25 10:54:24 -0700: [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-04-25 10:54:46 -0700: 0x18c33f90: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-04-25 10:54:46 -0700: 0x18c33f90: Error -8 (Did not receive a response from 0x18c33f90.)
    2008-04-25 10:54:46 -0700: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-04-25 10:54:46 -0700: [email protected]: Error -8 (Did not receive a response from 0x18c33f90.)
    Video Conference Error Report:
    19.849386 @SIP/SIP.c:2719 type=4 (900A0015/22)
    [SIPConnectIPPort failed]
    21.879238 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    23.907981 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    207.554386 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    209.556562 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    211.558538 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    6.351586 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    11.806939 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    11.807668 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    17.848706 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK6eea23d52f630510
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=284603095
    Call-ID: 37c81fe0-12f0-11dd-bc88-c28afda54012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    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:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    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 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    18.348973 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK6eea23d52f630510
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=284603095
    Call-ID: 37c81fe0-12f0-11dd-bc88-c28afda54012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    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:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    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 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    19.349225 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK6eea23d52f630510
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=284603095
    Call-ID: 37c81fe0-12f0-11dd-bc88-c28afda54012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    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:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    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 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    19.879528 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:34793 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK6ebc186f3e3a806c
    Max-Forwards: 70
    To: "u0" <sip:user@rip:34793>
    From: "0" <sip:user@lip:16402>;tag=1250365544
    Call-ID: 38fdfe34-12f0-11dd-bc88-ea4fb53e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    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:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    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 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    20.379800 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:34793 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK6ebc186f3e3a806c
    Max-Forwards: 70
    To: "u0" <sip:user@rip:34793>
    From: "0" <sip:user@lip:16402>;tag=1250365544
    Call-ID: 38fdfe34-12f0-11dd-bc88-ea4fb53e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    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:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    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 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    21.380078 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:34793 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK6ebc186f3e3a806c
    Max-Forwards: 70
    To: "u0" <sip:user@rip:34793>
    From: "0" <sip:user@lip:16402>;tag=1250365544
    Call-ID: 38fdfe34-12f0-11dd-bc88-ea4fb53e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    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:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    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 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    21.908295 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK1ddd3b8a34918b59
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=849327933
    Call-ID: 3a339b2e-12f0-11dd-bc88-8397d3164012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    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:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    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 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    22.408547 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK1ddd3b8a34918b59
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=849327933
    Call-ID: 3a339b2e-12f0-11dd-bc88-8397d3164012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    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:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    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 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    23.408840 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK1ddd3b8a34918b59
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=849327933
    Call-ID: 3a339b2e-12f0-11dd-bc88-8397d3164012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    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:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    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 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    48.126971 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 3 returns 1
    48.345373 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    137.223416 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 4 returns 1
    137.745518 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    137.746141 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    138.114296 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:1156;branch=z9hG4bK0588d22c3bf22e51
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1374840277
    Call-ID: 7f77f770-12f0-11dd-bc88-d4dead114012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:1156>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 1156 RTP/AVP 110 121 12 3 0
    a=rtcp:1156
    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:4082181242
    m=video 1156 RTP/AVP 123 126 34
    a=rtcp:1156
    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 1156 VIDEO 1156
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:1988964481
    138.155760 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP sip:1156;branch=z9hG4bK0588d22c3bf22e51
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1374840277
    Call-ID: 7f77f770-12f0-11dd-bc88-d4dead114012@lip
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    138.155978 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP sip:1156;branch=z9hG4bK0588d22c3bf22e51
    To: "u0" <sip:user@rip:16402>;tag=1599155684
    From: "0" <sip:user@lip:16402>;tag=1374840277
    Call-ID: 7f77f770-12f0-11dd-bc88-d4dead114012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Length: 0
    138.225275 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:1156;branch=z9hG4bK0588d22c3bf22e51
    To: "u0" <sip:user@rip:16402>;tag=1599155684
    From: "0" <sip:user@lip:16402>;tag=1374840277
    Call-ID: 7f77f770-12f0-11dd-bc88-d4dead114012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 446
    [v=0
    o=vcm39 0 0 IN IP4 rip
    s=0
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2000
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:889957869
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:813658281
    138.225465 @SIP/Transport.c:2362 type=1 (00000000/0)
    [ACK sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:1156;branch=z9hG4bK1897dab876cdecb4
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=1599155684
    From: "0" <sip:user@lip:16402>;tag=1374840277
    Call-ID: 7f77f770-12f0-11dd-bc88-d4dead114012@lip
    CSeq: 1 ACK
    User-Agent: Viceroy 1.3
    Content-Length: 0
    138.459642 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Received the first BWD packet from rip:16402]
    138.773635 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Avg=100948.20, NSDev=0.65%]
    138.939768 @:0 type=1 (00000000/1)
    [Bandwidth Detection]
    [Avg=865686.00, NSDev=5.40%]
    139.050190 @:0 type=1 (00000000/2)
    [Bandwidth Detection]
    [Avg=3148358.00, NSDev=2.29%]
    145.812543 @SIP/Transport.c:2362 type=1 (00000000/0)
    [BYE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:1156;branch=z9hG4bK4dbf685912e73246
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=1599155684
    From: "0" <sip:user@lip:16402>;tag=1374840277
    Call-ID: 7f77f770-12f0-11dd-bc88-d4dead114012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    145.850321 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:1156;branch=z9hG4bK4dbf685912e73246
    To: "u0" <sip:user@rip:16402>;tag=1599155684
    From: "0" <sip:user@lip:16402>;tag=1374840277
    Call-ID: 7f77f770-12f0-11dd-bc88-d4dead114012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    195.109331 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 5 returns 1
    199.541174 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    199.542189 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    205.554461 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK0f6792db59552bff
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=881601401
    Call-ID: a7aaffda-12f0-11dd-bc88-d9783e6e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    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:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    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 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    206.054777 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK0f6792db59552bff
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=881601401
    Call-ID: a7aaffda-12f0-11dd-bc88-d9783e6e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    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:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    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 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    207.055212 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK0f6792db59552bff
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=881601401
    Call-ID: a7aaffda-12f0-11dd-bc88-d9783e6e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    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:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    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 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    207.556084 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:34793 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK6a49d97471a25260
    Max-Forwards: 70
    To: "u0" <sip:user@rip:34793>
    From: "0" <sip:user@lip:16402>;tag=617856270
    Call-ID: a8dc537c-12f0-11dd-bc88-db9bbace4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    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:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    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 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    208.056452 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:34793 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK6a49d97471a25260
    Max-Forwards: 70
    To: "u0" <sip:user@rip:34793>
    From: "0" <sip:user@lip:16402>;tag=617856270
    Call-ID: a8dc537c-12f0-11dd-bc88-db9bbace4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    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:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    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 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    209.057386 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:34793 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK6a49d97471a25260
    Max-Forwards: 70
    To: "u0" <sip:user@rip:34793>
    From: "0" <sip:user@lip:16402>;tag=617856270
    Call-ID: a8dc537c-12f0-11dd-bc88-db9bbace4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    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:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    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 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    209.558360 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK16cf618234ae3133
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=474934580
    Call-ID: aa0dda7c-12f0-11dd-bc88-98d03de04012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    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:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    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 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    210.058639 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK16cf618234ae3133
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=474934580
    Call-ID: aa0dda7c-12f0-11dd-bc88-98d03de04012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    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:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    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 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    211.059368 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK16cf618234ae3133
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=474934580
    Call-ID: aa0dda7c-12f0-11dd-bc88-98d03de04012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    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:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    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 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    23.939323 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 0 bytes (0 entries).
    139.188758 @:0 type=5 (00000000/60)
    [Detected bandwidth (kbits/s): 868 up, 868 down. (00000000)
    139.210929 @Video Conference/VideoConferenceMultiController.m:1958 type=5 (00000000/0)
    [Start Conference With UserID: u0]
    211.591419 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 0 bytes (0 entries).
    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 - 0x5f5fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x605000 - 0x619fff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x629000 - 0x647fff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x64f000 - 0x6c1fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x6ff000 - 0x730fff com.apple.iChatCommonGUI 4.0.2 (604) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x759000 - 0x75cfff com.apple.BezelServicesFW 1.4.624 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x777000 - 0x779fff com.apple.iChat.Styles.Text 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x7c7000 - 0x7ccfff com.apple.iChat.Styles.Balloons 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x7db000 - 0x7defff com.apple.iChat.Styles.Boxes 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x7e5000 - 0x7ebfff com.apple.iChat.Styles.Compact 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x1489e000 - 0x1498cfff com.apple.RawCamera.bundle 2.0.2 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x14aab000 - 0x14ab0fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x16254000 - 0x1625dfff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x1626e000 - 0x16271fff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x16277000 - 0x1627cfff com.apple.audio.AppleHDAHALPlugIn 1.5.6 (1.5.6a19) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x162de000 - 0x162e1fff com.apple.LiveType.component 2.1.3 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x162e6000 - 0x1634bfff com.apple.LiveType.framework 2.1.3 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x1636b000 - 0x163b1fff com.apple.motion.component 1.0 /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x163b6000 - 0x163b9fff com.apple.motion.framework 3.0 /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x163be000 - 0x163f9fff com.apple.QuickTimeFireWireDV.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x16404000 - 0x16431fff com.apple.QuickTimeIIDCDigitizer 7.4.5 (67) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x1643c000 - 0x16486fff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x164ad000 - 0x164c8fff de.access-music.virus_ti.util.hal ??? (1.4.0) /Library/Audio/Plug-Ins/HAL/de.access-music.virusti.plugin/Contents/MacOS/de.access-music.virusti
    0x164f7000 - 0x1654dfff com.apple.DVCPROHDAudio 1.3 /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
    0x1657d000 - 0x165c7fff com.apple.DVCPROHDMuxer 1.3 /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x165eb000 - 0x16607fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x16705000 - 0x16895fff com.apple.audio.codecs.Components 1.6.2 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x16923000 - 0x16aa4fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x16ad2000 - 0x16d21fff com.apple.ATIRadeonX2000GLDriver 1.5.20 (5.2.0) /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x17e76000 - 0x17e76fff liblangid.dylib /usr/lib/liblangid.dylib
    0x183b3000 - 0x183b3fff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x183b9000 - 0x183c0fff com.apple.JavaVM 12.0.2 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x183ca000 - 0x183cbfff com.apple.iChat.PersonIconPlugIn 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x189a1000 - 0x189c0fff com.apple.speech.SpeechDictionary 3.5.51 /System/Library/PrivateFrameworks/SpeechDictionary.framework/Versions/A/SpeechD ictionary
    0x18fbd000 - 0x19051fff com.apple.speech.synthesis.MacinTalkSynthesizer 3.6.59 /System/Library/Speech/Synthesizers/MacinTalk.SpeechSynthesizer/Contents/MacOS/ MacinTalk
    0x1deff000 - 0x1df11fff com.apple.DVCPROHDVideoDigitizer 1.3 /Library/QuickTime/DVCPROHDVideoDigitizer.component/Contents/MacOS/DVCPROHDVide oDigitizer
    0x1e43a000 - 0x1e4adfff com.apple.audio.units.Components 1.5.1 /System/Library/Components/CoreAudio.component/Contents/MacOS/CACodecs
    0x1e654000 - 0x1e654fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x1e6fc000 - 0x1e718fff 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
    0x1e7a0000 - 0x1e7bdfff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1e815000 - 0x1e822fff com.apple.QuartzComposer.Backdrops 1.1 /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x1e82a000 - 0x1e82ffff com.apple.AppleMPEG2Codec 1.0 (211) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x1e9b2000 - 0x1e9c4fff com.apple.FCP Uncompressed 422.component 1.5 /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0x1e9ea000 - 0x1ea1ffff com.apple.AppleProRes422 1.0 (36) /Library/QuickTime/AppleProRes422.component/Contents/MacOS/AppleProRes422
    0x1ea89000 - 0x1eacdfff com.apple.DVCPROHDCodec 1.4 (231) /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x1eb30000 - 0x1eb8bfff com.apple.AppleHDVCodec 1.3 (211) /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x1eb96000 - 0x1ebd2fff com.apple.AppleVAFramework 4.0.16 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x1ebd9000 - 0x1ebf3fff com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1ec18000 - 0x1ec38fff com.apple.IMXCodec 1.3 (143) /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x1ec6f000 - 0x1ec89fff com.apple.applepixletvideo 1.2.10 (1.2d10) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x21557000 - 0x218d5fff com.apple.QuickTimeH264.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x70000000 - 0x700e3fff com.apple.audio.units.Components 1.5.1 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x90041fff com.apple.CoreMediaIOServicesPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x90042000 - 0x900f4fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x900f5000 - 0x90133fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90134000 - 0x90544fff 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
    0x90545000 - 0x9057ffff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90580000 - 0x906a4fff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x906b2000 - 0x906e4fff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x906e5000 - 0x90734fff com.apple.QuickLookUIFramework 1.1 (170.2) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x90735000 - 0x90737fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90738000 - 0x90738fff 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
    0x9073f000 - 0x907effff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x907f0000 - 0x907f4fff com.apple.CoreMediaAuthoringPrivate 1.3 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x907ff000 - 0x9082efff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9082f000 - 0x9087ffff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90880000 - 0x90909fff com.apple.DesktopServices 1.4.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9093a000 - 0x90ab8fff com.apple.AddressBook.framework 4.1 (687.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90ab9000 - 0x90ab9fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90aba000 - 0x90b31fff com.apple.CFNetwork 221.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90b32000 - 0x90b32fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x90b33000 - 0x91330fff com.apple.AppKit 6.5.2 (949.26) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91331000 - 0x9138efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x9146f000 - 0x9154efff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x9154f000 - 0x9156dfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9156e000 - 0x9192cfff 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
    0x9192d000 - 0x919f8fff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x919f9000 - 0x91c73fff com.apple.Foundation 6.5.4 (677.15) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91c74000 - 0x91e3ffff com.apple.security 5.0.2 (33001) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91e40000 - 0x91ebcfff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91ebd000 - 0x91f17fff com.apple.CoreText 2.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x91f18000 - 0x91f1afff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91f1b000 - 0x91f65fff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91f66000 - 0x91f7cfff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91f7d000 - 0x920c2fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x920c3000 - 0x920cafff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x920cb000 - 0x920e3fff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x920e4000 - 0x920f0fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x920f1000 - 0x92229fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x92297000 - 0x9229efff libbsm.dylib /usr/lib/libbsm.dylib
    0x9229f000 - 0x92938fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x92939000 - 0x9293efff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9293f000 - 0x92e55fff com.apple.WebCore 5523.15.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x92e56000 - 0x93176fff com.apple.QuickTime 7.4.5 (67) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x93177000 - 0x9318afff com.apple.IMUtils 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x9318b000 - 0x931ccfff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93436000 - 0x9344afff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93457000 - 0x934c9fff com.apple.PDFKit 2.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x934ca000 - 0x9355dfff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9355e000 - 0x9460efff com.apple.QuickTimeComponents.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x94768000 - 0x94811fff com.apple.JavaScriptCore 5523.10.3 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94812000 - 0x948a5fff com.apple.ApplicationServices.ATS 3.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x948a6000 - 0x948affff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x948b0000 - 0x948cbfff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x948cc000 - 0x9491cfff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9491d000 - 0x9491ffff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x94920000 - 0x94920fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94921000 - 0x94930fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94931000 - 0x949f8fff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x949f9000 - 0x949fafff libffi.dylib /usr/lib/libffi.dylib
    0x949fb000 - 0x94b2dfff com.apple.CoreFoundation 6.5.1 (476.10) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94b2e000 - 0x94b45fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x94b7b000 - 0x94b86fff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x94b87000 - 0x94c68fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x94c69000 - 0x94cc2fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94d66000 - 0x94d6efff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94d6f000 - 0x94d85fff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94d86000 - 0x95259fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9525a000 - 0x9529ffff com.apple.Metadata 10.5.2 (398.7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x952a0000 - 0x952e4fff com.apple.DirectoryService.PasswordServerFramework 3.0.2 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x952e5000 - 0x952e5fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x952e6000 - 0x95304fff com.apple.DirectoryService.Framework 3.5.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x95305000 - 0x9532bfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x9532c000 - 0x95333fff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x95334000 - 0x95358fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95359000 - 0x95368fff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95369000 - 0x9539ffff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x953a0000 - 0x953a0fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x953a1000 - 0x954a2fff com.apple.PubSub 1.0.2 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x954a3000 - 0x954fffff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x95531000 - 0x95531fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x95532000 - 0x95551fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95552000 - 0x955ddfff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x955de000 - 0x95609fff libauto.dylib /usr/lib/libauto.dylib
    0x9560a000 - 0x95611fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x95612000 - 0x9568cfff com.apple.print.framework.PrintCore 5.5.2 (245.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9568d000 - 0x9570cfff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9570d000 - 0x95794fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x95795000 - 0x957bdfff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x957be000 - 0x9591dfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9591e000 - 0x959e6fff com.apple.QuickTimeMPEG4.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x959e7000 - 0x959f7fff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x959f8000 - 0x95acbfff com.apple.QuickTimeH264.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x95acc000 - 0x95ae9fff com.apple.QuickLookFramework 1.1 (170.2) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x95aea000 - 0x95af8fff libz.1.dylib /usr/lib/libz.1.dylib
    0x95af9000 - 0x95b1dfff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x95b1e000 - 0x95b23fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x95b24000 - 0x95bb0fff com.apple.LaunchServices 286.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x95bb1000 - 0x95c58fff com.apple.QD 3.11.52 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95c59000 - 0x95e14fff com.apple.QuartzComposer 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95f0a000 - 0x961e3fff com.apple.CoreServices.CarbonCore 785.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x961e4000 - 0x961e4fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x961e5000 - 0x9621cfff com.apple.SystemConfiguration 1.9.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9621d000 - 0x96220fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96221000 - 0x96252fff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x96253000 - 0x96259fff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9625a000 - 0x962d7fff 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
    0x962d8000 - 0x962dcfff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x962dd000 - 0x962ddfff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x962de000 - 0x965e6fff com.apple.HIToolbox 1.5.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x965e7000 - 0x965f3fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x965f4000 - 0x965f4fff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96603000 - 0x9662dfff com.apple.CoreMediaPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x9662e000 - 0x96765fff com.apple.imageKit 1.0.1 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x96766000 - 0x96770fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96771000 - 0x967b0fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x967b1000 - 0x967b5fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x967b6000 - 0x967c1fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x967c2000 - 0x967defff com.apple.IMFramework 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x967df000 - 0x96b75fff com.apple.QuartzCore 1.5.1 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x96b76000 - 0x96b86fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96b87000 - 0x96b8cfff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96b8d000 - 0x96b9efff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x96b9f000 - 0x96b9ffff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96ba0000 - 0x96c5bfff com.apple.WebKit 5523.15.1 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x96c5c000 - 0x96cc1fff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x96d00000 - 0x96d39fff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x96d3a000 - 0x96d3efff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96d3f000 - 0x96d6cfff 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
    0x96d6d000 - 0x96daffff com.apple.NavigationServices 3.5.1 (161) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x96db0000 - 0x96e6afff com.apple.CoreServices.OSServices 224.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x96e6b000 - 0x96f50fff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96f51000 - 0x96fddfff com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96fde000 - 0x9702cfff com.apple.datadetectorscore 1.0.1 (52.13) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore

    Does this firewall allow Incoming Connections ?
    8:12 PM Sunday; April 27, 2008

  • Help with new computer for Photoshop Use ?

    I am going to upgrade my laptop (prefer using laptop for various reasons) and I have the choice of two laptops. Yeah one is more expensive and is a gaming laptop but I just want to know which will work best with Photoshop CS6
    The two laptops I have the choice of and I don't want any other suggestions please as I only have these to choose from are:
    HP Envy DV7
    (details here)
    Samsun Series 7 Gamer
    (details here)
    The specs might not say but they both come with Win8 64 Bit
    I know the Samsung is a high end gaming laptop but that dosent mean it will be great at photoshop and would the cheaper HP do photoshop just as well for less money ??
    I would greatly appreciate any help and advice
    thanks

    Honestly, one cannot hope to advise you reasonably on how best to run an application as complex as Photoshop without your having stated any of your needs or goals.  Pretty much any modern computer will be able to run Photoshop.  But...
    What kind of work products are you going to want to make with Photoshop?
    Big images? Small images? Huge images?
    Are you planning to do things that rely heavily on the GPU?  3D?
    Are you going to work with an external monitor?  Is color-management important to you?
    CS6_User wrote:
    would the cheaper HP do photoshop just as well
    That's a kind of meaningless question.
    It's akin to asking, "Would a Dodge take me to the store better than a Ford?"
    If you're considering doing serious Photoshop work I'd suggest reconsidering a desktop system.  Laptops are typically optimized for things other than what Photoshop needs.
    -Noel

  • How can I turn an audio podcast into a video for Youtube using iMovie?

    Hey there, guys.
    I'm trying to turn a podcast I created in Garageband into a movie using iMovie so I can upload it to YouTube. Now, for the duration of this podcast, I simply want one picture to show on the screen. So, in other words, the cast goes for about 55 minutes, so for the entirity of these 55 minutes, I just want one picture to show. That's all. Just one picture for the duration of the cast. How can I achieve this seemingly simple task using iMovie? Your aid with this is very much appreciated.
    Cheers.

    You create selections based on color range.
    Mylenium

  • Please Help with multiple video tag editing

    I have about 650 music videos that I would like to have show up under the music video tab in my ipod and would like to know if there are any apps out there thay will allow me to change all the videos to Music Videos so they all dont show as Movies under iTunes and my iPod without having to right click and get info than change to music video - I think this option not already being included in Itunes for iPod videos is extremely stupid - anyone who can help me out and shed some light on a faster way please feel free to tell me and If there is a way in itunes to do this please let me know as I cant seem to find one
    And all Apple care says is maybe in the future we will look into to implementing this feature or something like it if we see fit and makes sense as we like to make our software as user friendly as possible
    Thanx
    Black Ipod Video 60gb
      Windows XP Pro  

    bump this up
    As I think this is a very good question and it should deff be looked into I mean cmon this is crazy there is no good reason that you should have to edit them 1 by 1
    Black 80gb Gen 5.5 Video as of Today

Maybe you are looking for