Can Varicam output in PAL?

i know FCP6 can only import varicam DVCPRO HD in system frequency 59.94Hz, and NTSC editing has no problem. The main problem i've got, is i don't know how to edit or output them in PAL system, since my place is using PAL. also i have AJ-HD1200A VTR with 1394 i/o.
please help me...
MacBook Pro 17"   Mac OS X (10.4.10)   4GB RAM, FCS2

i give up for 720p25 native output as i found there is unsupported for the AJ-HD1200A VTR (if 1394 output). only 1080i25 or 50 is supported, and i don't think i can input 720p25 signal into DVCPRO HD tape...can i?
text below is quoted by manual "Final Cut Pro Working With High Definition and Broadcast Formats":
Setting System Frequency on a Panasonic Varicam Camcorder
The Panasonic Varicam camcorder can record at the standard NTSC-compatible rate of 59.94 fps or at exactly 60 fps. Final Cut Pro only supports DVCPRO HD video transfer via FireWire at 59.94 fps (or one of its variants, such as 29.97 or 23.98 fps). If you want to capture DVCPRO HD footage via FireWire, make sure you record your footage with the system frequency of your camcorder set to 59.94, not 60. For more information, see the documentation included with the Panasonic Varicam camcorder.

Similar Messages

  • I need to output a PAL HDV project from FCP as a PAL DV file with 4 audio t

    I need to output a PAL HDV project from FCP as a PAL DV file with 4 audio tracks - specifically one stereo pair to be t1&t3, the other stereo pair to be t2&t4. This is the standard way requested by an international distributor of tv programmes. I understand how to set the sequence in FCP to output 4 audio tracks - either 2 stereo pairs (1&2, + 3&4), or 4 discrete tracks. But how do I then output this as a QT file?
    The manual tells me that to export multiple audio tracks, File>Export>QT Movie has it's Config pop-up menu in the Audio Settings area of the General tab of the Sequence Settings. Well, that's set for 4 discrete channels, but the QT export settings only allow for 2 mono or 1 stereo output, and that's what I get when I try it. What it says in the manual just doesn't happen.
    Exporting via Compressor, on the other hand, has an abundance of choices of 4-track outputs, none of which are labelled as anything resembling 'discrete'. Would any of those 4.0 settings suffice? Or am I likely to get myself into difficulties further down the line? As I am monitoring for this task on a 2-track audio system, I cannot confirm exactly what I am getting when I use any of those settings.
    Any advice would be greatly appreciated!
    John

    Call me naive, but I've not heard of splitting the stereo pairs like this before.
    What broadcaster? (perhaps one of our EU regulars will drop in...)
    You can do all sorts of pairing but it is coincident tracks pairing- eg 1/2 + 3/4
    Sorry I can't offer anything.
    x

  • How can I output text in a browser window in JAVA?

    How can I output text in a browser window in JAVA?

    "response.getWriter().print()" is the most common method when using servlets

  • How can I output up to 7 tracks simultaneously?

    Hello esteemed GB community.
    I have to create a little effect for an upcoming party. For this I need to output the following:
    - at least 4 separate audio channels (stereo front and stereo rear)
    - one mono combination of these four tracks (to drive a Light organ gizmo - makes the light flicker with the audio)
    - and finally one separate track on which I will put pulses to trigger a relay for a fog machine.
    Setting up these tracks in GB should be fairly straigth forward (although my GB experience is very limited I've done a fair amount of audio mixing in FCP - which I imagine is similar) but my question is, how can I output all these tracks so I can feed them to their respective recipients? This means to two stereo setups for audio (or would it be easier to do 5.1 Dolby - $$$ ?) and then to the light organ and to the relay trigger for the fogger.
    I did a search for multitrack but most answers I found dealt mainly with input, not output. I imagine this will require some kinid of an external box, right?
    Budget for this box is very limited, hopefully less than $200. Quality does not have to be very high although a good bass response will be important for the effect.
    Thank you very much for any help.
    Bo

    Thanks for your help, HT. Would Logic be a better choice than ProTools LE for this? (I know next to nothing about them I must confess...)
    I was just thinking, in the worst case scenario, I could just create the 6 audio tracks in GB, then output three stereo mp3 files (stereo front, stereo rear, 2 control tracks), dump each on a separate cheap mp3 player and get a controller that can remote start all of them at the same time...
    Does anyone know of such a cheap mp3 player that can be remote started via a wire connection to a relay? Is there another forum that deals with this kind of issue?
    Thanks again.
    Bo

  • I want to connect a FLIR camera to my iPad. How can I submit a PAL signal to my iPad?

    I want to connect a FLIR camera to my iPad. How can I submit a PAL signal to my iPad?

    Thanks, too bad. Now I have to get a different tablet, ****.

  • How can i output the max average?

    How can i output the max of the average?
    i have this queries...
    <cfquery datasource="Intranet" name="GroupStars">
            SELECT execoffice_status, employeedept, COUNT(*) as 'totalstars'
            FROM CSEReduxResponses
            WHERE execoffice_status = 1
            GROUP BY execoffice_status, employeedept
        </cfquery>
        <cfquery dbtype="query" name="GetTotalStars">
            SELECT *
            FROM GroupStars, GetDepartments
            WHERE GroupStars.employeedept = GetDepartments.csedept_id
        </cfquery>
    <cfif GetTotalStars.RecordCount gt 0>
        <cfquery datasource="PhoneList" name="GetAllData">
            SELECT dept.csedept_id, COUNT(*) as 'totalcount'
            FROM employee, dept
            WHERE employee.dept_id = dept.dept_id
                AND employee.emp_status = 1
                AND dept.csedept_id is not null
            GROUP BY dept.csedept_id
        </cfquery>
        <cfquery dbtype="query" name="GetDepartmentTotalEmployeesCount">
            SELECT *
            FROM GetAllData, GetDepartments
            WHERE GetAllData.csedept_id = GetDepartments.csedept_id
        </cfquery>
    <cfquery name="joinQuery" dbtype="query" >
    SELECT *
    FROM GetTotalStars
    WHERE GetTotalStars.csedept_id = -1
    </cfquery>
    <cfset QueryAddRow(joinQuery)>
    <cfquery name="GetUnion" dbtype="query" >
    SELECT *
    FROM GetDepartmentTotalEmployeesCount, GetTotalStars
    WHERE GetDepartmentTotalEmployeesCount.csedept_id = GetTotalStars.csedept_id
    UNION
    SELECT GetDepartmentTotalEmployeesCount.*, joinQuery.*
    FROM GetDepartmentTotalEmployeesCount, joinQuery
    WHERE GetDepartmentTotalEmployeesCount.csedept_id NOT IN (#ValueList(GetTotalStars.csedept_id)#)
    </cfquery>
    <cfquery datasource="Intranet" name="GroupStarsGiven">
        SELECT execoffice_status, submitterdept, COUNT(*) as 'totalstarsgiven'
        FROM CSEReduxResponses
        WHERE execoffice_status = 1
        GROUP BY execoffice_status, submitterdept
    </cfquery>
    <cfquery dbtype="query" name="GetTotalStarsGiven">
        SELECT *
        FROM GroupStarsGiven, GetDepartments
        WHERE GroupStarsGiven.submitterdept = GetDepartments.csedept_id
    </cfquery>
    <cfquery name="joinQuery2" dbtype="query" >
    SELECT *
    FROM GetTotalStarsGiven
    WHERE GetTotalStarsGiven.csedept_id = -1
    </cfquery>
    <cfset QueryAddRow(joinQuery2)>
    <cfquery name="GetUnion2" dbtype="query" >
    SELECT *
    FROM GetUnion, GetTotalStarsGiven
    WHERE GetUnion.csedept_id = GetTotalStarsGiven.csedept_id
    UNION
    SELECT GetUnion.*, joinQuery2.*
    FROM GetUnion, joinQuery2
    WHERE GetUnion.csedept_id NOT IN (#ValueList(GetTotalStarsGiven.csedept_id)#)
    ORDER BY csedept_name ASC
    </cfquery>
    and this part is where i calculate the average, but i only get the average for each department, and from here i want to get the max of the average. how can i do that?
    <td><div align="right"><cfif totalstars eq ''>&ndash;<cfelse><cfset avgstars = totalstars / totalcount>#DecimalFormat(avgstars)#</cfif></div></td>
    thanks for your help

    1) What is it doing instead?
    2) Can you repost your code, but use code tags? If you repaste your formated code and place the tag &#91;code&#93; on top of your block of code and then paste &#91;/code&#93; on the bottom of your block, your posted code will retain its formating and be readable.
    Good luck

  • How can I output RCA video?

    How can I output RCA video from the headphone jack of my macbook pro? Is there any software to do this?

    I can't broadcast with the built in iSight webcam... how would I zoom in or zoom out? or how would I pan? I've seem people doing it walking with their laptops but that's not an option for me... there's nothing wrong with my USB ports but that's neither an option to stream video because as far as I know through USB you can't connect video in apple operating systems ..you can for sure plug any video cam or photo camera through usb but as a drive to transfer data not as a live video camera...  is by firewire an old interface developed by apple that you can connect all sorts of cameras to apple computers... unfortunately my new sony HDR-AX2000 camcorder doesn't have firewire output...
    thanx

  • Can Encore make a Pal DVD from NTSC source?

    Can Encore make a Pal DVD from NTSC source?

    Convert NTSC <--> PAL http://forums.adobe.com/thread/995779
    Regions and NTSC vs PAL http://forums.adobe.com/thread/951042

  • Grub can't output to display

    ok, so I  dual boot debian and arch and today I dist-upgraded to wheezy only to find arch gone from the boot menu. I workaround this by chrooting into arch and install grub there, and now and typing from arch. however, on boot after the bios flashes I get this message: can not output to this display. now, hitting enter boot arch, but a. I am completly blind in the grub menu and b. I have no of telling if debian is in the boot menu other then trail and error, which I havn't tried yet because thats really a different issue. any ideas on what might be causing the problem? which arch boots everything is fine from there, this is just a grub issue

    even with arch mounted and os-prober installed debian fails to see arch (i've filed a bug report with debian) arch os-prober sees debian, but like I said, no video so I can't really tell what the menu looks like until I found that problem. anyway, heres /grub/default. I may try updating grubs menu again and see what happens
    GRUB_DEFAULT=0
    GRUB_TIMEOUT=5
    GRUB_DISTRIBUTOR="Arch"
    GRUB_CMDLINE_LINUX_DEFAULT="quiet"
    GRUB_CMDLINE_LINUX=""
    # Preload both GPT and MBR modules so that they are not missed
    GRUB_PRELOAD_MODULES="part_gpt part_msdos"
    # Uncomment to enable Hidden Menu, and optionally hide the timeout count
    #GRUB_HIDDEN_TIMEOUT=5
    #GRUB_HIDDEN_TIMEOUT_QUIET=true
    # Uncomment to use basic console
    GRUB_TERMINAL_INPUT=console
    # Uncomment to disable graphical terminal
    #GRUB_TERMINAL_OUTPUT=console
    # The resolution used on graphical terminal
    # note that you can use only modes which your graphic card supports via VBE
    # you can see them in real GRUB with the command `vbeinfo'
    GRUB_GFXMODE=auto
    # Uncomment to allow the kernel use the same resolution used by grub
    GRUB_GFXPAYLOAD_LINUX=keep
    # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
    # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
    #GRUB_DISABLE_LINUX_UUID=true
    # Uncomment to disable generation of recovery mode menu entries
    GRUB_DISABLE_RECOVERY=true
    # Uncomment and set to the desired menu colors. Used by normal and wallpaper
    # modes only. Entries specified as foreground/background.
    #GRUB_COLOR_NORMAL="light-blue/black"
    #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
    # Uncomment one of them for the gfx desired, a image background or a gfxtheme
    #GRUB_BACKGROUND="/path/to/wallpaper"
    #GRUB_THEME="/path/to/gfxtheme"
    # Uncomment to get a beep at GRUB start
    #GRUB_INIT_TUNE="480 440 1"
    #GRUB_SAVEDEFAULT="true"

  • Can the output of a Generate Occurrence be passed in Local/Global Variable?

    Can the output of a Generate Occurrence function, which is a refnum, be passed in Local/Global Variable so that it does not need to be wired to all parties directly?
    Can more than one party be waiting on the same Occurrence and will all waiting function be released together?

    dbaechtel wrote:
    Answer was not given:
    Can the output of a Generate Occurrence function, which is a refnum, be passed in Local/Global Variable so that it does not need to be wired to all parties directly? Is this possible?
    I am not worried about whether it is bad form or not, as yet. That is for me to decide on a case by case basis.
    Yikes! That is not a very good way to learn.
    Anyways, to avoid any more bold emphasis on words, I will answer your question. Locals can only be linked to controls/indicators not individual wires. If you want to get the effect of a local/global variable with a wire value, search the forum for action engines or functional globals. Those will work for passing a wire value between threads.
    That said, what are you trying to use occurences for? There may be (and probably is) a more accepted way to implement what you are trying to do instead of using local variables
    CLA, LabVIEW Versions 2010-2013

  • Can't output text before document element?

    Hello,
    When I try to run my template, which is programmed in Java and which is supposed to extract information from XML-File, I use a XSLTInputSource interface. But the compiler send the following message:
    org.xml.sax.SAXException: Warning: can't output text before document element! Ignoring...
    Can anyone explain me, what this Exception means?
    Thanks
    RudiRatte

    The XML-File is in a database, which I can't access.

  • Can you output iphoto slideshows in video formats?

    Can you output iphoto slideshows in video formats?  If so, which video formats?  Is output in H.264 format with 4:3 aspect ratio possible?  Thanks.

    If you set the aspect ratio to 4:3 in iPhoto
    you can use the Export button at the bottom of the slideshow window and pick one of the sizes you'd like.
    That will give you this format:
    If you want to do more customization of the output follow Terence's export method.
    OT

  • How can I output the alpha channel in Premiere elements 10

    How can I output the alpha channel in Premiere elements 10. What format should I use?
    Tried outputting to an AVI filet but the file did not contain an alpha channel that After Effects 5.5 would recognize.

    Bill,
    I hope you ordered 32 GB or more on that new computer After Effects 5.5 takes up as much as it can.
    The Roto Brush tool is really a timesaver over ordinary Rotoscoping. Although, my problem now is: when I try to send a 1 min. And 11 second video from Adobe Premier Pro 5.5 two Adobe Media encoder 5.5, the process hangs in wait state in the Media Encoder. I have filed a request for help on the Media Encoder forum.
    I know you will put your new computer to use in helping other people and for this I thank you.

  • How many channels can GB output?

    I am new to GB, coming from the MIDI world. In my setup on another
    computer I can use up to 112 MIDI channels.
    I'd like to import my MIDI sequences to GB and play them with Apple
    loops but from what an Apple salesman at a non-Apple Store told
    me I can only output about 8 channels of music.
    How can this be? I thought GB could even be used for film scoring.

    how many tracks of software instruments & loops can be output
    simultaneously?
    a completely different question, so you meant input, not output:
    http://www.bulletsandbones.com/GB/GBFAQ.html#maxtracks
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Can the output of Date.toString() be parsed by a method of SimpleDateFormat

    Hi,
    I am working on J2SE 1.2.2.
    Can the output of Date.toString() be intepreted successfully by the SimpleDateFormat.format(String) method.
    An example of the output generated by Date.toString() is
    "Mon Jul 02 20:53:27 GMT 1810"
    I don't see a Symbol that can handle a month in the form of
    "Jul" nor a symbol that can handle a day in the form of
    "Mon". The closest symbols I
    can see are
    - M (Text & Number) July & 07
    - E (Text) Monday
    Can "z" be used to represent a
    time zone in the form of "GMT"?
    Will the above symbols work? If not are there symbols that can be used?
    Thanks
    Harsha

    Try this form.
    SimpleDateFormat formatter = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", Locale.US);

Maybe you are looking for