How does firewire cable affect quality?

I am a new Mac user and new to video editing. I just recently purchased a MacBook and plan to begin editing my many many hours of miniDV video.
To transfer the video from my camera to the Macbook, I pruchased an inexpensive cable (around $5) from a bargain internet site. I have seen cables for as much as $40 at the local Circuit City.
How important is the firewire cable to maintain the quality of the video? Before I begin importing my video onto my new 500GB external drive I want to make sure I am retaining the quality.
Thanks!
MacBook   Mac OS X (10.4.9)  

Thanks Klaus1 and Matt!
I successfully imported one tape onto my Macbook. Everything seems to work fine with the cable. I can control the camcorder from the Mac and the video looks good.
I really like how iMovie breaks the tape into several clips. I thought I was going to get one large file that I would have to parse myself!
MacBook   Mac OS X (10.4.9)  

Similar Messages

  • How does condition category affect the price procedure

    Hello Gurus,
         there is a case as following:
    if the condition type in the pricing analysis says in a billing document that the ‘‘condition is found and set,” and one is using the condition requirement number 024 (which only determines the price in billing document) yet still has to do new pricing in order to obtain the condition record, Should the condition category be blank, the system would propose the message “condition is found and set” but does not provide an actual condition record.
       the fault would be that the condition category on the condition type should be equal to L.
       so my question is " how does condition category affect the price procedure" ? thanks very much!

    Hi Zhang,
    -->Condition category is a classification of conditions according to predefined criteria.
    -->These categories include packaging costs, delivery costs, output taxes and discounts.
    -->The classification of conditions by condition categories can be used for analysis.
    I hope it will clear for you
    Regards,
    Murali.

  • Can i upgrade my laptop's graphic card? and how does this upgrading affect the other functions?

    is it possible to upgrade my HP Split 13-m111TU x2 PC's graphic card? how does one go about this upgrading process? does it affect the other functions and features of the laptop? 

    Hi:
    The graphics adapter in your model cannot be upgraded.

  • How does time machine affect programs? ala Logic?

    Say I do a software update and it stinks, buggy, et-cetera, how would I grab Logic from TIME MACHINE and use that version (pre update) or does it update the whole computer? I'm thinking its not sophisticated enough (TM) to know that if I grab LOGIC that it needs to grab the preferences, package receipts, application support as well as the LOGIC application itself. If you do have to restore the desktop (ALL) again, is there a better way than time machine or can you somehow use time machine.
    • Or is it that sophisticated?
    Thanks!

    Time Machine is almost like a clone with archival capabilities. It will store a minimumal restorable version of your system on the backup drive with all the preferences, kernel extensions, and files and applications. Time machine is sophisticated enough to understand for a few Apple applications how to restore addresses, e-mail, and other files back into their applications from an archive. However, the only restore that I've read it is able to restore an application is an entire hard disk restore much like restoring a clone. This is especially true if the application is divided into drivers, extensions, preferences, and plugins across the hard drive.

  • How does image borders affect calculatio​n of "center of mass" of particles?

    Hi!
    I have a question about how borders in the images affect calculation of "center of mass".
    My original image (0) is a 640x480 grayscale image with border of 3.
    I make a binarized image (1) of the original image (0) to search for particles. For each particle I find, I use the ROI for the particle to extract a third image (2) from the original image (0).
    All of the images have borders of 3.
    When using the ROI from particles in image (1), are the boundingBox-coordinates related to the outer edges of the image (which makes the image actually 646x486), or is it related to the original origo of the image (making the image "logically" 640x480)?
    The same question goes for calculation of
    center of mass for the particle, when using image (2). After running a particle filter on image (2), I use imaqCalcCoeff() to calculate IMAQ_CENTER_MASS_X and IMAQ_CENTER_MASS_Y, stored in local_x and local_y. To get the global_x and global_y, which is the center point of the particle related to the origo of image (0), I say that:
    global_x = local_x + boundingBox.left;
    global_y = local_y + boundingBox.top;
    Do I need to make further adjustments since I am using borders, e.g. adding/extracting 3 from the global_x and global_y to have a correct answer, or is IMAQ vision taking care of this for me?
    Do I have to actually define that:
    global_x = local_y + boundingBox.left - borderSize;
    or
    global_x = local_y + boundingBox.left - 2*borderSize;
    I guess (and hope) that the answer is no, that I can use:
    global_x = local_x + boundingBox.left;
    -but I need it confirmed...
    Thanks,
    Torbjørn

    The image border is only used for processing (filters, etc.) It is not included in any coordinates or measurements. Therefore, don't include it in any calculations.
    Bruce
    Bruce Ammons
    Ammons Engineering

  • How does sy-tabix affect by binary search transforming no fields?

    1 report ztx1110.
         2 data: begin of it occurs 3,
         3           f1(2) type n,
         4           f2    type i,
         5           f3(2) type c,
         6           f4    type p,
         7           end of it.
         8
         9   it-f1 = '40'. it-f3 = 'DD'. it-f2 = it-f4 = 4. append it.
        10  it-f1 = '20'. it-f3 = 'BB'. it-f2 = it-f4 = 2. append it.
        11
        12 sort it by f1.
        13 do 5 times.
        14     it-f1 = sy-index * 10.
        15     it-f3 = 'XX'.
        16     it-f2 = it-f4 = sy-index.
        17     read table it
        18         with key f1 = it-f1
        19         binary search
        20         transporting no fields.
        21     if sy-subrc <> 0.
        22         insert it index sy-tabix.
        23         endif.
        24     enddo.
        25
        26 loop at it.
        27     write: / it-f1, it-f2, it-f3, it-f4.
        28     endloop.
    in this program changing value of sy-tabix as such sy-index.
    means in it's first loop it's value is 1, on second loop it's 2, and so on up to 5.
    okay that is due to binary search.
    but why binary search affecting this system variable?

    Hi Vinay,
    It is simple.
    This depends on your select query. 
    CASE 1: If you use select ..into table.....,  then there wil be nothing in your header ls_vbap. Now if you execute READ stmt..you will get nothing.
    CASE 2: If you use Select..... into ls_vbap.....append ls_vbap....clear ls_vbap.....endselect.   In this case also the output of READ will be nothing because you are clearing header.  So while READ stmt you are comparing ls_vbap-vbeln and ls_vbap-posnr , as nothing in it you will get nothing
    CASE 3: If you use case 2 without CLEAR stmt then always you will get the index of the last fetched record...i.e., the last record of the internal table before sorting..
    I think it is helpful for you....if you are not clear just reply me

  • How does buffer size affect double buffered waveform generation?

    I had originally posted the following question:
    "Why does the double buffered waveform generation pause after the first buffer before continuing?"
    "I am using an AT-AO-10 board to generate a multiple channel waveform in double buffered mode. The board's DAC's are updated by an external clock signal. While the waveform generation performs well, I notice that after the first buffer has been generated there is a time delay before the next buffer is output. However the second buffer and thereafter perform well without any time delays. If anyone can provide me an explanation on why this happens I would appreciate it. I am using NI-DAQ API functions to generate the waveforms and my settings for the WFM_DB_Config function are 1 for oldDataStop to disallow regeneration of data and 0 for partialTransferStop to not stop when a half buffer is partially transferred."
    -posted by Vadi on 6/7/2001
    I received a response from Geneva as follows:
    Geneva L. on 6/11/2001 says:
    "Vadi,
    The first thing is to make sure that you have the latest version of NI-DAQ installed, NI-DAQ 6.9.1. If you need to install it, make sure you completely uninstall any prior versions. Then, you will have examples installed in either the NI-DAQ or the CVI directory. In the AO directory, you should find the WFMdoubleBuf example.
    Start with that to make sure the output appears as you expect. Then, you can modify it to apply your external update clock, following the idea presented in the WFMsingleBufExtUpdate example. You might even want to double-check that your external clock acts as you expect using an oscilloscope.
    Finally, modify the example such that you can update on multiple channels, remembering that you interleave each channels buffer into one buffer for WFM_DB_Transfer. Whatever data is in the buffer will be updated on the output channels.
    Regards,
    Geneva L.
    Applications Engineer
    National Instruments"
    I have checked my version of NI-DAQ and it is 6.9.1. I am generating the double buffered waveform according to the format shown in WFMdoubleBuf and with some modifications from WFMsingleBufExtUpdate to allow me to use my external update clock. However I continue to notice the same phenomena again and again. For a buffer size of 7500 or 10000 points there is a time lag meaning after the first buffer has been output there is a noticeable time delay before the second buffer and buffers there after is output. This time lag doesn't exist for the buffers that are output after the first buffer but it does exist for the first buffer. When I decrease the buffer size down to 5000 points the time lag disappears (Note: this phenomena also occurs when I use an internal time base as opposed to my external clock). Is there a reason for this? I am using a AT-AO-10 board and I know the on board FIFO is 1024 points deep. However from the documentation provided it doesn't indicate that double buffered mode uses the on board FIFO at all. In fact, the functions require that the FIFO mode be turned off (in WFM_Load) for double buffered waveform generation. Is there a reason why when the buffer size is increased that there is a time lag after the first buffer? Is this because of the functions themselves or is this because of the AT-AO-10 board?

    Vadi,
    Make sure that your buffer size is set to the same number of points that you're actually writing to the buffer initially. For instance, if you run the example as-is, the NIDAQMakeBuffer puts exactly the ulCount amount of data into the buffer. Then, it continuously writes out half buffers. Thus, if you are not writing enough data to fill up the buffer the first time, there will be that lag until the section where half buffers are output.
    Regards,
    Geneva L.
    Applications Engineer
    National Instruments
    http://www.ni.com/ask

  • Scale out question: how does instance name affect primary/secondary node

    Hi:
    OBIEE 11.1.1.6.4, Windows 2008
    On a test instance the following happened:
    1. Enterprise install of OBIEE 11g had problems
    2. Reinstalled OBIEE 11g, but the installer created an instance2
    3. All was well with this install
    4. Performed all necessary shared catalog and RPD steps
    5. On a second server, installed OBIEE 11g using the scale-out option
    6. On second server, this created an instance1 directory
    7. All components start up and we can log into OBIEE using either server1 or server2
    Question:
    Does OBIEE use the instance names in a scale-out? Our primary node is instance2 and the secondary node is instance1, though on a separate server. Will this cause a problem?
    Thanks for any help.

    Hello,
    This can be run on any of the replicas that the availability group participates in to return the primary instance:
    select primary_replica FROM sys.dm_hadr_name_id_map nim
    inner join sys.dm_hadr_availability_group_states ags
    on nim.ag_id = ags.group_id
    WHERE nim.ag_name = 'MyAvailabilityGroupNameHere'
    Sean Gallardy | Blog | Microsoft Certified Master

  • How does new computer affect ipods

    What needs to be done if I get a new mac and transfer my itunes to the new computer and get rid of the old computer. What should I do to insure the my ipods work on the new computer?

    Make sure your new computer is authorized in iTunes. Disable autosync in itunes, connect your ipod, right click on it in the device list and choose backup.
    This will save data, pictures and settings to itunes. See what's included in this backup here: http://support.apple.com/kb/HT1766
    Transfer your purchases the same way to copy all apps and bought media from the Store to your computer.
    Set up at least one contact and event on your computer to be able the merge your calendars and contacts after your ipod got wiped during the first sync.
    The rest of the data can be restored from the backup you made.
    Restoring: http://support.apple.com/kb/HT1414
    Music is one way only, from the computer to your device, unless you bought the songs in itunes and transferred your purchases.

  • How does FireFox 4 affect AVG virus protection.

    I saw on your Fire Fox 4.0 possible problems. That downloading Fire Fox 4.0 would cause AVG virus protection to not work properly. What effect doe Fire Fox 4.0 have on AVG virus protection

    I think you need version 10 (also known as AVG 2011):
    '''Regarding AVG FREE:'''
    "...version 10.0.1209 is compatible with Firefox 4."
    http://forums.avg.com/ww-en/avg-free-forum?sec=thread&act=show&id=154821#post_154821
    '''Regarding AVG paid:'''
    "If Firefox 4 reports that only AVG Safe Search is incompatible with Firefox 4.0, please proceed according to FAQ 3271 to update your AVG.
    In case Firefox 4 reports that either AVG Security Toolbar or both AVG Security Toolbar and AVG Safe Search are incompatible with Firefox 4.0, please perform repair installation of AVG, according to FAQ 3251.
    Note: In case you meet this issue with AVG 9.0, kindly upgrade to AVG 2011 to rectify the issue."
    http://www.avg.com/us-en/faq.num-4222#num-4222

  • How does the firewire cable transmit?

    Does anyone know how the firewire cable transmits data? I have not been able to find a detailed explanation. I'm trying to figure out if its possible for the firewire cable to transmit the video but not the audio. When I import into Final Cut 3 from a canon camcorder using a firewire cable it imports the video but there is no audio.
    I've checked the capture device presents in Final Cut and they all seem to be right. The only thing I can think of is there is something wrong with the cable.

    Jami1820 wrote:
    Does anyone know how the firewire cable transmits data? I have not been able to find a detailed explanation.
    http://en.wikipedia.org/wiki/FireWire
    +I'm trying to figure out if its possible for the firewire cable to transmit the video but not the audio.+
    Yes, if you set it up that way
    +When I import into Final Cut 3 from a canon camcorder using a firewire cable it imports the video but there is no audio.+
    Cannon has atrocious communication with FCP
    +The only thing I can think of is there is something wrong with the cable.+
    That's certainly a possibility. Just grab another cable and check it out

  • I recently moved and had to disconnect my WD My Pro Edition II 2TB external drive I had been using for backup.  Its been several months and now when i try to reconnect the external dire (Use a firewire cable) it does not recognize the drive is there.  I a

    I recently moved and had to disconnect my WD My Pro Edition II 2TB external drive I had been using for backup. 
    Its been several months (many upgrades to the iMac software during this time), and now when I try to reconnect the external dire (Use a firewire cable) it does not recognize the drive is there.  I also tried "reloading" software from the Western Digital site, but after following all the instructions, it looks like my iMac doesn't support this software (I can't even locate it after I follow all the instructions.
    Thnaks,  for anyones ideas on how I can get this working again.....

    First of all, you do not really want to use their software; if you want a bootable clone, use either Carbon Copy Cloner or SuperDuper. If you simply want to drag and drop some files, you don't need software to do that. The important thing on any external drive is that you format/partition it correctly (Mac OS Extended (Journaled) and using GUID partition scheme). 
    Unfortunately, I don't know anything about WD drives or their software, so I don't have any idea what kind of backup you did. Having said that, it should still recognize the external even if it's outdated. Have you tried mounting it manually in Disk Utility? If you can get it to mount, you could (worst case scenario) just drag your stuff off onto your internal and then reformat the external.

  • How does the Classic charge, Firewire, USB method or both?

    I am trying to understand how the iPod classic charges.
    All of my cars have an iPod interface. Using the large flat connector that sends the audio to the car radio and also charges the iPod at the same time.
    I am presently using the iPod Video (AKA 5th generation). It is my understanding that this particular iPod charges with the FireWire pin on the flat connector (+12V).
    When I plug in my new iPod nano the audio comes through fine but it will not charge. I understand that Apple is changing its charging method to USB (+5V).
    I have found an adaptor that corrects for this however it does not stay pluged in very well when moving the iPod around.
    http://scosche.com/products/productID/1667
    I now want to buy an iPod classic, will I have the same charging problem that I experienced with the nano?
    I was considering having my iPod connectors replaced in my vehicles (at no small expense). However some have advised me that the iPod classic can be charged using _either the FireWire or UBS methods._ (Meaning that my existing connector would work.)
    I tried asking at the local apple store but I received different answers (there's no recession at this Apple store, they were very busy).
    I would love to get an answer to this question from someone who _really knows_.
    Thanks.

    I can confirm that the latest 120Gb iPod Classic CAN be charged via firewire. My original iPod has finally broken and I have a built-in car dock. Today I purchased an iPod Nano which gave the error message "can not charge using this accessory" (or similar). Luckily Curry's offered me a full refund as I had not even left their car park before I returned the item.
    I contacted Apple who confirmed the latest classic would charge via Firewire, and therefore returned to Curry's and tried a shop model in my car. This charges fine. I have since purchased a classic and again this works fine in the car. I have also plugged it in via my old firewire cable from my original iPod and YES it does charge.
    I hope this helps - my advice would be to go to a main highstreet store in your vehicle and get them to try a demo model for you and then purchase!
    Good luck!
    Alex

  • Does DVI Cable quality make a noticeable difference or does it not matter?

    Does DVI Cable quality make a noticeable difference or does it not matter?
    When you buy a monitor at a place like TigerDirect, they come with a thinner cable, but you purchase one for $21. Is it worth it?

    Check out http://www.monoprice.com they have great cables for cheap.
    To answer your question the cables are usually rated for the amount of bandwidth they can transfer and at what speed. At lower resolutions you don't need much bandwidth but to transfer 1080p you would need a cable capable of handling that. Most cables can handle that.
    But with the thinner cables it can affect the quality of the image. Just be sure to calibrate your monitor. Good luck!

  • I upload iPhone pics to Shutterfly, which gives me a "low resolution" warning and blurry prints. Does anyone know how to enhance resolution/printing quality of iPhone pictures? iPhone 5

    i upload iPhone pics to Shutterfly, which gives me a "low resolution" warning and blurry prints. Does anyone know how to enhance resolution/printing quality of iPhone pictures?
    iPhone 5

    How does iPhoto play a part in this?  You're in the iPhoto forum.  Shouldn't you be asking your question in the iPhone forum?  I'll ask the powers to be to move you question to the iPhone forum.
    OT

Maybe you are looking for

  • Hwo to get the spool number from report output

    Hi, I am displaying some output in the report using write statements and within my program I need to collect the output written by write statements and send it as an email.So for that I need to generate the spool number and I am using the below code

  • CLFMAS02 IDOC ERROR CHARACTERSTIC NOT FOUND

    hI aLL I had an error in CLFMAS02 a classification master, it says that the Characteristic "DUMMY" not found or not. but when i checked it by using CT04 it does exist. by using the txn code BD87 it says that Error during IDoc processing - see log for

  • Select time from view

    i have a doubt as will a select based on a view will take more time than a select on 2 tables with a union. View will be:- create view1 as select column1 from table1 union select column1 from table2 so, will a select * from view1 take more time than

  • Contact Bar has stopped Working for Nokia 5800 XM

    Is there any way that anyone would be able to help me. I have had the Nokia 5800XM for 2 months now and a couple of days after getting it, my contacts bar home screen froze. It does not let me add any contacts on, and leaves the screen unresponsive w

  • Help with Window Functions

    Hi all, I need some help in getting rid of a very slow cursor operation.  I have three tables: 1. Consignments 2. Labels 3. ConsignmentReferences Labels table has a foreign key to Consignments. ConsginmentReferences also has a foreign key to Consginm