Help with video FX

I am looking tutorial on how to do the "vibrating"or "scattering" video FX in final cut pro. Is there a plug-in for this?
here's an exemple
http://www.youtube.com/watch?v=D23ng_Clky8
Thank you

Thanks a lot.
It may have been done thru quick cuts and flash frames. I am a totoally newbie. What I am looking for is to get some kind of trembling/vibrating FX of the footage- I saw this FX in some horror films, and sometimes in action sequences. There's probably a professional wording for it.
Another example could be seen on this clip (at 1.53mns)
http://vimeo.com/3114617

Similar Messages

  • Need Help With Video In Flex Mobile

    Hi,
    I have been searching quite a bit for information on this and have found really nothing useful for my problem. So far, I've converted the actionscript code posted here: http://www.adobe.com/devnet/flash/articles/osmf-media-player.html
    to work within my ios mobile project. The problem is that no matter what I have tried, I can hear the video but not see it. That codes uses the OSMF framework, which uses StageVideo I think, so I've tried setting the application background alpha to 0 as has been posted about; still no video though. The project is also set to use direct rendering. I've even tried some bare bones AS code to implement the StageVideo, as others have posted here, but still same thing. So can anyone either show me a working example or provide any suggestions on what I might be doing wrong?
    thanks

    Hi, Keith Lee -
    I'm sorry that I cannot help with your problem, but I'm posting a few URLs that may perhaps help - 
    Working with video: http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7e1a.html
    Getting started with stage video: http://www.adobe.com/devnet/flashplayer/articles/stage_video.html
    Stage video articles and tutorials: http://www.adobe.com/devnet/flashplayer/stagevideo.html
    ActionScript reference: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/StageVideo. html
    Thanks,
    Mallika Yelandur
    Adobe Community Help & Learning

  • Help With Video Pop Up Window.

    Hi there Im very new to web design so please understand that I am a complete novice, so my understanding is limited. Any help would be most appreciated.
    Could anyone provide me with a piece of code I can put into the HTML snippet function that will allow me from a hyperlink that says "video" to open up this Vimeo video (see below) in a new window that is the exact dimensions of the given video.- Almost like a pop up.
    Many thanks to any help,
    - preferably I want the appearance of the video to be like the embedd code below regulates: to not include any additional text etc.
    <object width="255" height="143"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clipid=8695239&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;showportrait=0&amp;color=0&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clipid=8695239&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;showportrait=0&amp;color=0&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="255" height="143"></embed></object>
    also here is the link to the original page http://vimeo.com/8695239
    Thanks again, Robin.

    On this page you'll find code to open a page with video in a new window :
    http://www.wyodor.net/MoreEmbed/
    Click where it says :
    Here's a basic sample page with shaded background you can use for testing.
    Click to open a window with the pop-up code.

  • HELP WITH VIDEO FILES AND PUTTING ON ITUNESSS!!!!!!!!!!

    hey...i need help with my video ipod and itunes....i recently had sum problem with my ipod and i had to restore it...and when i hooked it up to itunes all the songs got back on it...its just that the videos never got updated with the songs....the videos are converted and were workin fine....now when i select the folder to put it into the itunes it says processing and nuttin happens...this is drivin me crazy anyone know how to fix this ****??
    THX
    5g ipod video    

    ok...i just uninstalled itunes and installed the previous version...and it worked fine....

  • NEED HELP WITH VIDEO SOUND PLS

    just bought a 30 GB ipod, updated itunes to make the videos compatible. uploaded 3 music videos, they work perfect except they have no sound. dont know what the problem is. i havent' restarted my compute yet, maybe that's it but i highly doubt it. anyones opinion would be highly appreciated. thanks for your help guys.
    -MIKE

    Neither Quicktime Pro or iTunes have the ability to successfully encode a muxed video file with audio. You'll end up with video and no audio.
    You'll need to use some other third-party software to do the conversion. There's a handful of software available. Just search the forums and you'll find many titles mentioned.
    Videora iPod Converter seems to be popular amongst Windows users, although I've read that you might get mixed results using it.

  • Need help with video-scroll

    Hello,
    I need some help with a project. What I eventually want is that a webcam controls the mouse position and the mouse position
    controls a video. But first I would like the part where the mouse position controls the video.
    So if the mouse is on the left on your screen the video will be at the first frame and when you move you're mouse to
    the right the video will play accordingly to the movement. and stop when the mouse is all the way to the right.
    Effectivly the mouse scrolles through the video. It only needs to be on the x-axis.
    I'm not that formilliar with flash so any help would be great
    Thx!
    Thijs

    I fixed it in an other way.
    Made a imgseq and following code (with some help ):
              stop();
              stage.addEventListener(Event.RESIZE, resizeHandler);
              stage.addEventListener(FullScreenEvent.FULL_SCREEN, resizeHandler);
              stage.addEventListener(MouseEvent.MOUSE_MOVE, inputHandler);
              stage.scaleMode = StageScaleMode.NO_SCALE;
              stage.align = StageAlign.TOP_LEFT;
              var imgSeq:ImgSeq = new ImgSeq();
              var columnWidth;
              var numColumns;
              stage.addChild(imgSeq);
              imgSeq.x = 350
              imgSeq.gotoAndStop(1);
              columnWidth = stage.stageWidth / imgSeq.totalFrames;
              numColumns = stage.stageWidth / columnWidth;
              function resizeHandler(e:Event):void {
              // verdeel het scherm in kolommen, iedere keer dat het scherm geresized wordt.
                        // breedte van 1 kolom (schermbreedte gedeeld door aantal plaatjes)
                        columnWidth = stage.stageWidth / imgSeq.totalFrames;
                        // totaal aantal kolommen dat binnen het scherm past (breedte gedeeld door breedte van één kolom )
                        numColumns = stage.stageWidth / columnWidth;
              function inputHandler(e:MouseEvent):void {
              // voer dit iedere keer dat je de muis beweegt uit.
                        // kijk voor iedere kolom of de muis er binnen valt.
                        for(var i = 1; i <= numColumns; i++){
                                  //vergelijking die checkt of de muispositie binnen de waarden van kolom valt.
                                  if(mouseX <= i * columnWidth && mouseX >= (i * columnWidth) - columnWidth ){
                                            // zet het framenummer van de imageSequence gelijk aan de huidige kolom.
                                            imgSeq.gotoAndStop(i);
    many thx!

  • Need help with video problems

    Hi!
    Back in May I was having problems with video on my Mac. I was helped by this site and am hoping for more help. I downloaded the realaudio, but was still having problems. I assumed because I was on dial up. It was so slow. It would take forever to load and then play for a few minutes then need to load some more. I now have DSL and was looking forward to kissing the video problems good-bye! My new problem is that when I try to watch or listen to anything like innertube it "stutters." Is there something else I should be doing? How can I fix this problem?

    With those specs you should be absolutely fine. I would suggest that you update to 10.4.10 at least (download the full Combo updater). Once you are on that:
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, QT 7.3 and OS 10.4.11. (If you are running Leopard, ensure that all plug-ins have been updated for OS 10.5)
    Assuming you already run Tiger versions OS 10.4.9 or above (this has not yet been verified with Leopard) and have Quicktime 7.2 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 10 for Mac from http://forms.real.com/real/player/blackjack.html?platform2=Mac%20OS%20X&product= RealPlayer%2010&proc=g3&lang=&show_list=0&src=macjack
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    Adobe FlashPlayer from http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS. This: http://www.macworld.co.uk/news/index.cfm?email&NewsID=19845 may also interest you.)
    In Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    See also the very informative post from QuickTimeKirk dated Dec 3, 2007 in this thread: http://discussions.apple.com/thread.jspa?threadID=1268489&tstart=0
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them).
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them).
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz.
    Important: Now repair permissions and restart.
    The world should now be your oyster!
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.

  • Help with video in Flex - Alternative to embedding .flv?

    I'm building a Flex application that needs to play a video, which I have in .flv format.  I tried the mx:VideoDisplay component, and it was great, but, unfortunately, I need to be able to package the entire application into a single file, and Flex doesn't support embedding .flv files.  Next I tried converting the .flv to a .swf, embedding that, then using mx:SWFLoader to display it.  This worked, except that I can no longer control the video playback; the video just keeps endlessly looping.  I need to be able to stop the video, and ideally I would like access to something like the complete event from mx:VideoDisplay, so that I can hide the video when it has reached the end.
    I have tried a couple of solutions based around the idea that the content of the .swf can be treated as a MovieClip, but none of these worked for me.  Any ideas?

    Hi, Keith Lee -
    I'm sorry that I cannot help with your problem, but I'm posting a few URLs that may perhaps help - 
    Working with video: http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7e1a.html
    Getting started with stage video: http://www.adobe.com/devnet/flashplayer/articles/stage_video.html
    Stage video articles and tutorials: http://www.adobe.com/devnet/flashplayer/stagevideo.html
    ActionScript reference: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/StageVideo. html
    Thanks,
    Mallika Yelandur
    Adobe Community Help & Learning

  • Please help with video streaming

    I'm trying to play a video on a web page. I got the below
    script from
    a website tutorial, but it does not work correctly. The
    script will
    play a video in both IE and firefox browsers, but in IE, it
    will not
    show the video player controls even though I have added more
    than
    enough height.
    <OBJECT ID="MediaPlayer" WIDTH="208" HEIGHT="300"
    CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
    STANDBY="Loading Windows Media Player components..."
    TYPE="application/x-oleobject">
    <PARAM NAME="FileName" VALUE="videofilename.wmv">
    <PARAM name="autostart" VALUE="true">
    <PARAM name="ShowControls" VALUE="true">
    <param name="ShowStatusBar" value="false">
    <PARAM name="ShowDisplay" VALUE="false">
    <EMBED TYPE="application/x-mplayer2"
    SRC="videofilename.wmv"
    NAME="MediaPlayer"
    WIDTH="208" HEIGHT="300" ShowControls="1" ShowStatusBar="0"
    ShowDisplay="0" autostart="1"> </EMBED>
    </OBJECT>

    That is an older site but there is a lot of information there
    8)
    John Malone
    =========
    "Canned Heat" <[email protected]> wrote in message
    news:[email protected]...
    |A followup. The site you linked to (mediacollege) does have
    a wealth
    | of info. However, for anybody else reading this post I did
    want to
    | point out that it is the same site is where I got the
    script (in my
    | original post) that didn't work. It was located here:
    |
    |
    http://www.mediacollege.com/video/format/windows-media/streaming/index.html
    |
    | So I would recommend using Joh's much simpler script, not
    the one from
    | mediacollege referenced above.
    |
    | Again, thanks John.
    |
    |
    |
    | On Fri, 23 Mar 2007 11:06:56 -0500, "John Malone" <John
    Malone@no
    | spam.com> wrote:
    |
    | >Well I couldn't get it to work in IE7..
    | >And you get the prompt to "click here to activate this
    control"
    | >here is a sample >
    | >
    | >
    http://www.xmas-i-am.com/test/video2.htm
    Autoplay when page loads.
    | >
    | >If you look at the source code on the page you will see
    I am using an external script
    | >file...
    | >This takes care of the outlined player (in IE) with the
    prompt to "click here to
    | >activate".
    | >By changing the script you can load the page without
    starting the movie.
    | >
    | >Like this..>
    | >
    http://www.xmas-i-am.com/test/video.htm
    | >
    | >Steal the code and the script (test.js or auto.js) and
    your good to go...
    | >
    | >Or look at .....>
    | >
    | >
    http://www.midistudio.com/MPlayer9/index.htm
    | >and read how......
    | >This is mostly for MIDI music but can work with video
    with minimal modifications.
    | >
    | >Also here is a good site...
    | >
    http://www.mediacollege.com/video/streaming/formats/
    | >You will need to follow the links>> to get a
    wealth of information.
    | >
    | >Hope this helps...
    | >
    | >Just an after thought...
    | >
    | >Beware of bandwidth limitations of your site this could
    cost you money!!!
    | >
    | >On that sample site(at the top) is a movie (1.3 Megs)
    that is viewed enough to cause
    the
    | >usage to be about 3 Gigs a month. (now)
    | >But at times (September) that goes up to 10~20 Gigs and
    at it's peak I had 17 Gigs a
    week
    | >usage.
    | >(It is the 911 Flash movie)
    | >
    | >Hope this helps......
    | >
    | >John Malone
    | >===============
    | >"Canned Heat" <[email protected]> wrote in message
    | >news:[email protected]...
    | >| Thanks for taking the time to test it. I want to make
    sure, tho, that
    | >| we're not talking about two different things.
    | >|
    | >| The script plays videos fine for me too. However, the
    problem is that
    | >| when playing with IE the video controls such as play,
    pause, etc are
    | >| not displayed.
    | >|
    | >| When you played it did you see the controls in IE?
    | >|
    | >| I have tested it on three machines, ones with the
    same IE version as
    | >| yours, and I get no controls. I only see the controls
    in firefox.
    | >|
    | >| Thanks,
    | >| -Dan
    | >|
    | >|
    | >| On Thu, 22 Mar 2007 15:48:02 -0500, "Eugene J. Maes"
    | >| <[email protected]> wrote:
    | >|
    | >| >Your script works fine in ie 6 with my wmv file.
    | >| >
    | >| >gene
    | >| >"Canned Heat" <[email protected]> wrote in
    message
    | >|
    >news:[email protected]...
    | >| >> I'm trying to play a video on a web page. I
    got the below script from
    | >| >> a website tutorial, but it does not work
    correctly. The script will
    | >| >> play a video in both IE and firefox
    browsers, but in IE, it will not
    | >| >> show the video player controls even though I
    have added more than
    | >| >> enough height.
    | >| >>
    | >| >> <OBJECT ID="MediaPlayer" WIDTH="208"
    HEIGHT="300"
    | >| >>
    CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
    | >| >> STANDBY="Loading Windows Media Player
    components..."
    | >| >> TYPE="application/x-oleobject">
    | >| >> <PARAM NAME="FileName"
    VALUE="videofilename.wmv">
    | >| >> <PARAM name="autostart" VALUE="true">
    | >| >> <PARAM name="ShowControls"
    VALUE="true">
    | >| >> <param name="ShowStatusBar"
    value="false">
    | >| >> <PARAM name="ShowDisplay"
    VALUE="false">
    | >| >> <EMBED TYPE="application/x-mplayer2"
    SRC="videofilename.wmv"
    | >| >> NAME="MediaPlayer"
    | >| >> WIDTH="208" HEIGHT="300" ShowControls="1"
    ShowStatusBar="0"
    | >| >> ShowDisplay="0" autostart="1">
    </EMBED>
    | >| >> </OBJECT>
    | >| >
    | >|
    | >
    |

  • Need help with video uploading in flex 4

    hey guys... so i need to create a video uploading application... with video chunking...
    basically i need to break up the video file (may be 1Gig or more in size) in pieces and send it to the server using a method i call from my webservice...
    any ideas??
    i believe this process is called chunking... not sure how to do this...
    thank you very much in advance!!!

    dude. some time itunes just doesnt support drag and drop techniques . just try the simple copy and paste(ctrl(c+v)). if that file is gonna be played on the ipod u get a small tab box in the itunes that the file which u r copying is being processed .
    even if this technique doesnt work , then thats a faulty format . u can try another video converter . say videora or Aplus video converter . u will find them in www.download.com

  • Need help with Video Categories Movies, Music Videos, ETC.

    Is there anyway to put ripped videos into other categories besides just Movies? I would like to put some of them under Music Videos, is that possible?

    Neither Quicktime Pro or iTunes have the ability to successfully encode a muxed video file with audio. You'll end up with video and no audio.
    You'll need to use some other third-party software to do the conversion. There's a handful of software available. Just search the forums and you'll find many titles mentioned.
    Videora iPod Converter seems to be popular amongst Windows users, although I've read that you might get mixed results using it.

  • Need help with video installation

    Hi,
    I'm no DW guru, as I know just enough to do some damage... so I did
    Anyhow, I am trying to install a video into my (ahem) purchased responsive web template, but each time I try a new approach, I keep getting "Invalid Source" when I "F12" it  -- Any Ideas?

    It might be better to test video in a plain, unstyled web page first to ascertain exactly where your problems are.
    Below is all the code necessary for a responsive HTML5 video player.  Change YourVideo.mp4, .ogv and .webm to your actual path & video file names. 
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 with Video</title>
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <style>
    video {width:100%;}
    </style>
    </head>
    <body>
    <!--IE8 End of Life-->
    <!--[if lt IE 9]>
    You're using an outdated browser that limits your web experience. 
    Please upgrade to a modern browser.
    <![endif]-->
    <!--begin video-->
    <video controls>
         <source src="YourVideo.mp4" type='video/mp4' />
          <source src="YourVideo.webm" type='video/webm' />
          <source src="YourVideo.ogv" type='video/ogg' />
    </video>
    <!--end video-->
    </body>
    </html>
    Nancy O.

  • Need Help With Videos on Zen V P

    I need help putting videos on my Creative Zen V Plus. I convert them to avi using Super Converter and I drag and drop them into the folder for the videos on my zen. When I turn on my Zen and go to the videos the video is there however when I try to play it it says video format not supported.

    Original?Creative software after internet upgrades easy convert any video to Zen format and automaticaly transfere it to player.

  • Help with Video camera lock ups on K7N2 delta

    hi everyone,
    finally got new computer working after formatting and reinstalling windows and the bare minimum of software.
    but a small problem arose after drivers from supplied CD Rom installed my Sony DV camera locks up.
    i haven't even installed any video editing software yet.
    before installing drivers, when i double clicked the camera icon in my computer it gave me access to the camera i.e i could press play on the camera and view it on the computer.
    now since the drivers have been installed the message that i get is 'please wait while device initializes'.
    then  'program not responding' is displayed.
    my configuration is
    K7N2 delta
    AMD XP2000+
    crucial 512mb PC2700
    Radeon 9200
    belkin firewire card
    trust V92 modem
    any help would be much appreciated as the new computer sole purpose is to video edit.
    cheers everyone

    I have the same problem and have a very old MoBo 266Pro board, I have a different camera it's a Samsung dp-s103 or something like that, whenever I try to capture some movie the program lock ups and I have to =restart the PC.  I tried taking out the PCI cards and left only the firewire PCI card I was able to capture about 16 minutes of video, but it still locks up.  I will try the latency patch and a bios upgrade.  Will then see how everything turns up.  I've also tried this on an old computer with an Intel chipset, 733Mhz processor and it worked fine, so this must be either a chipset problem or MSI didn't manufacture these board well.
    Best regards
    PS.  I think that my new system will be a pure intel one  :(

  • A Cry For Help With Video Chat

    I have been trying for several weeks to get my AV iChat working and before starting this thread I have read nearly every recommeneded fix and have tried all but still no luck. My set up is a Mac Pro Desktop G5 on 10.5.5 and router is a Thompson TG585 that I am connected to via a ethernet cable to a 6mb/sec broadband connection. I can connect to iChat but like so many others I am am having no luck getting Video Chat working. I have changed the quicktime streaming prefs to 1.5Mbps T1. I have turned off the systems firewall. I have followed the step by step for port forwarding at http://www.portforward.com/english/routers/port_forwarding/Thomson-Alcatel/Speed Touch585/iChat.htm. The UPnp option is active also. I have changed the port setting to 443 in the server settings with iChat Prefs.
    At this stage I am at a loss, which has led me to take the measure of starting this thread. I am a complete MacAddict and I must say this is the first time that I have failed to resolve a issue on my own back. Any assistance or suggested fixes I would be eternally grateful.
    Below is a snippet of the communication error that I am getting
    Date/Time: 2008-10-19 19:11:02.832 +0100
    OS Version: 10.5.5 (Build 9F33)
    Report Version: 4
    iChat Connection Log:
    2008-10-19 19:10:53 +0100: AVChat started with ID 3354460188.
    2008-10-19 19:10:53 +0100: BrianDuffCork1: State change from AVChatNoState to AVChatStateWaiting.
    2008-10-19 19:10:53 +0100: 0x1836f750: State change from AVChatNoState to AVChatStateInvited.
    2008-10-19 19:10:59 +0100: 0x1836f750: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-10-19 19:10:59 +0100: BrianDuffCork1: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-10-19 19:11:00 +0100: 0x1836f750: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-10-19 19:11:00 +0100: 0x1836f750: Error -7 (0x1836f750 cancelled the connection.)
    2008-10-19 19:11:00 +0100: BrianDuffCork1: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-10-19 19:11:00 +0100: BrianDuffCork1: Error -7 (0x1836f750 cancelled the connection.)
    Video Conference Error Report:
    Video Conference Support Report:
    0.416844 @Video Conference/VCInitiateConference.m:1583 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    6.975075 @Video Conference/VCInitiateConference.m:1598 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    6.977946 @Video Conference/VCInitiateConference.m:1702 type=2 (00000000/0)
    [Initiate Conference To User: appleu3test012 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    Binary Images Description for "iChat":
    0x1000 - 0x241fff com.apple.iChat 4.0.5 (608) /Applications/iChat.app/Contents/MacOS/iChat
    0x2b1000 - 0x320fff com.apple.Bluetooth 2.1 (2.1f17) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x368000 - 0x4a5fff com.apple.viceroy.framework 363.2.12 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x510000 - 0x554fff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x575000 - 0x58efff com.apple.frameworks.preferencepanes 12.1 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5a7000 - 0x5ddfff com.apple.remotedesktop.screensharing 1.0.1 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x5ec000 - 0x5fffff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x60e000 - 0x62ffff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x636000 - 0x668fff com.apple.iChatCommonGUI 4.0.5 (608) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x690000 - 0x693fff com.apple.BezelServicesFW 1.4.832 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x6ba000 - 0x6bcfff com.apple.iChat.Styles.Text 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x6ea000 - 0x6effff com.apple.iChat.Styles.Balloons 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x119e3000 - 0x119e6fff com.apple.iChat.Styles.Boxes 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x119ec000 - 0x119f1fff com.apple.iChat.Styles.Compact 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x1594c000 - 0x15afdfff com.apple.RawCamera.bundle 2.0.9 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x15b8f000 - 0x15b95fff com.apple.CoreGraphics 1.351.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x16358000 - 0x16396fff com.apple.QuickTimeFireWireDV.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x163a2000 - 0x163acfff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x163b9000 - 0x163bdfff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x163c2000 - 0x163c3fff com.apple.aoa.halplugin 2.5.7 (2.5.7f1) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x16435000 - 0x1649dfff com.DivXInc.DivXDecoder 6.4.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x164aa000 - 0x164d9fff com.apple.QuickTimeIIDCDigitizer 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x164e3000 - 0x16530fff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x16557000 - 0x1657efff com.apple.iSightAudio 7.5.5 (990.7) /Library/Audio/Plug-Ins/HAL/iSightAudio.plugin/Contents/MacOS/iSightAudio
    0x16683000 - 0x1669ffff com.apple.opengl 1.5.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x16900000 - 0x16aa4fff com.apple.audio.codecs.Components 1.6.4 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x16ac6000 - 0x16c3dfff com.apple.opengl 1.5.7 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x16c6f000 - 0x16df8fff com.apple.GeForceFXGLDriver 1.5.30 (5.3.0) /System/Library/Extensions/GeForceFXGLDriver.bundle/Contents/MacOS/GeForceFXGLD river
    0x1865f000 - 0x18664fff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x1939c000 - 0x193b8fff com.apple.QuartzComposer.ExtraPatches 2.1 (106.5) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x193c9000 - 0x193e5fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x8fe00000 - 0x8fe30fff dyld /usr/lib/dyld
    0x90003000 - 0x90068fff com.apple.ISSupport 1.7 (38) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x90069000 - 0x90117fff com.apple.QTKit 7.5.5 (990.7) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x90118000 - 0x901dafff com.apple.WebKit 5525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x901db000 - 0x90206fff libauto.dylib /usr/lib/libauto.dylib
    0x90207000 - 0x9020bfff com.apple.ImageIO.framework 2.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9020c000 - 0x9024efff com.apple.CoreMediaIOServicesPrivate 12.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x90255000 - 0x902a4fff com.apple.opengl 1.5.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x902a5000 - 0x902effff com.apple.QuickLookUIFramework 1.3 (170.7) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x90330000 - 0x90347fff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90348000 - 0x9037dfff com.apple.LDAPFramework 1.4.5 (110) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9037e000 - 0x907acfff com.apple.opengl 1.5.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x907ad000 - 0x907defff com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x907df000 - 0x90875fff com.apple.LaunchServices 290 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90876000 - 0x908b8fff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x908b9000 - 0x90941fff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90942000 - 0x90c6bfff 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
    0x90c6c000 - 0x90c8bfff 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
    0x90c8c000 - 0x90c8ffff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90c90000 - 0x90ff5fff com.apple.QuartzCore 1.5.5 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90ff6000 - 0x9107bfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9107c000 - 0x910c0fff com.apple.DirectoryService.PasswordServerFramework 3.0.3 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x910c1000 - 0x910fefff com.apple.CoreGraphics 1.351.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x910ff000 - 0x911affff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x911b0000 - 0x91249fff 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
    0x9124a000 - 0x91266fff com.apple.openscripting 1.2.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91267000 - 0x9126ffff com.apple.CoreGraphics 1.351.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91270000 - 0x912a9fff com.apple.SystemConfiguration 1.9.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x912aa000 - 0x912b0fff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x912b1000 - 0x912f2fff com.apple.ImageIO.framework 2.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x912f3000 - 0x9135dfff com.apple.PDFKit 2.1.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9135e000 - 0x91447fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91448000 - 0x9155cfff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x916ba000 - 0x91744fff 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
    0x91755000 - 0x91757fff com.apple.CrashReporterSupport 10.5.5 (159) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x91758000 - 0x9175dfff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9175e000 - 0x9177dfff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x917b8000 - 0x91818fff com.apple.CoreText 2.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x91819000 - 0x91985fff com.apple.AddressBook.framework 4.1.1 (696) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x91986000 - 0x91988fff com.apple.ImageIO.framework 2.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91989000 - 0x91995fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91996000 - 0x919dcfff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x919dd000 - 0x920befff com.apple.WebCore 5525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x920bf000 - 0x920c8fff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x920c9000 - 0x920ccfff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x920cd000 - 0x92687fff 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
    0x92688000 - 0x926a1fff com.apple.CoreVideo 1.5.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x926a6000 - 0x926befff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x926bf000 - 0x926ecfff com.apple.opengl 1.5.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x926ed000 - 0x92755fff com.apple.iLifeMediaBrowser 1.0.9 (212.0.1) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x92756000 - 0x92764fff com.apple.opengl 1.5.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92765000 - 0x9276cfff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9276d000 - 0x92794fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x92795000 - 0x92878fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x92879000 - 0x92879fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9287a000 - 0x92bb3fff com.apple.HIToolbox 1.5.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92be6000 - 0x9315dfff com.apple.CoreGraphics 1.351.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9315e000 - 0x93245fff com.apple.JavaScriptCore 5525.18 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93246000 - 0x9324efff libbsm.dylib /usr/lib/libbsm.dylib
    0x9324f000 - 0x933effff com.apple.QuartzComposer 2.1 (106.5) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x933f0000 - 0x936f1fff com.apple.CoreServices.CarbonCore 786.6 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x936f2000 - 0x9372ffff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93730000 - 0x93777fff com.apple.NavigationServices 3.5.2 (163) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93778000 - 0x93819fff com.apple.QuickTimeImporters.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9381a000 - 0x93828fff libz.1.dylib /usr/lib/libz.1.dylib
    0x93829000 - 0x93834fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x93835000 - 0x9383afff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x9383b000 - 0x93861fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x93862000 - 0x93980fff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93981000 - 0x939adfff com.apple.CoreMediaPrivate 11.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x939ae000 - 0x939befff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x939bf000 - 0x93b07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x93b08000 - 0x93b08fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x93b09000 - 0x93b28fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93b29000 - 0x93c4efff com.apple.imageKit 1.0.2 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93c4f000 - 0x93c64fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x93c65000 - 0x93c65fff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x93c66000 - 0x93c66fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x93c67000 - 0x93d2cfff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93e7a000 - 0x93ed6fff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x93ed7000 - 0x93f26fff com.apple.Metadata 10.5.2 (398.22) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93f27000 - 0x93f3afff com.apple.speech.synthesis.framework 3.7.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x93f3b000 - 0x93f4afff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x93f4b000 - 0x93f4bfff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x93f58000 - 0x93f76fff com.apple.QuickLookFramework 1.3 (170.7) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x93f77000 - 0x94046fff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94047000 - 0x940dbfff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x940dc000 - 0x940effff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x940f0000 - 0x9410cfff com.apple.IMFramework 4.0.5 (582) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x941dc000 - 0x941dcfff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x941dd000 - 0x941f8fff com.apple.DirectoryService.Framework 3.5.5 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x941f9000 - 0x94274fff com.apple.SearchKit 1.2.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94275000 - 0x942b3fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x942b4000 - 0x9444dfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9444e000 - 0x94459fff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9445a000 - 0x9457ffff com.apple.CoreFoundation 6.5.4 (476.15) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94580000 - 0x94581fff libffi.dylib /usr/lib/libffi.dylib
    0x94582000 - 0x94768fff com.apple.security 5.0.4 (34102) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94769000 - 0x94770fff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94771000 - 0x947f7fff com.apple.CFNetwork 339.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x947f8000 - 0x947f8fff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x947f9000 - 0x94888fff com.apple.DesktopServices 1.4.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x94958000 - 0x94b9dfff com.apple.Foundation 6.5.6 (677.21) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94e1b000 - 0x94e9cfff com.apple.print.framework.PrintCore 5.5.3 (245.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94e9d000 - 0x94e9dfff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94e9e000 - 0x95613fff com.apple.AppKit 6.5.3 (949.34) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95622000 - 0x9576cfff com.apple.ImageIO.framework 2.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9576d000 - 0x95840fff com.apple.CoreServices.OSServices 226.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x95841000 - 0x95897fff com.apple.opengl 1.5.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95898000 - 0x958abfff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x958ac000 - 0x958d5fff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x958d6000 - 0x95923fff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x95924000 - 0x96597fff com.apple.QuickTimeComponents.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9659e000 - 0x9664efff com.apple.QD 3.11.54 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9664f000 - 0x9675dfff com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x9675e000 - 0x96793fff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x96794000 - 0x967fbfff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x967fc000 - 0x96b2afff com.apple.QuickTime 7.5.5 (990.7) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96b2b000 - 0x96b3bfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x96b3c000 - 0x96b57fff com.apple.ImageIO.framework 2.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96b58000 - 0x96ba7fff com.apple.datadetectorscore 1.0.2 (52.14) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x96ba8000 - 0x96c42fff com.apple.ApplicationServices.ATS 3.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96c43000 - 0x96c49fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96c4a000 - 0x96c74fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96c75000 - 0x96d2ffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x96d30000 - 0x96d3dfff com.apple.CoreGraphics 1.351.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96d3e000 - 0x96dc5fff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96df9000 - 0x96e0efff com.apple.IMUtils 4.0.5 (582) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x96e0f000 - 0x96e2ffff com.apple.ImageIO.framework 2.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96e30000 - 0x96e92fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96e93000 - 0x96e94fff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96e95000 - 0x96ea0fff com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    Brian Duff
    [email protected]
    Message was edited by: DufferCork
    Message was edited by: DufferCork
    Message was edited by: DufferCork

    Thanks for the prompt reply, I am now having problems connecting to the router on Telnet. Do I use the generic address that is on the router which is 192.168.1.1
    or do I use the DHCP address that it generates which is 192.168.1.64. Either way after numerous attemps to connect via the terminal using both of these IPs I cannot connect
    Last login: Tue Oct 21 06:53:29 on console
    You have mail.
    Duffs-Computer:~ celti$ telnet 192.168.1.1
    Trying 192.168.1.1...
    telnet: connect to address 192.168.1.1: Operation timed out
    telnet: Unable to connect to remote host
    Duffs-Computer:~ celti$ 192.168.1.64
    -bash: 192.168.1.64: command not found
    Duffs-Computer:~ celti$ telnet 192.168.1.64
    Trying 192.168.1.64...
    telnet: connect to address 192.168.1.64: Connection refused
    telnet: Unable to connect to remote host
    Duffs-Computer:~ celti$
    Any suggetsions what might be causing this conflict as I have connect to Telnet no bother in the past.

  • FCP Novice needs help with video quality and FCP 5!!

    Hi,
    I have a real problme that I cannot seem to fix. I think its because I am doing something really wrong!
    I have a Sony HC42E MiniDV Camcorder which by default records video in full widescreen. I recorded several tapes this way and have now begun trying to edit them in FCP 5.04 (Tiger 10.4.6). Whenever I log and capture my clips they appear to be fuzzzy and unclear on the Mac monitor whilst being totally crisp and sharp on the camcorder viewfinder. I tried capturing using the DV PAL 48Khz Anamorphic Preset which keeps everything the right size (the final output needs to be true widescreen and not with black bars added) but the resulting video on screen is blurry and bitty. I then tried capturing using the DV PAL 720 x 576 normal preset and the video is a little clearer on the screen (for both presets I have chosen lower field dominance) but when I play back it plays back in widescreen on the mac canvas window but at 4:3 on the camera's viewfinder.
    I then assumed that maybe this is just becuase the mac screen (CRT by the way) doesn't use fields. So I exported the sequence as a QT movie using DV PAL 16:9 and used quicktime (OS9 Classic - my compressor has never worked because of the dreaded "unable to connect to baackground process" problem which I've never managed to correct) to convert it to MPEG2. When I import this as an asset into DVD Studio pro 4 and set the track size to 16:9 it comes through at the right aspect ratio. However it looks blurry on screen. Thinking that this will be fine on a TV I burned the disc - inserted it into my DVD player (a good one!) and watched it on my new 32" widescreen TV (a good one!) and the picture qualitty is poor. Its so much blurrier and bittier than the original footage looks when played through the camcorder's viewfinder!
    The final footaage looks like an old VHS recording that's a year or two old!
    Does anyone know how I can capture my footage in FCP with the maximum quality, edit it without quality loss and the export it for DVD again without such significant quality loss whilst all the time keeping it at proper 16:9 widescreen?
    Is there some presets I should be working to?
    I'm tearing my hair out! Help!

    Hi Guys,
    thanx for your replies.
    here's the latest:
    Brian, I followed your instructions and the DVD burned successfully. However the video quality of the dvd when viewed on my TV ('ve tried on all 3 of my tvs now) is still a lot poorer than the quicktime movie that was imported into DVDSP4. When I play the original QT Movie on my Mac CRT monitor it looks a little blurry and grainy because I guess its non interlaced however when viewed on an external Video monitor it looks great - very sharp.
    When I view the burned DVD on my television the picture quality looks like the non interlaced version of the original QT Movie that appeared on my Mac CRT and not the sharp interlaced (lower field) version that appeared on my external video monitor.
    Its almost like taking a sharp jpeg into Photoshop and applying a gaussian blur of about 0.3 followed by jepg compression compressing it down to 5% quality!
    I'm totally mystified. Can the conversion to Mpeg2 be removing all interlacing so that you get the less sharp computer monitor look? I just want the video on my final DVDs to be as good as the original source footage! I appreciate that along the way there might be loss of some quality but surely not that much?
    Does this make sense to you guys or am I still doing something very wrong?
    Robert: I have tried setting all manner of drives including a fresh external firewire HD with nothing on it (clean out of the box) but it doesn't seem to help.
    Brian: I tried the no network suggestion a few months back but I'm not sure if I got it right. At the moment I have broadband through an external speedtouch usb modem and am also connected (occasionally although not for the last 3 months) via a crossover cable to my PCs ethernet card. When I last tried the No Network solution I had immense trouble getting my internet to work again! Can you please help me by directing me to the best ay to do this while protecting my internet settings?
    any more help guys would be greatfully appreciated.

Maybe you are looking for