How to download from Canon HF20 to FCE

I was having so much trouble downloading from my camera to FCE using MiniDV tapes that I bought the Canon Vixia HF20 thinking that flash would transfer better. Can someone tell me what settings I would use to do this. I still have time to return the camera if it does not work with FCE 4.
Thanks in advance.
Jon

Getting there but not quite there yet. I found the gear in Log an Transfer and changed the setting.
I found the frame rate setting on the camera and was able to set it at 30fps. I am hoping that is close enough to the one you mentioned (29.97).
I am wondering about the frame size. Can you tell me the relative benefit of choosing one over the other?
And I don't see the setting for Audio on the camera. I can get into the audio recording level but it does not display the setting. I can just move the slider up or down.
I really appreciate all the help!
Jon

Similar Messages

  • Files recently downloaded from Canon Legeria FS306 do not play the audio. Can hear audio on camera or downloading same files to a PC. Also hear audio on earlier files downloaded from same camera to iMovie '11. How do I avoid problem & recover lost audio?

    Files recently downloaded from Canon Legeria FS306 to iMovie '11 do not play the audio. I can still hear audio on the camera or by downloading the same files to a PC. Can also hear audio on earlier files downloaded from the same camera to iMovie '11. How do I avoid this problemand recover lthe ost audio?

    The first thing to try is to run Software Update (the Update tab in the Mac App Store.). This was an issue a couple of releases ago, and an update seemed to fix it.
    If you are already at the most recent version of iMovie, then I don't know how to solve you issue. Maybe someone else will have some ideas.

  • How to download from spool to application server

    Hi all,
       Can any one tell me how to download from spool to application server. Quick response would be appreciated.
    thanks
    mahesh

    Hi Kilaru,
    Please find the sample code for your req,t and let me know if you found any difficulty on the same.
    <b>Just copy paste the code :</b>
    This will Convert spool to PDF format and download.
    data: w_ident     like tsp01-rqident,
          w_doctype   like tsp01-rqdoctype,
          w_bytecount type i.
    data: itab_pdf    like tline occurs 0 with header line.
    parameter spoolnum like tsp01-rqident obligatory.
    selection-screen begin of block a2 with frame.
    parameters:  to_pc   radiobutton group a2 default 'X',
                 pcfile like rlgrap-filename lower case,
                 to_unix radiobutton group a2,
                 unixfile(255) lower case.
    selection-screen end of block a2.
    at selection-screen on block a2.
      if to_pc = 'X' and pcfile is initial.
        message e398(00) with 'Enter PC File Name.'.
      elseif to_unix = 'X' and unixfile is initial.
        message e398(00) with 'Enter Unix File Name.'.
      endif.
    at selection-screen on spoolnum.
      select single rqident rqdoctype
             into (w_ident, w_doctype)
             from tsp01
             where rqident = spoolnum.
      if sy-subrc ne 0.
        message e398(00) with 'Spool' spoolnum 'not found'.
      endif.
    at selection-screen on value-request for pcfile.
      call function 'WS_FILENAME_GET'
           exporting
                mask     = ',.,..'
           importing
                filename = pcfile
           exceptions
                others   = 1.
      if sy-subrc <> 0.
        message id sy-msgid type 'I' number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    start-of-selection.
      if w_doctype = 'LIST'.
        perform get_abap_spool_in_pdf.
      elseif w_doctype = 'OTF'.
        perform get_otf_spool_in_pdf.
      endif.
      if to_pc = 'X'.
        perform write_pdf_spool_to_pc.
      else.
        perform write_pdf_spool_to_unix.
      endif.
      message i398(00) with 'Completed OK'.
    form get_abap_spool_in_pdf.
      refresh itab_pdf.
      call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
           exporting
                src_spoolid              = w_ident
           importing
                pdf_bytecount            = w_bytecount
           tables
                pdf                      = itab_pdf
           exceptions
                err_no_abap_spooljob     = 1
                err_no_spooljob          = 2
                err_no_permission        = 3
                err_conv_not_possible    = 4
                err_bad_destdevice       = 5
                user_cancelled           = 6
                err_spoolerror           = 7
                err_temseerror           = 8
                err_btcjob_open_failed   = 9
                err_btcjob_submit_failed = 10
                err_btcjob_close_failed  = 11
                others                   = 12.
      if sy-subrc ne 0.
    message e398(00) with 'Cannot convert to PDF. Error =' sy-subrc.
      endif.
    endform.
    *********************************************************form get_otf_spool_in_pdf.
      refresh itab_pdf.
      call function 'CONVERT_OTFSPOOLJOB_2_PDF'
           exporting
                src_spoolid              = w_ident
           importing
                pdf_bytecount            = w_bytecount
           tables
                pdf                      = itab_pdf
           exceptions
                err_no_otf_spooljob      = 1
                err_no_spooljob          = 2
                err_no_permission        = 3
                err_conv_not_possible    = 4
                err_bad_dstdevice        = 5
                user_cancelled           = 6
                err_spoolerror           = 7
                err_temseerror           = 8
                err_btcjob_open_failed   = 9
                err_btcjob_submit_failed = 10
                err_btcjob_close_failed  = 11
                others                   = 12.
      if sy-subrc <> 0.
    message e398(00) with 'Cannot convert to PDF. Error =' sy-subrc.
      endif.
    endform.
    *********************************************************form write_pdf_spool_to_unix.
      open dataset unixfile for output in binary mode.
      if sy-subrc ne 0 .
        message e398(00) with 'Cannot open unix file for output:' unixfile.
      endif.
      loop at itab_pdf.
        transfer itab_pdf to unixfile.
        if sy-subrc ne 0 .
          message e398(00) with 'Cannot write to unix file:' unixfile.
        endif.
      endloop.
      close dataset unixfile.
    endform.
    *********************************************************form write_pdf_spool_to_pc.
      call function 'WS_DOWNLOAD'
           exporting
                bin_filesize            = w_bytecount
                filename                = pcfile
                filetype                = 'BIN'
           tables
                data_tab                = itab_pdf
           exceptions
                file_open_error         = 1
                file_write_error        = 2
                invalid_filesize        = 3
                invalid_type            = 4
                no_batch                = 5
                unknown_error           = 6
                invalid_table_width     = 7
                gui_refuse_filetransfer = 8
                customer_error          = 9
                others                  = 10.
      if sy-subrc <> 0.
    message e398(00) with 'Cannot download to PC. Error =' sy-subrc.
      endif.
    endform.
    Hope this will help you.
    Cheers
    Sunny
    Rewrd points, if found helpful

  • How to download from hewlett packard

    can any one tell me how to download from HP as i need to update my printers WIFI connection as i have just got a new home hub?

    I'm not sure that a download would be required, but if it is the following would be the starting point: http://www8.hp.com/us/en/drivers.html

  • How to download from a non-apple laptop to ipad

    How to download from a non-apple laptop to ipad

    Apple or Windows PC its done the same way.  Through iTunes.
    http://itunes.apple.com

  • How to download from I-Tunes on a USB stick

    How to download from I-Tunes on a USB stick

    Drag a song which is already in your collection from your music list in iTunes to the USB stick. If you want to purchase a new song you will have to do so in iTunes first then drag it to the USB stick.

  • How to How to download from without getting error code 1009?

    How to How to download from without getting error code 1009?

    I get the same error message on my Mac Book Air 13" Mac OS X and iphone 4 accessing internet via 3.5G modem and Edge / GPRS esprectively.  I'm in Sudan now, wasn't getting this message in Ethiopia.  Using Itunes store location for UK.  Could it be an IP blocking issue and if so any ideas of a work around?
    Thanks

  • HT1491 would like to know how to download from new computer to ipod

    how to download from new computer to ipid

    Hi there,
    You may find the article below helpful.
    iTunes 11 for Mac: Set up syncing for iPod, iPhone, or iPad
    http://support.apple.com/kb/PH12113
    iTunes 11 for Windows: Set up syncing for iPod, iPhone, or iPad
    http://support.apple.com/kb/PH12313
    -Griff W.

  • How can I download video from Canon HF20?

    Please help me. I just need to download video from my new Canon HF20 to my computer. I hear you can use imovie 08 but how?

    I have a Canon HF11, but I imagine the problem is similar. I'm working with iMovie '08 on a Dual 2 GHz PowerPC G5 with 3 GB of RAM. I normally import from an old Sony TVR530 (flawlessly).
    This is apparently the deal with iMovie '08 and Mpeg-2 Camcorders... Apple stinks at working with them (at least for my setup).
    The files are .MOD, which is just Mpeg-2; no problem. You connect the camera and it auto-recognizes the FS11 (in my case), but doesn't begin import. You select a manual "movie import" and it says there are no files to import (there were 187 files in the folder). Very frustrating.
    BUT! It will recognize the movies EVENTUALLY. Yes, it's true. Just connect the camera and wait a good 10 - 15 minutes and it will finally come up with the import clip window. Not that you're in a hurry or anything. THEN, to rub salt in that wound, it takes minutes to import seconds of video. I have a 14 second clip that took 3 minutes to import. FOURTEEN SECONDS! All these little basketball game clips are going to take an HOUR to import (according to the application).
    My first pass resulted in an import of about 21 clips before iMovie crashed. I'm trying again now and HOPING the imported video will not show degradation when it's all done. I'll let you know.
    (I'm still mad that my wife's PowerBook 1.5 GHz cannot play a simple YouTube video without looking like a 10 fps flipbook animation. GET IT TOGETHER APPLE! You're supposed to be the multimedia guys!)

  • IPhoto 6.0.5 failure to download from Canon Rebet XT

    I have not had any trouble prior to the latest upgrade. Since then, iPhoto will recognize the Canon and the number of photos to download. But it will not download. I called Canon tech spt who said I was the 3rd call they had received on the subject. They took me thru Image Capture which downloaded the photos which then had to be copied into iPhoto.
    Is Apple working this problem?

    cavw
    1. Your problems bagan in July? Did you manage to
    actually update to 6.0.5? Your problem dates from
    before 6.0.5
    2. That's a Kernal Panic you're having. Do you get
    them at other times, or only on launching iPhoto?
    3. KP's are often Hardware related. What peripherals
    have you connected to the machine? Including Cameras?
    Did you install or change any hardware round about
    July? New RAM?
    Regards
    TD
    1. Problems with Canon began in July when I got it.
    2. No, I tried again to download the iPhoto 6.0.5 update. It says it successfully downloaded, but fails to launch.
    3. I read Old Toad's reply Aug. 11 to Harmon Tison's "cannot open iphoto now" Aug 10 message, to rebuild my iphoto library. It rebuilt, but can't get to the next step. My isync keeps popping up saying "null error, no space left on device?" Why?
    4. Only camera's are connected. Bought an additional external Maxtor hard drive, bc I wqas running out of storage with all my Canon large memory photos. I have not had any problems with that & it is nt connected.
    5. Just tried to download from my Pentax camera (which I never have problems with) and it will not let me.
    Cavw

  • IMovie freezes when importing AVCHD from Canon HF20

    I've recently bought a *Canon HF20 AVCHD* Full HD camcorder, and am having a hard time importing the footage through iMovie '09. Here's exactly what happens:
    1. I connect the USB to the back port of the iMac. The camera indicates a flashing USB symbol and nothing else happens. It doesn't mount the camera drive and iMovie doesn't detect the camera.
    2. OK, so I connect the USB to a powered USB hub and it displays the correct message on the camera, mounts the camera drive and iMovie detects the camera is connected correctly.
    3. I tell iMovie to import the footage. After a while, the estimated time left begins to increase up to hours long, and the progress bar eventually stops, and iMovie freezes, whith the colored spinning wheel as the cursor.
    Each time I try to import the footage, iMovie freezes at different points.
    Does anyone else have this problem importing AVCHD footage into iMovie '09 ?
    Thanks in advance,
    João Faraco

    Well, judging from the deafening response, posting this question here is pretty useless.

  • How to download from iPhone to LR, and then delete on Phone keeping photo in LR

    Hi
    How to download photos from iPhone to Lightroom, then save them, not just sync them, and finally remove them from iPhone ( or from the folder "All synced Photographs") and still have the photo in Lightroom?
    Found one workaround, exporting from folder "All synced Photographs" to my desktop, then import back into LR. Is there any easier way?

    Moving the discussion to Photoshop Lightroom.
    Thanks,
    Atul Saini

  • How open raw from canon eos 70D in elements 11

    I cannot open raw from canon eos 70D in photoshop elements 11. Help me please.

    Your PSE is too old—the camera was released after a newer version of software was available and Adobe only adds new camera support to the newest version of software.
    Specifically, the 7D Mark II needs ACR 8.7 and PSE12 can only be updated to ACR 8.5.
    Your choices are to:
    Use the DNG Converter 8.7 or newer to create DNGs from the CR2s and those DNGs will open in the older version of ACR that comes with PSE12, OR
    Buy the newer version of Element 13 that can be updated to a new enough Adobe Camera Raw plugin.
    The DNG Converter is available from the Adobe Updates page:
    http://www.adobe.com/downloads/updates
    And the newer version of Elements is available from the Adobe Products page:
    http://www.adobe.com/products/catalog/software.html
    Another option would be to use Lightroom 5.7 or newer and use Edit in Photoshop Elements from LR once most of your raw adjustments are done, for any final touches in Elements. 
    For any of these choices you’d want to download the latest updates and run the software in trial mode to make sure your computer is compatible before paying anything.
    BTW, I have the 7D Mark II and like it very much, having upgraded from an older Digital Rebel, but I’m not that thrilled with the in-camera JPG processing so always use Adobe products for raw development.

  • IPOD Camera Connector download from Canon EOS 20D

    Having problems tranferring from Canon EOS 20D. Although Apple say it is compatable all I get is Unsupported device. Any Idea's...

    No worries Paul & Sam,
    Unplug everthing, soft reset your iPod, connect the camera connector to your card reader and put your card in the reader before you plug it in the iPod, then connect it, let the iPod find everything and then import photo's if this doesn't work try this below:
    The Belkin Reader i've got has this model number. F5U249ea if you've got the same one, it's powered off the iPod, the 60gb model should be no different. Have you got the latest iPod update installed. If you have all i can say make sure everything on your iPod is still on your computer, completely restore your iPod with the latest iPod update, then connect everything together again, if this still does'nt work, i'm not sure what you can do? i'll try and find some more info for you but try everything i've said first and i'm sure you'll get everything to work fine.
    Let me know how you get on, i'll try and figure out what happened
    - Mike

  • HT5085 how to download from the cloud

    how do I download from the cloud?

    Welcome to the Apple Support Communities
    If you refer to purchased content, see > http://support.apple.com/kb/HT2519

Maybe you are looking for

  • Spry Menu Hover behavior

    First let me apologize and say I'm a total CSS noob and I know this is probably a simple issue for you CSS masters out there - but I'm at a loss :( My client wants a horizontal spry menu for her site. Instead of colors, she would like to use images f

  • IPhoto problem with ! Appearing

    I recently uploaded a series of pictures to my IPhoto 08 but whenever I double click to view a vertical picture I get the ! instead. The horizontal and prior uploaded vertical picture have no problem. This has never happened before & I haven't altere

  • Backgroung job and sending via email

    Hi All We have started sending reports via email by background processing of jobs. Back ground job was defined in SM36. By giving ABAP program name, variant, state date / time, periodic daily, spool to distribution list ( distribution list have list

  • I want to back out of Windows Phone Insider

    Hello! I recently accidently signed up for Inside Fast on my Lumia 830. But now it starts downloading Windows 10 for phones and gives me no option to back out. I have uninstalled the Windows Insider app but that has not affected the download process.

  • MI424WR-GE​N2, F

    I was having problems with my previous GEN1 router when trying to connect several new devices (including a wireless printer, a TV, a Wii U, and a blu-ray player). Talking with tech support they said they would send me the latest GEN3 router to fix my