Final cut 7 - how to stop video from moving around in viewer?

Hi Guys
Any suggestions would be really appreciated.
In FCP7 the diagonal crosshair 'X' (I don't want to see this X) has appeared in my viewer over the video clip I wish to drag onto my timeline.
However, after setting my in and out points as normal, when I try to drag it down, the video moves in the viewer (revealing black space).
My question is, how can I somehow 'reset' the video in the viewer window back to its locked, original position, so I can drag it down onto my timeline as I used to?

Thanks David, I appreciate it.
I also realised I had inadvertently changed the 'center' and 'scale' figures! So by resetting to zero the picture locked back in place.

Similar Messages

  • How to stop google from defaulting to mobile view?

    how do I stop google from opening up in a mobile view? It only happens when I use firefox.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Resetting_preferences

  • How to stop user from moving position of a column in a JTable

    hello,
    can anyone tell me how to disallow the user from moving the column or a row in a JTable.

    setReorderingAllowed() of JTableHeader

  • How to stop video from playing?

    Hi,
    i have a problem that i've already see that is pretty usual, the videoplayer that i have works fine but when i click in a button to go to another page the videoplayer doesn't stop,the audio continues playing even when i'm not on the videoplayer page.
    I've already found some solutions in the web but none of them worked,probably because i didn't put them in the right place
    The code is a little long:
    // ############# CONSTANTS
    // time to buffer for the video in sec.
    const BUFFER_TIME:Number                = 8;
    // start volume when initializing player
    const DEFAULT_VOLUME:Number                = 0.6;
    // update delay in milliseconds.
    const DISPLAY_TIMER_UPDATE_DELAY:int    = 10;
    // smoothing for video. may slow down old computers
    const SMOOTHING:Boolean                    = true;
    // ############# VARIABLES
    // flag for knowing if user hovers over description label
    var bolDescriptionHover:Boolean = false;
    // flag for knowing in which direction the description label is currently moving
    var bolDescriptionHoverForward:Boolean = true;
    // flag for knowing if flv has been loaded
    var bolLoaded:Boolean                    = false;
    // flag for volume scrubbing
    var bolVolumeScrub:Boolean                = false;
    // flag for progress scrubbing
    var bolProgressScrub:Boolean            = false;
    // holds the number of the active video
    var intActiveVid:int;
    // holds the last used volume, but never 0
    var intLastVolume:Number                = DEFAULT_VOLUME;
    // net connection object for net stream
    var ncConnection:NetConnection;
    // net stream object
    var nsStream:NetStream;
    // object holds all meta data
    var objInfo:Object;
    // shared object holding the player settings (currently only the volume)
    var shoVideoPlayerSettings:SharedObject = SharedObject.getLocal("playerSettings");
    // url to flv file
    var strSource:String                    = root.loaderInfo.parameters.playlist == null ? "playlist.xml" : root.loaderInfo.parameters.playlist;
    // timer for updating player (progress, volume...)
    var tmrDisplay:Timer;
    // loads the xml file
    var urlLoader:URLLoader;
    // holds the request for the loader
    var urlRequest:URLRequest;
    // playlist xml
    var xmlPlaylist:XML;
    // ############# STAGE SETTINGS
    stage.scaleMode    = StageScaleMode.NO_SCALE;
    stage.align        = StageAlign.TOP_LEFT;
    // ############# FUNCTIONS
    // sets up the player
    function initVideoPlayer():void {
        // hide video controls on initialisation
        mcVideoControls.visible = false;
        // hide buttons
        mcVideoControls.btnUnmute.visible            = false;
        mcVideoControls.btnPause.visible            = false;
        mcVideoControls.btnFullscreenOff.visible    = false;
        // set the progress/preload fill width to 1
        mcVideoControls.mcProgressFill.mcFillRed.width    = 1;
        mcVideoControls.mcProgressFill.mcFillGrey.width    = 1;
        // set time and duration label
        mcVideoControls.lblTimeDuration.htmlText        = "<font color='#ffffff'>00:00</font> / 00:00";
        // add global event listener when mouse is released
        stage.addEventListener(MouseEvent.MOUSE_UP, mouseReleased);
        // add fullscreen listener
        stage.addEventListener(FullScreenEvent.FULL_SCREEN, onFullscreen);
        // add event listeners to all buttons
        mcVideoControls.btnPause.addEventListener(MouseEvent.CLICK, pauseClicked);
        mcVideoControls.btnPlay.addEventListener(MouseEvent.CLICK, playClicked);
        mcVideoControls.btnStop.addEventListener(MouseEvent.CLICK, stopClicked);
        mcVideoControls.btnNext.addEventListener(MouseEvent.CLICK, playNext);
        mcVideoControls.btnPrevious.addEventListener(MouseEvent.CLICK, playPrevious);
        mcVideoControls.btnMute.addEventListener(MouseEvent.CLICK, muteClicked);
        mcVideoControls.btnUnmute.addEventListener(MouseEvent.CLICK, unmuteClicked);
        mcVideoControls.btnFullscreenOn.addEventListener(MouseEvent.CLICK, fullscreenOnClicked);
        mcVideoControls.btnFullscreenOff.addEventListener(MouseEvent.CLICK, fullscreenOffClicked);
        mcVideoControls.btnVolumeBar.addEventListener(MouseEvent.MOUSE_DOWN, volumeScrubberClicked);
        mcVideoControls.mcVolumeScrubber.btnVolumeScrubber.addEventListener(MouseEvent.MOUSE_DOWN , volumeScrubberClicked);
        mcVideoControls.btnProgressBar.addEventListener(MouseEvent.MOUSE_DOWN, progressScrubberClicked);
        mcVideoControls.mcProgressScrubber.btnProgressScrubber.addEventListener(MouseEvent.MOUSE_ DOWN, progressScrubberClicked);
        mcVideoControls.mcVideoDescription.btnDescription.addEventListener(MouseEvent.MOUSE_OVER, startDescriptionScroll);
        mcVideoControls.mcVideoDescription.btnDescription.addEventListener(MouseEvent.MOUSE_OUT, stopDescriptionScroll);
        // create timer for updating all visual parts of player and add
        // event listener
        tmrDisplay = new Timer(DISPLAY_TIMER_UPDATE_DELAY);
        tmrDisplay.addEventListener(TimerEvent.TIMER, updateDisplay);
        // create a new net connection, add event listener and connect
        // to null because we don't have a media server
        ncConnection = new NetConnection();
        ncConnection.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
        ncConnection.connect(null);
        // create a new netstream with the net connection, add event
        // listener, set client to this for handling meta data and
        // set the buffer time to the value from the constant
        nsStream = new NetStream(ncConnection);
        nsStream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
        nsStream.client = this;
        nsStream.bufferTime = BUFFER_TIME;
        // attach net stream to video object on the stage
        vidDisplay.attachNetStream(nsStream);
        // set the smoothing value from the constant
        vidDisplay.smoothing = SMOOTHING;
        // set default volume and get volume from shared object if available
        var tmpVolume:Number = DEFAULT_VOLUME;
        if(shoVideoPlayerSettings.data.playerVolume != undefined) {
            tmpVolume = shoVideoPlayerSettings.data.playerVolume;
            intLastVolume = tmpVolume;
        // update volume bar and set volume
        mcVideoControls.mcVolumeScrubber.x = (53 * tmpVolume) + 318;
        mcVideoControls.mcVolumeFill.mcFillRed.width = mcVideoControls.mcVolumeScrubber.x - 371 + 53;
        setVolume(tmpVolume);
        // create new request for loading the playlist xml, add an event listener
        // and load it
        urlRequest = new URLRequest(strSource);
        urlLoader = new URLLoader();
        urlLoader.addEventListener(Event.COMPLETE, playlistLoaded);
        urlLoader.load(urlRequest);
    function playClicked(e:MouseEvent):void {
        // check's, if the flv has already begun
        // to download. if so, resume playback, else
        // load the file
        if(!bolLoaded) {
            nsStream.play(strSource);
            bolLoaded = true;
        else{
            nsStream.resume();
        vidDisplay.visible = true;
        // switch play/pause visibility
        mcVideoControls.btnPause.visible    = true;
        mcVideoControls.btnPlay.visible        = false;
    function pauseClicked(e:MouseEvent):void {
        // pause video
        nsStream.pause();
        // switch play/pause visibility
        mcVideoControls.btnPause.visible    = false;
        mcVideoControls.btnPlay.visible        = true;
    function stopClicked(e:MouseEvent):void {
        // calls stop function
        stopVideoPlayer();
    function muteClicked(e:MouseEvent):void {
        // set volume to 0
        setVolume(0);
        // update scrubber and fill position/width
        mcVideoControls.mcVolumeScrubber.x                = 318;
        mcVideoControls.mcVolumeFill.mcFillRed.width    = 1;
    function unmuteClicked(e:MouseEvent):void {
        // set volume to last used value or DEFAULT_VOLUME if last volume is zero
        var tmpVolume:Number = intLastVolume == 0 ? DEFAULT_VOLUME : intLastVolume
        setVolume(tmpVolume);
        // update scrubber and fill position/width
        mcVideoControls.mcVolumeScrubber.x = (53 * tmpVolume) + 318;
        mcVideoControls.mcVolumeFill.mcFillRed.width = mcVideoControls.mcVolumeScrubber.x - 371 + 53;
    function volumeScrubberClicked(e:MouseEvent):void {
        // set volume scrub flag to true
        bolVolumeScrub = true;
        // start drag
        mcVideoControls.mcVolumeScrubber.startDrag(true, new Rectangle(318, 19, 53, 0)); // NOW TRUE
    function progressScrubberClicked(e:MouseEvent):void {
        // set progress scrub flag to true
        bolProgressScrub = true;
        // start drag
        mcVideoControls.mcProgressScrubber.startDrag(true, new Rectangle(0, 2, 432, 0)); // NOW TRUE
    function mouseReleased(e:MouseEvent):void {
        // set progress/volume scrub to false
        bolVolumeScrub        = false;
        bolProgressScrub    = false;
        // stop all dragging actions
        mcVideoControls.mcProgressScrubber.stopDrag();
        mcVideoControls.mcVolumeScrubber.stopDrag();
        // update progress/volume fill
        mcVideoControls.mcProgressFill.mcFillRed.width    = mcVideoControls.mcProgressScrubber.x + 5;
        mcVideoControls.mcVolumeFill.mcFillRed.width    = mcVideoControls.mcVolumeScrubber.x - 371 + 53;
        // save the volume if it's greater than zero
        if((mcVideoControls.mcVolumeScrubber.x - 318) / 53 > 0)
            intLastVolume = (mcVideoControls.mcVolumeScrubber.x - 318) / 53;
    function updateDisplay(e:TimerEvent):void {
        // checks, if user is scrubbing. if so, seek in the video
        // if not, just update the position of the scrubber according
        // to the current time
        if(bolProgressScrub)
            nsStream.seek(Math.round(mcVideoControls.mcProgressScrubber.x * objInfo.duration / 432))
        else
            mcVideoControls.mcProgressScrubber.x = nsStream.time * 432 / objInfo.duration;
        // set time and duration label
        mcVideoControls.lblTimeDuration.htmlText        = "<font color='#ffffff'>" + formatTime(nsStream.time) + "</font> / " + formatTime(objInfo.duration);
        // update the width from the progress bar. the grey one displays
        // the loading progress
        mcVideoControls.mcProgressFill.mcFillRed.width    = mcVideoControls.mcProgressScrubber.x + 5;
        mcVideoControls.mcProgressFill.mcFillGrey.width    = nsStream.bytesLoaded * 438 / nsStream.bytesTotal;
        // update volume and the red fill width when user is scrubbing
        if(bolVolumeScrub) {
            setVolume((mcVideoControls.mcVolumeScrubber.x - 318) / 53);
            mcVideoControls.mcVolumeFill.mcFillRed.width = mcVideoControls.mcVolumeScrubber.x - 371 + 53;
        // chech if user is currently hovering over description label
        if(bolDescriptionHover) {
            // check in which direction we're currently moving
            if(bolDescriptionHoverForward) {
                // move to the left and check if we've shown everthing
                mcVideoControls.mcVideoDescription.lblDescription.x -= 0.1;
                if(mcVideoControls.mcVideoDescription.lblDescription.textWidth - 133 <= Math.abs(mcVideoControls.mcVideoDescription.lblDescription.x))
                    bolDescriptionHoverForward = false;
            } else {
                // move to the right and check if we're back to normal
                mcVideoControls.mcVideoDescription.lblDescription.x += 0.1;
                if(mcVideoControls.mcVideoDescription.lblDescription.x >= 0)
                    bolDescriptionHoverForward = true;
        } else {
            // reset label position and direction variable
            mcVideoControls.mcVideoDescription.lblDescription.x = 0;
            bolDescriptionHoverForward = true;
    function onMetaData(info:Object):void {
        // stores meta data in a object
        objInfo = info;
        // now we can start the timer because
        // we have all the neccesary data
        if(!tmrDisplay.running)
            tmrDisplay.start();
    function netStatusHandler(event:NetStatusEvent):void {
        // handles net status events
        switch (event.info.code) {
            // trace a messeage when the stream is not found
            case "NetStream.Play.StreamNotFound":
                trace("Stream not found: " + strSource);
            break;
            // when the video reaches its end, we check if there are
            // more video left or stop the player
            case "NetStream.Play.Stop":
                if(intActiveVid + 1 < xmlPlaylist..vid.length())
                    playNext();
                else
                    stopVideoPlayer();
            break;
    function stopVideoPlayer():void {
        // pause netstream, set time position to zero
        nsStream.pause();
        nsStream.seek(0);
        // in order to clear the display, we need to
        // set the visibility to false since the clear
        // function has a bug
        vidDisplay.visible                    = false;
        // switch play/pause button visibility
        mcVideoControls.btnPause.visible    = false;
        mcVideoControls.btnPlay.visible        = true;
    function setVolume(intVolume:Number = 0):void {
        // create soundtransform object with the volume from
        // the parameter
        var sndTransform        = new SoundTransform(intVolume);
        // assign object to netstream sound transform object
        nsStream.soundTransform    = sndTransform;
        // hides/shows mute and unmute button according to the
        // volume
        if(intVolume > 0) {
            mcVideoControls.btnMute.visible        = true;
            mcVideoControls.btnUnmute.visible    = false;
        } else {
            mcVideoControls.btnMute.visible        = false;
            mcVideoControls.btnUnmute.visible    = true;
        // store the volume in the flash cookie
        shoVideoPlayerSettings.data.playerVolume = intVolume;
        shoVideoPlayerSettings.flush();
    function formatTime(t:int):String {
        // returns the minutes and seconds with leading zeros
        // for example: 70 returns 01:10
        var s:int = Math.round(t);
        var m:int = 0;
        if (s > 0) {
            while (s > 59) {
                m++; s -= 60;
            return String((m < 10 ? "0" : "") + m + ":" + (s < 10 ? "0" : "") + s);
        } else {
            return "00:00";
    function fullscreenOnClicked(e:MouseEvent):void {
        // go to fullscreen mode
        stage.displayState = StageDisplayState.FULL_SCREEN;
    function fullscreenOffClicked(e:MouseEvent):void {
        // go to back to normal mode
        stage.displayState = StageDisplayState.NORMAL;
    function onFullscreen(e:FullScreenEvent):void {
        // check if we're entering or leaving fullscreen mode
        if (e.fullScreen) {
            // switch fullscreen buttons
            mcVideoControls.btnFullscreenOn.visible = false;
            mcVideoControls.btnFullscreenOff.visible = true;
            // bottom center align controls
            mcVideoControls.x = (Capabilities.screenResolutionX - 440) / 2;
            mcVideoControls.y = (Capabilities.screenResolutionY - 33);
            // size up video display
            vidDisplay.height     = (Capabilities.screenResolutionY - 33);
            vidDisplay.width     = vidDisplay.height * 4 / 3;
            vidDisplay.x        = (Capabilities.screenResolutionX - vidDisplay.width) / 2;
        } else {
            // switch fullscreen buttons
            mcVideoControls.btnFullscreenOn.visible = true;
            mcVideoControls.btnFullscreenOff.visible = false;
            // reset controls position
            mcVideoControls.x = 0;
            mcVideoControls.y = 330;
            // reset video display
            vidDisplay.y = 0;
            vidDisplay.x = 0;
            vidDisplay.width = 440;
            vidDisplay.height = 241;
    function playlistLoaded(e:Event):void {
        // create new xml with loaded data from loader
        xmlPlaylist = new XML(urlLoader.data);
        // set source of the first video but don't play it
        playVid(0, true)
        // show controls
        mcVideoControls.visible = true;
    function playVid(intVid:int = 0, bolPlay = true):void {
        if(bolPlay) {
            // stop timer
            tmrDisplay.stop();
            // play requested video
            nsStream.play(String(xmlPlaylist..vid[intVid].@src));
            // switch button visibility
            mcVideoControls.btnPause.visible    = true;
            mcVideoControls.btnPlay.visible        = false;
        } else {
            strSource = xmlPlaylist..vid[intVid].@src;
        // show video display
        vidDisplay.visible                    = true;
        // reset description label position and assign new description
        mcVideoControls.mcVideoDescription.lblDescription.x = 0;
        mcVideoControls.mcVideoDescription.lblDescription.htmlText = (intVid + 1) + ". <font color='#ffffff'>" + String(xmlPlaylist..vid[intVid].@desc) + "</font>";
        // update active video number
        intActiveVid = intVid;
    function playNext(e:MouseEvent = null):void {
        // check if there are video left to play and play them
        if(intActiveVid + 1 < xmlPlaylist..vid.length())
            playVid(intActiveVid + 1);
    function playPrevious(e:MouseEvent = null):void {
        // check if we're not and the beginning of the playlist and go back
        if(intActiveVid - 1 >= 0)
            playVid(intActiveVid - 1);
    function startDescriptionScroll(e:MouseEvent):void {
        // check if description label is too long and we need to enable scrolling
        if(mcVideoControls.mcVideoDescription.lblDescription.textWidth > 138)
            bolDescriptionHover = true;
    function stopDescriptionScroll(e:MouseEvent):void {
        // disable scrolling
        bolDescriptionHover = false;
    // ############# INIT PLAYER
    initVideoPlayer();

    No,im not using flvplayback component (i think).
    Heres the video player that i'm using:
    http://www.thetechlabs.com/tutorials/xml/expanding-the-as3-videoplayer/

  • How to stop video from playing while working on menu

    I have some menus with a bunch of moving video clips in drop zones in them. After some fiddling around with preferences, the clips are playing while working on the menus rather than just showing still images. I havent seen this behavior before.
    Anyway, its making it excruciatingly, hair pullingly, jump out the windowly, eventually the app does not respondly slow to do any work in the app. Anyone know what stupid setting we must have changed?
    thx

    Thx for the speedy reply. I'm not sure what was happening, but thankfully the app was so overwhelmed that I had to force quit it. Aside from losing my recent changes (aarrggh why no autosave in dvdsp) it was a blessing because on opening the app again, problem gone. Didnt have to jump afterall. I'll try some experiments with those keystrokes once the app is done rendering these menus.

  • How to stop videos from automatically playing in safari?

    Recently, when I open various web pages in Safari 7.0.6, running OS 10.9.4 videos will start playing immediately.  Sometimes 4 or 5 on one page all at once.  I did a search for this issue and found the suggestion to run click to flash.  I have it installed and turn on so that isn't a solution at this time.  Another suggestion was for clicktoplugin but I do not find one with that name.
    This is very annoying as they often come on very loudly and I have to scroll up and down the page trying to find the window or windows with the videos playing.  They can be way down at the bottom of the pages.
    Can anyone help me fix this?
    Michelle

    Click to Plugin is what I use. It is available here:
    http://hoyois.github.io/safariextensions/clicktoplugin/
    I set the preferences to pre-load but NOT play even after I click  on something I want to see.

  • How do stop videos from repeating, replaying themselves?

    Recently, whenever I finished watching a video, it automatically starts over!  (Happens with YouTube videos, Flash videos, videos on news sites, etc.)
    It's quite annoying.  I can start reading the associated story--or move to another page--and all of a sudden I start hearing the same video, and when I scroll back up I'll discover that it's replaying itself!
    Is there any way of turning that OFF?!

    Install the ClickToPlugin Safari extension.

  • In Final Cut Pro x, Somehow my video got muted and I can't find a way to UNMUTE it! (it won't let me manually lift up or down the waveform - nor go in and raise the level of loudness) Any suggestions? (How to unmute)

    In Final Cut Pro x, Somehow my video got muted and I can't find a way to UNMUTE it!
    (it won't let me manually lift up or down the waveform - nor go in and raise the level of loudness)
    Any suggestions? (How to unmute)

    Do you know how to use the volume adjustment line?
    If so, is it not working?
    Can you post a screenshot of your audio?

  • Does anyone know how to get final cut pro x to stop lagging?

    Does anyone know how to get final cut pro x to stop lagging?

    Two things: 1) MORE RAM.
    2) What hard drive?
    I am sorry if this sounds harsh, but the bare minimum to get decent performance out of FCP X is 8GB.
    If you mac supports more, even better - go to 12GB or 16GB.
    Also, the hard drive? Are you editing on the internal drive? That is also a bottleneck. The system drive should not also be used as a media drive; plus, depending on model, it may not be very fast drive to begin with.
    You should use an external drive with a fast enough connection - USB3 or Thunderbolt, if possible; FW800 as a distant third. USB2 may also work, albeit it is a relatively slow connection.
    Message was edited by: Luis Sequeira1

  • Macbook, Final Cut Express and Canon 5D video files

    Hello everyone.
    I intend to purchase my first Apple Mac soon. It will probably be the Aluminium Macbook with 4GB RAM.
    I am an avid photographer and use the Canon EOS 5D Mark II. I can handle all the processing of the still photographs without a problem but I would like to take advantage of the cameras HD video capability. I know nothing about video editing but I have read that Final Cut is about the best video editor out there. My PC struggles to even play the movies from my camera, let alone edit them.
    I have the following questions that I hope some of you can answer:
    1. Will the standard Macbook with 4GB RAM be able to handle and edit the large video files (1.2GB for a 5 minute video clip)? I would prefer not to buy the Macbook Pro if possible. The computer will only be used for video editing occasionally. I will not be making 90 minute Hollywood style productions... just 5 minute short films once in a while.
    2. Does the cheapest version of Final Cut (Final Cut Express) handle files from the Canon 5D2?
    3. I know the video from the Canon 5D2 is generally disliked because it is 30fps and is in a strange format. However, I am not able to change this and I will not be buying a dedicated video camera as I rarely shoot video. So, I need to know if the Macbook and Final Cut Express can do the business with these files. Do you have any advice on how to handle the 5D2 files?
    Any advice greatly appreciated.

    Will the standard Macbook with 4GB RAM be able to handle and edit the large video files (1.2GB for a 5 minute video clip)?
    Yes. You have a lot of hard-drive space with the Macbook Aluminum, so that shouldn't be an issue but you might consider using an external hard-drive to store your media if you ever start making longer movies. To tell you the truth, the Macbook with 2GB of RAM would probably work just as well. I recently upgraded mine and it didn't make much of a difference. Either way though, the Macbook should work fine with Final Cut, mine does. You might consider getting the one with the 2.4GHz processor, I have the feeling that will make more of a difference when editing than the extra RAM.
    Does the cheapest version of Final Cut (Final Cut Express) handle files from the Canon 5D2?
    Sort of, but it doesn't edit them natively. You can either drop the files in the timeline and render it out and it will work, or, if you don't want to render whenever you make a change, a better technique would be to first convert the clips using an application like the free [MPEG Streamclip|http://www.squared5.com> to something FCE can edit natively such as Apple Intermediate Codec. It's not as simple as drag-and-drop, but it will work.
    Do you have any advice on how to handle the 5D2 files?
    See above. I recommend the Streamclip conversion over the rendering though. If you have a lot of files to convert, Streamclip has a batch conversion setting so you can set what to convert to once and Streamclip will convert all the files. Converted files can then be edited in FCE without any particular problems.
    You should convert using these settings:
    Compression: +Apple Intermediate Codec for HD or DV-NTSC for SD+
    *Frame Size:* +(A supported FCE frame size, for example 1920x1080, 1440x1080, 720x480, etc. The supported frame size you choose should be as close to your original frame size as possible)+
    *Frame Rate:* 29.97
    Sound: +Uncompressed Stereo 48kHz+
    Keep in mind that the Macbook Aluminum lacks a Firewire port, so if that is detrimental to your use you should consider getting the white Macbook or the Macbook Pro. I believe the Canon 5D Mark II uses USB for transfer though, so it shouldn't be that much of a problem.

  • How to delete video from iTunes library

    Hello, I've only had my ipod for a few weeks now. I've finaly figured out how to rip dvds/encode them, etc. During this trial and error period I was putting all kinds of junk in my itunes library.
    My question is how to remove videos from my itunes library.
    ..one more question.
    I've been using a dvd ripper and video converter made by Xilisoft. After I import the movie from my pc to itunes video library and ipod, I've noticed that the audio doesn't match up with the video. Its like watching a poorly dubbed kung fu movie. Has anybody used Xilisoft software and had the same problems? If so, what did you do to recify the problem?
    Thanks in advance for any help.
    self-built   Windows XP Pro  

    OK, I finally figured it out. I still don't have the clear option available. I had to double click on video, highlight, then press delete.
    I'm curious why I don't have a clear option like I do in library.
    Oh well, at least I can delete old files from my itunes now.
    Thanks for the quick responses.

  • I have itunes set up to sync with my Ipod Touch and my Ipad.  As of today, it keeps looking for an iPhone to sync with and give me an error message.  I don't have an iPhone and don't know how to stop it from popping open with this error message.

    I have Itunes set up to sync with my Ipod touch and Ipad.  As of today, iTunes has started searching to sync with an iPhone, which I don't have and pops open with an error message stating it cannot locate the iPhone to sync.  I have looked in devices and only the iPad and iPod Touch are listed.  Any ideas on how to stop iTunes from searching for any iPhone it is never going to find? It is annoying to have it popping up all the time with the error message.  Thanks in advance for any suggestions.

    You should really read the manual.
    "How do you restore from backup? "
    Restore.  When given the choice, choose to use backup.
    "And how can I check to see if the pics and videos are on my computer somewhere first??"
    They would only be where you put them.  What program did you use to import them?  Pics/vids taken with ipod are not part of the sync process at all.  You should be importing them just as you would with any digital camera.
    If you did not import them, then they are not on your computer.

  • How to delete video from iTunes library? del and shift+del are not working - no any reaction

    how to delete video from iTunes library? del and shift+del are not working - no any reaction.

    seb963 wrote:
    Hi
    Currently, iMatch is turned off on my computer, as I do not want to upload any more songs. If I turn it on, will it upload all songs that are currently in my library? Is there another way that deleting them one by one?
    You must enable iTunes Match on the new computer. The best way to accomplish what you want to do is to create a new, empty library by launching iTunes while holding down the Option key (Shift on Windows) and choosing "new library." Do not let iTunes scan for new content, but do enable iTunes Match on the empty library. Once the scan is finished you may delete tracks from the cloud. When you are done switch back to the main iTunes library.

  • How to transfer video from hard disk to i tune?

    how to transfer video from hard disk to i tune? can any one please?? help me also in guiding if  anything else is required to be done to transfer the content to ipad....

    Drag it into the open iTunes application window. You may need to use a product such as MPEG Streamclip to convert it to MPEG-4 first.
    (59829)

  • How to transfer video from macbook to ipad2

    How to transfer video from macbook to ipad2

    Haryati-
    I found your question while researching another one on the same topic.  I found it hard to believe that iPad videos could not be transfered to a computer!
    I made a short video on my iPad 2.  It showed up in the Photos camera roll.
    Running iPhoto and connecting the iPad to my Mac Pro, I selected the iPad under DEVICES.  The video was at the end of the photos, I selected it and clicked on "Import Selected".  I then dragged the imported video to my desktop and it played in QuickTime Player when I double-clicked it.
    Then I tried it with Aperture.  The dragged copy appeared to play in QuickTime Player, but the screen was black.  However an Exported Version played correctly.
    Fred

Maybe you are looking for

  • Object Replacement with the existing one int the Serialization Stream..

    when u readObject() from serialization its fine,but if u change any of its fields or value of variable and than store it back,it append new object to the Serialization Stream. I want to store that object back to its original position in the stream. p

  • After Full Restore from Time Machine..

    Hello All! I've searched around but can't find the solution.. Unfortunately there was a terrible accident with my last Macbook Pro so I purchased a new one... I did a full install using Migration Assistant to replace my User account from Time Machine

  • Applet witing to file

    I have a quick question. I have a signed applet. In the applet I am trying to write to a file FileOutputStream out = new FileOutputStream(m_File) this throws an error. Even though the applet is signed. I found this information: In Java2 JDK1.2, readi

  • Can't see my itunes movies...

    I've done a search but can't find my answer to this question. How can you view your movies? I created movies in iMovie and shared them with iTunes. When I click on 'movies' in itunes I see my movies, but when I play them I only hear sound; I can't se

  • Query on transaction type and BP monitor

    hi Friends what is the transaction type for sourcing and credit memo query on supplier and bp monitor. Are they one and the same. or Is supplier monitor is in Sus side and bp monitor is in EBP side. Regards Simha