When I take a screen recording with quicktime and i import it from imovie its red

HELP

Hi,
Both my iChat 4 and my iChat 5 Save Video Snapshots to the Desktop.
There are no settings in iChat's Preferences to change this.
There are no Settings in the version of iPhoto I have that can "grab" the pic from iChat.
The Pic is Saved as a .jpeg
I do have some jpegs edited in Photoshop Elements 6 which do appear in iPhoto as and black items In Photos but display when double clicked. (Full Window)
This seems to be an issue with the way the pic is saved by one app and not displayed properly in the other.
I am curious how you are getting the pics direct to iPhoto ?
8:48 PM      Monday; May 23, 2011
Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
 G4/1GhzDual MDD (Leopard 10.5.8)
 MacBookPro 2Gb( 10.6.7)
 Mac OS X (10.6.7),
"Limit the Logs to the Bits above Binary Images."  No, Seriously

Similar Messages

  • Recording with Quicktime and adding effect

    Hi all. I am recording Firewire video in Quicktime Player. The audio comes from a seperate source, through the line-in. To synchronize, I need to delay the audio by 600 ms. Does anyone have a method of doing so? I have an AU delay that would work. I just can't figure out how to apply it to the live lin-in.
    Thanks very much for any help.
    Jeremy

    I'll pass on some things I discovered, in case anyone has this question or anyone can add to this.
    I succeeded to some degree, by doing this:
    1. Installed Soundflower; this creates virtual sound inputs and outputs, so sound can be passed between applications.
    2. In GarageBand, I created a real instrument.
    3. Set input to Line-in
    4. Added the Voxengo Delay AU (http://www.voxengo.com/product/sounddelay) which is free and simple. The Apple AUDelay repeats the sound as well, rather than just delaying it (unless I missed something).
    5. Set GarageBand's sound output to Sountflower, and turned monitoring on.
    6. In QT player, new movie recording, with audio input set to "Soundflower".
    The good news is that I can save the GarageBand document, which can be opened and everything is immediately running. But, it would be nice if there was a way to add an effect to any input directly so that I only have to use one application.
    Any suggestions to streamline this? It is for an installation which will be run by students, so the fewer steps needed to set this up the better.

  • Screen Recording with ffmpeg/recording mic and speaker output

    I've been doing much research on this, and to be honest A/V editing is not my strong suit. I use a script I wrote two days ago to initiate both screen recording with ffmpeg and compiling the resulting mkv file with ffmpeg as well. The entire script can be seen here:
    #!/bin/bash
    #Create function to exit program
    function quite {
    if [ $ANSWER3 = "y" ]; then
    exit
    else
    exit
    fi
    #Create function to start ffmpeg record
    function record {
    if [ $ANSWER = "y" ]; then
    ffmpeg -f alsa -ac 2 -i pulse -f x11grab -r 30 -s 1366x768 -i :0.0 -acodec aac -vcodec libx264 -preset ultrafast -strict -2 -crf 0 -threads 0 $ORIGINALNAME
    else
    if [ $ANSWER = "n" ]; then
    echo "Would you like to convert an existing input file? (y/n)"
    read ANSWER4
    if [ $ANSWER4 = "y" ]; then
    ffmpeg -i $ORIGINALNAME -vcodec libx264 -acodec aac -ab 128k -crf 22 -strict -2 -threads 0 $OUTPUTFILE
    echo "The program will now exit"
    read
    exit
    else
    exit
    fi
    else
    exit
    fi
    fi
    #Function to convert the recorded video
    function convert {
    if [ $ANSWER2 = "y" ]; then
    ffmpeg -i $ORIGINALNAME -vcodec libx264 -acodec aac -ab 128k -crf 22 -strict -2 -threads 0 $OUTPUTFILE
    else
    exit
    fi
    #Change to Screen Record directory in My Videos
    cd ~/My\ Videos/Screen\ Record/
    #Clear screen, and ask for input on what to name the origional file and the converted file
    clear
    echo "Please, enter the name of your file followed by .mkv"
    read ORIGINALNAME
    echo "You're files name is $ORIGINALNAME!"
    echo "Please, enter name of the output file followed by .mp4"
    read OUTPUTFILE
    echo "You're final file is $OUTPUTFILE!"
    clear
    #Prompt for continuing with recording
    echo "Would you like to continue with screen recording?[y/n]"
    read ANSWER
    clear
    #Run the record function
    record
    #Prompt for converting the created video
    echo "Would you like to convert the file now?"
    read ANSWER2
    clear
    #Run convert function
    convert
    #Prompt to close command
    echo "Operation finished, all done."
    echo "The program will now exit."
    read ANSWER3
    For simplicities sake, and because I don't think there's a real problem with my script but something else, here's the two ffmpeg scripts from the above script:
    recorder
    ffmpeg -f alsa -ac 2 -i pulse -f x11grab -r 30 -s 1366x768 -i :0.0 -acodec aac -vcodec libx264 -preset ultrafast -strict -2 -crf 0 -threads 0 $ORIGINALNAME
    compiler
    ffmpeg -i $ORIGINALNAME -vcodec libx264 -acodec aac -ab 128k -crf 22 -strict -2 -threads 0 $OUTPUTFILE
    Anyway, I have pavucontrol used to set the recording input after I've started recording. I want to be able to record the sound of my voice on my usb headset (which works fine) and be able to hear the sound of music or a youtube video I'm also playing during the recording. I've seen the loopback mixer from Alsamixer gui and the input, output, and record tabs in pulseaudio mixer. To be honest, after researching all this stuff in ffmpeg (which is a ocmplicated program) and whatever amix, dmix,  and some other programs I'm not sure what are, I have no idea where to go anymore. I'd continue researching, but I'm only getting more confused the further I go. I'm extremely willing to learn and will follow any instructions you give to help me out. I don't just want to do this one task, like how I learned enough to write a script file, I want to be able to tweak ffmpeg to suit my needs for any purpose it can be used for. This is my first step to being able to do that. Thanks ahead of time for your help.

    OK, I've manages to learn enough about jack to not break my system and can work with that, Pulseaudio, and alsa is always installed. Is there a way I can create a virtual device that takes in the input from both the system sound and the headset mic that I can set as the audio input for ffmpeg? I've been looking online and I've got a headache at this point from trying. I have learned to use ffmpeg on a new level, but I still can't do what I want to do. (which is record sound from the headset mic and the system sound at the same time while using ffmpeg. I could make two audio files from each channel and record the screen with x11grab. then combine all that using another utility, but then I have to run three separate programs at the same time (which will eat up my cpu) and still run whatever I'm recording from my screen. Something that will do all this for me would be much appreciated.

  • No audio when uploading a screen recording via quicktime on mac to youtube.

    I've used screen recorder via quicktime for upload to youtube it has both visual and audio when I've viewed it but after uploading to youtube the audio is missing. I'm new to mac so a complete novice. Any help would be highly appreciated. Thanks.

    Hi
    This is a bit unclear to me.
    No audio when recording
    No Video-editing program I know off play any feedback (at standard settings) while recording. FinalCut is even worse that it doesn't play the sound while importing from Camera either (one need to connect speakers to the Camera-audio-out to get this)
    So first - I'm not sure if You can get audio out while recording in iMovie at all.
    BUT
    If there is no sound - When Your captured video is played back - then the problem is more severe and I would start with.
    • Trashing iMovie pref and cache files
    and see if that helps.
    Please - be more descriptive - so that one can do the same actions to see if Your problem is Yours only or if it is the same on more Macs.
    Yours Bengt W

  • I upgraded to yosemite and iOS 8 in order to record with quicktime. But when I select Record a new movies I immediately get an Operation Could not be completed error.

    I upgraded to yosemite and iOS 8 in order to record with quicktime. But when I select Record a new movies I immediately get an Operation Could not be completed error. When I choose record audio or screenshots, I get a little further, but as soon as I select my ipad as the source I get the same error message.

    You don't need to be a developer for this to work. I get the same error. Just one more thing on the list that make me upset more and more with Apple. Things just don't work out of the box like they used to.
    This new feature was to be included with iOS 8 and Yosemite.

  • Cant Capture Screen Recordings with QuickTime Player for making  App Previews

    cant Capture Screen Recordings with QuickTime Player for making  App Previews
    went into that page:
    https://developer.apple.com/app-store/app-previews/imovie/Creating-App-Previews- with-iMovie.pdf
    upgraded to quick time 7 pro
    got stuck here:
    " 4. In the window that appears, select your iOS device as the Camera and Microphone input source".
    the window appeared, no selection is possible

    The instructions in the Developer page you link contemplates that you are using the QTX version instead of QT7 Pro:
    vs.
    QT7 Pro does not allow selection of iOS devices as the Camera and Microphone
 input source.
    QTX is the QT version included with Mac OS X v10.6 Snow Leopard and later.  However, as explained in the Developer page you linked above, if your Mac is not already using it, you need to upgrade to the current (OS X 10.10 Yosemite) OS X Version to use iOS devices as the recording sources in QTX.
    Message was edited by: EZ Jim
    Mac OSX 10.10.2

  • How do I take a screen shot with my iphone 5S?

    How do I take a screen shot with my iphone 5S?

    Press the "Home" button and the sleep/wake button at the same time to take a screen shot.

  • How do I take a screen shot with MacBook Pro?

    Thought I could take a screen shot with my MacBook Pro but can't find any instructions.  Help

    Press the Shift, Command, and 3 keys to capture the entire screen.
    Press the Shift, Command, and 4 keys to capture a draggable part of the screen.
    Press the Shift, Command, and 4 keys followed by the spacebar to capture a window.
    Open the png on the desktop.
    (82116)

  • Where is a Screen Recording in QuickTime Pro?

    Where is a Screen Recording in QuickTime Pro?

    Your signature says Mac OS X 10.5.8. I am not sure that QuickTime Player screen recording is available in 10.5.8. It may have started in 10.6.
    If it works on your system, in QuickTime Player you will find these commands under the File menu:
    New Movie Recording
    New Audio Recording
    New Screen Recording
    Edit: Oh, you're asking about QuickTime Pro. Not sure, sorry.

  • How can I capture the photo shutter sound when you take a screen shot

    I want to use the Mac's shutter sound that is used when you take a screen shot or take a Photo Booth photo. I tried Audio Hijack but it doen't capture the sound. I figure this audio file must be in the system folder somewhere.

    A camera shutter sound can be found in
    HD>LIBRARY>AUDIO>APPLE LOOPS>APPLE>iLIFE SOUND EFFECTS>FOLEY

  • In power mac g5, how to take Automatic Screen Shot with Date

    in power mac g5, how to take Automatic Screen Shot with Date ?
    please help me

    If you are standing by, and activating the process by keyboard
    you could be sure to include the open Date Time menu bar
    image in a complete screenshot, using cmd shift 3. Or outline
    the area you want if not full-screen, by using cmd shift 4.
    The command button may also have an apple icon on it.
    So that's the three key shortcuts for full & partial screen.
    For a more automated method, perhaps try using software to
    run an AppleScript, like Automator. Then write a script or find
    one that you can modify to do tasks and test it.
    There may be other methods, however identifying your intent
    would be higher on the list at this time; to narrow the method.
    Good luck & happy computing!

  • Hi my name is Aditya. i am using ipad 2. 2 days ago my ipad fall down from my hand and now its screen is not working it is totally blank but shocking thing is that when i take a screen shot the display came back for 2-3 second. any one like me?

    hi my name is Aditya. i am using ipad 2. 2 days ago my ipad fall down from my hand and now its screen is not working it is totally blank but shocking thing is that when i take a screen shot the display came back for 2-3 second. dose ne 1 have same problem....?

    Anyone have any suggestions? or is everyone else just as clueless as me !

  • When i take a pitchure verdical with my iphone 5 and send it to my computer e-mal it comes sideways. if i take a pitchure haralzonal it comes ok. if i take pitchure verdical and send text message to another phone it comes ok

    when i take a pitchure verdical with my iphone5 and send it to my e-mail on my computer at home it comes sideways. if i take a pitchure haralzonal and send to my computer at  home it comes ok. if i take a pitchure verdical and text to another phone it ok. is this normal

    Wow. Yes that sounds normal. I'd worry about your spelling instead.

  • Imported video from imovie, when i try to play only have audio, screen is red and flickering

    imported video from imovie, when i try to play only have audio, screen is red and flickering.  new mac pro.

    steved
    Thanks for the reply with additional details.
    In order to help you with the Elements Organizer 13 and Premiere Elements 13 issues, we need details of that video from iMovie.
    You should be able to get the important details of the iMovie video by telling us the export settings that you used for the iMovie export.
    Minimum information..
    Video Compression
    Audio Compression
    File Extension
    Frame Size
    First, update Premiere Elements 13 and Elements Organizer 13 each to the 13.1 Update (See Help Menu/Update in an opened
    Premiere Elements 13 project.)
    We will be watching for further details in order to plan and carry out troubleshooting strategy.
    Thank you.
    ATR.

  • My MacBook Air is frozen on opening screen. With apple and thinking circle. Nothing else is happening.

    My MacBook Air is frozen on opening screen. With apple and thinking circle. Nothing else is happening.

    Mac OS X: Gray screen appears during startup
    Read and follow all the steps.
    The article makes reference to your OS X install disc. When asked to start your MacBook Air with that, use OS X Recovery.

Maybe you are looking for