Creating a DDP Layer in FCPX

Hello,
I need to know how to create a ddp layer in fcpx. I have a very large edited video that I need to send out to get replicated in two separte layers for a DVD-9 or Dual Layer. My plan is to place the 2 layers on 2 separate dvd-5's as my master file. Thanks!

AFAIK, DVD Studio Pro is the only Apple pro app that can produce DDP images. Also,I believe Adobe Encore does as well. I'd check with the replication house and see whether there are alternative requirements and/or what they might recommend.
Good luck.
Russ

Similar Messages

  • Problems Burning DVD's (Single and Dual Layer) with FCPX

    I have been burning the same size and length DVD's every week on single layer DVD's and since the update I can no longer do it.
    FCPX was great for the inexperienced user, Apple what have you done !!!!!
    Because it now asks for a dual layer DVD I went out and bought (expensive) them and they won't burn either, it keeps coming up with an error message prior to completing.
    I went through five of the dual layers and all had the same problem.
    I need the program to be easy, it was and now its not.
    Will there be a fix or how do I go back to the version prior to the update.

    Is Share>DVD  the only export option giving you trouble? Will it let you create a single layer disk image?
    If sharing works otherwise, export a master file. Bring that into Compressor and choose the DVD preset. In the Inspector>Encoder>Quality you should be able to adjust the bit rate down to where it will ft on a single-sided disk.( As you adjust te slider, the "Allows" message at the very bottom of the Quality tab will change. Be conservative and allow a cushion.)
    Russ

  • How can I create a new layer that is a gradient?

    Hi, i'm very new to photoshop scripting and am having some trouble.
    I'm looking for a way to take an image i have and set it to have a gradient opacity as it approaches the middle, my thought on how to do that was to just create a layer that is a gradient from top left to bottom right and then attach that as a vector mask.
    Any ideas on how I could create this gradient layer in script, or a better method of doing this opacity gradient?
    Thanks in advance,
    Levianth

    You could try this:
    // 2012, use it at your own risk;
    #target photoshop
    if (app.documents.length > 0) {
    var myDocument = app.activeDocument;
    var theLayer = myDocument.activeLayer;
    if (theLayer.isBackgroundLayer == true) {theLayer.isBackgroundLayer = false};
    // create gradient layer;
    // =======================================================
    var idMk = charIDToTypeID( "Mk  " );
        var desc15 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref3 = new ActionReference();
            var idcontentLayer = stringIDToTypeID( "contentLayer" );
            ref3.putClass( idcontentLayer );
        desc15.putReference( idnull, ref3 );
        var idUsng = charIDToTypeID( "Usng" );
            var desc16 = new ActionDescriptor();
            var idType = charIDToTypeID( "Type" );
                var desc17 = new ActionDescriptor();
                var idType = charIDToTypeID( "Type" );
                var idGrdT = charIDToTypeID( "GrdT" );
                var idLnr = charIDToTypeID( "Lnr " );
                desc17.putEnumerated( idType, idGrdT, idLnr );
                var idGrad = charIDToTypeID( "Grad" );
                    var desc18 = new ActionDescriptor();
                    var idNm = charIDToTypeID( "Nm  " );
                    desc18.putString( idNm, "Custom" );
                    var idGrdF = charIDToTypeID( "GrdF" );
                    var idGrdF = charIDToTypeID( "GrdF" );
                    var idCstS = charIDToTypeID( "CstS" );
                    desc18.putEnumerated( idGrdF, idGrdF, idCstS );
                    var idIntr = charIDToTypeID( "Intr" );
                    desc18.putDouble( idIntr, 4096.000000 );
                    var idClrs = charIDToTypeID( "Clrs" );
                        var list3 = new ActionList();
                            var desc19 = new ActionDescriptor();
                            var idClr = charIDToTypeID( "Clr " );
                                var desc20 = new ActionDescriptor();
                                var idRd = charIDToTypeID( "Rd  " );
                                desc20.putDouble( idRd, 0.000000 );
                                var idGrn = charIDToTypeID( "Grn " );
                                desc20.putDouble( idGrn, 0.000000 );
                                var idBl = charIDToTypeID( "Bl  " );
                                desc20.putDouble( idBl, 0.000000 );
                            var idRGBC = charIDToTypeID( "RGBC" );
                            desc19.putObject( idClr, idRGBC, desc20 );
                            var idType = charIDToTypeID( "Type" );
                            var idClry = charIDToTypeID( "Clry" );
                            var idUsrS = charIDToTypeID( "UsrS" );
                            desc19.putEnumerated( idType, idClry, idUsrS );
                            var idLctn = charIDToTypeID( "Lctn" );
                            desc19.putInteger( idLctn, 0 );
                            var idMdpn = charIDToTypeID( "Mdpn" );
                            desc19.putInteger( idMdpn, 50 );
                        var idClrt = charIDToTypeID( "Clrt" );
                        list3.putObject( idClrt, desc19 );
                            var desc21 = new ActionDescriptor();
                            var idClr = charIDToTypeID( "Clr " );
                                var desc22 = new ActionDescriptor();
                                var idRd = charIDToTypeID( "Rd  " );
                                desc22.putDouble( idRd, 0.000000 );
                                var idGrn = charIDToTypeID( "Grn " );
                                desc22.putDouble( idGrn, 0.000000 );
                                var idBl = charIDToTypeID( "Bl  " );
                                desc22.putDouble( idBl, 0.000000 );
                            var idRGBC = charIDToTypeID( "RGBC" );
                            desc21.putObject( idClr, idRGBC, desc22 );
                            var idType = charIDToTypeID( "Type" );
                            var idClry = charIDToTypeID( "Clry" );
                            var idUsrS = charIDToTypeID( "UsrS" );
                            desc21.putEnumerated( idType, idClry, idUsrS );
                            var idLctn = charIDToTypeID( "Lctn" );
                            desc21.putInteger( idLctn, 4096 );
                            var idMdpn = charIDToTypeID( "Mdpn" );
                            desc21.putInteger( idMdpn, 50 );
                        var idClrt = charIDToTypeID( "Clrt" );
                        list3.putObject( idClrt, desc21 );
                    desc18.putList( idClrs, list3 );
                    var idTrns = charIDToTypeID( "Trns" );
                        var list4 = new ActionList();
                            var desc23 = new ActionDescriptor();
                            var idOpct = charIDToTypeID( "Opct" );
                            var idPrc = charIDToTypeID( "#Prc" );
                            desc23.putUnitDouble( idOpct, idPrc, 0.000000 );
                            var idLctn = charIDToTypeID( "Lctn" );
                            desc23.putInteger( idLctn, 0 );
                            var idMdpn = charIDToTypeID( "Mdpn" );
                            desc23.putInteger( idMdpn, 50 );
                        var idTrnS = charIDToTypeID( "TrnS" );
                        list4.putObject( idTrnS, desc23 );
                            var desc24 = new ActionDescriptor();
                            var idOpct = charIDToTypeID( "Opct" );
                            var idPrc = charIDToTypeID( "#Prc" );
                            desc24.putUnitDouble( idOpct, idPrc, 100.000000 );
                            var idLctn = charIDToTypeID( "Lctn" );
                            desc24.putInteger( idLctn, 2048 );
                            var idMdpn = charIDToTypeID( "Mdpn" );
                            desc24.putInteger( idMdpn, 50 );
                        var idTrnS = charIDToTypeID( "TrnS" );
                        list4.putObject( idTrnS, desc24 );
                            var desc25 = new ActionDescriptor();
                            var idOpct = charIDToTypeID( "Opct" );
                            var idPrc = charIDToTypeID( "#Prc" );
                            desc25.putUnitDouble( idOpct, idPrc, 0.000000 );
                            var idLctn = charIDToTypeID( "Lctn" );
                            desc25.putInteger( idLctn, 4096 );
                            var idMdpn = charIDToTypeID( "Mdpn" );
                            desc25.putInteger( idMdpn, 50 );
                        var idTrnS = charIDToTypeID( "TrnS" );
                        list4.putObject( idTrnS, desc25 );
                    desc18.putList( idTrns, list4 );
                var idGrdn = charIDToTypeID( "Grdn" );
                desc17.putObject( idGrad, idGrdn, desc18 );
            var idgradientLayer = stringIDToTypeID( "gradientLayer" );
            desc16.putObject( idType, idgradientLayer, desc17 );
        var idcontentLayer = stringIDToTypeID( "contentLayer" );
        desc15.putObject( idUsng, idcontentLayer, desc16 );
    executeAction( idMk, desc15, DialogModes.NO );
    // move layer below;
    var theGradient = myDocument.activeLayer;
    theGradient.move(theLayer, ElementPlacement.PLACEAFTER);
    // clipping mask;
    theLayer.grouped = true

  • LACK OF FULL PEN TOOL FUNCTIONALITY WHEN CREATING A SHAPE LAYER

    Hello, I'm going through Chris Meyer's video course on being an AE apprentice and have spent over an hour on the following issue.
    Here is what I know.
    I know I am trying to create a shape layer, not a mask, to create a frame to surround the video of the green field on the attached screenshot.  Therefore, I pressed "F2" to make sure I am doing so.
    I want to define the borders of this picture frame by using the pen tool to draw a path on the layer entitled "Windy Peak".
    I have highlighted that layer in my timeline.
    This video was pasted on to a placeholder shape that I had created using Command Option "/" on my Mac.
    I do have limited use of the pen tool, because it displays properly when I hover it above the borders of the video to be framed.
    But I lack access to the toolbar controls I want to complete my assignment.
    For example, I would like to create a gradient to define the internal coloration of this frame, but I have no use of the eyedropper when I click on the Color Picker.
    Also, I am unable to access or manipulate any of the standard fill or stroke options for use of my pen.
    This is what I know.  
    Thanks for your help!   Matt
    Message was edited by: Matt Dubuque to add the fact that the video had been pasted on to a placeholder shape image by pressing Command Option "/" on my Mac.

    Thanks for pitching in Todd and Rick, I appreciate it very much.
    As previously stated, I do have use of the pen tool, but it only has limited functionality as demonstrated by the path I created on the green meadow.  My Tools Panel remains activated .
    My core problem remains that I am unable to adjust the fill or stroke settings for my pen.
    I have tried changing and resetting various work spaces and this has not helped.
    I'm scratching my head here.
    Matt

  • Creating a New Layer Using Icons in Adjustment Palette

    When creating a new layer using the icons in the adjustments palette and holding ALT in CS5 a dialog box would appear before creating the new layer.  At this point you could rename the layer change the blending mode etc.
    In CS6 I do not get the dialog box to appear the new layer is just created.  I've tried to reset my preference twice and this has not help. Any ideas?

    JJMack wrote:
    Your memory has failed
    On the contrary, your memory may have failed.
    ACJ81 is correct (at least as far as Ps on OS X is concerned) and the problem was mentioned in the forum not too long ago. In CS5, Alt-clicking an icon in Adjustments panel does cause a New Layer dialog to pop open and the dialog fails to appear in CS6.
    In CS6 and CS5, the dialog will appear if you pick an Adj Lyr from the Layer > New Adjustment Layer submenu, both with or without Alt modifier. (That lack of control over the appearance of an optional dialog when picking from a menu is an inconsistency in the interface.)
    In CS6 and CS5, the dialog will appear if you Alt-click the black and white circle at bottom of Layers panel then pick an Adj Lyr from the menu, as Noel said.

  • Creating a new layer request...

    Does anyone know of a plugin that when creating a new layer, the name of the layer is immediately editable or which brings up a dialog window prompting you to name it, as in photoshop and illustrator?
    This would really speed things up.
    Thanks,

    Yeah I knew that but it means you gotta use the mouse to click on it which just a pain all the time. I avoid using the mouse whenever possible.
    I was hoping a new layer with the name immediately editable could be done with one gesture.
    For example in photoshop, you do the short cut for new layer which is ⌥⌘N and that brings up a window with the layer name immediately editable. No mouse needed.
    Thanks for your help anyway!

  • Problem with Photoshop Elements 11 - I am trying to create a fill layer

    I am trying to create a fill layer.  I am really missing something but I don't know what it is.  I bring up a photo, go into Expert. i click layer at the top then click new fill layer and solid colour. It all works but then that is all that I can see and I cannot make it a background and put the picture in it.

    Elements has its own  forum Photoshop Elements
    Element most likely has more the one way to do that.   Photoshop does.  In Elements advance mode in the layer palette the is an Icon the can be use to add different types of layers and the layer menu also has items to add  different type of layers.

  • Why do vector lines appear different in my Photoshop document compared to the PDF that was created using "Scripts Layer Comps to PDF"? And how do I get them to look the same?

    Why do vector lines appear different in my Photoshop document compared to the PDF that was created using "Scripts > Layer Comps to PDF"? And how do I get them to look the same?

    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, what troubleshooting steps you have taken so far, what error message(s) you receive, if having issues opening raw files also the exact camera make and model that generated them, etc., someone may be able to help you.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • How can I create a text layer

    I would like to know how  to create a text layer that I can place on any photo I choose

    You could create a watermark using fixed text or symbols.
    See if this video tutorial helps:
    https://www.youtube.com/watch?v=iH5mNvjuI10

  • I built an ad using layers saved it and then converted it to a jpeg. Now when I go into elements 11 to do anything else it will not allow to copy and paste to create a new layer. What am I missing?

    I built an ad using layers saved it and then converted it to a jpeg. Now when I go into elements 11 to do anything else it will not allow to copy and paste to create a new layer. What am I missing?

    You know that you lost the layers when you saved it as a jpeg, right? But you're saying you can't add layers to the jpeg now when it's open in the editor? Go to Image>mode and be sure it's RGB, for starters. Are all the commands in the Layer menu grayed out?

  • Cannot create a new layer when opening a gif

    Using Photoshop Elements 8, I open a gif that I want to change the text for. I open the file and the first thing I want to do is create a new layer, but I am not able to. the New Layer button in the layers area is disabled, as is the Layers menu.  How do fix this?

    Since, animated .gif has got changed when opening in PSE9 so here is the alternative
    You can always save your layered psd file which you convert to animated gif so in case you want to modify anything you can do it in .psd file and then create another animated .gif for your use.
    -Garry

  • Unable to create Business Foundation Layer in XI4 IDT using OLAP connection

    Hi,
    I have created a BICS connection against an SAP BW cube and want to use this connection in order to build a Business Layer in XI4 Information Design Tool. When I try to map this connection to the business layer, it errors out "Error occurred during connection selection - Connection is not supported".
    I'm currently using BO XI4 SP1 and SAP BI NW Eh1 SP6.
    Can anyone throw some light on how to create a Business Layer/Universe against an SAP BW cube?
    Also, can we query ECC systems using the new semantic layer in XI4 from WebI?
    Thanks in advance.
    Abhi

    Hi,
    I'm getting the same error. Did you already solve the problem?
    Kind regards,
    Eric
    Edit:
    Hi,
    i found this in another thread:
    [Information Design Tool and SAP BICS|Information Design Tool and SAP BICS;
    Seems like SAP doesn't want to enable Universes on OLAP-Connections?!
    Regards,
    Eric
    Edited by: Eric REDLIN on Jun 24, 2011 4:49 PM

  • How to create a "dummy" layer to link other layers to the dummy.

    Here is my problem:
    I have a bunch of Layers, I want to behave the same way (here scaling, but I had also rotation before). My approach (as used formerly with my 3D applications) is to create a "dummy" layer, where the channnels of the other layers are linked to. For this I used the "Placeholder" item, but rendering obviously got me an error message, because the "placeholder" is intended for other use.
    So my question: How do you solve such a situation the intended way?
    L.

    Found the possible answer by sniffing on other peoples problems: The dummy is called "Null" here!
    Unfortunetly, I cannot offer to myself the 10 points!

  • How do you create a new layer in a specific group layer?

    I'm trying to work within a particular group and every time I click the new layer button or paste a jpg image into the document, the new items appear at the very top of the layers panel and I have to move it down the list and place it in the group I'm working in.  Is it possible to paste an image or create a new layer so that it appears in a specific layer  group?

    Yes, but you need to from your layers palette flyout menu remove the check in front of paste remembers layers.
    Or else the bitmaps in your clipboard have no illustrator layer assigned, therefore Illustrator creates or adds to an existing layer 1.

  • How do I stop Photoshop CS4 from creating a new layer each time I use the line tool?

    How do I stop Photoshop CS4 from creating a new layer each time I use the line tool?
    Each time I use the line tool, a new layer is created. How can I stop this? No settings were changed.
    Thanks in advance.

    Look at the three options in the top bar.

Maybe you are looking for

  • Can't launch Safari after upgrade to 10.5

    Dang Upgraded to Leopard (OS 10.5) from 10.4.11. When launching Safari, it refused to start and sent me error message "PithHelmet version xxx.xx.x hasnt been tested with Safari 3.x so it won't launch." After that, I have disabled and removed PithHelm

  • Turning Tables in ABAP for ALV Display

    Dear all, I am running in a (for me) tricky problem: I read any table definitions from the dictionary with function "DDIF_TABL_GET". In the next step I want to build a ALV Grid that displays some of the read data but not in rows but in lines. Ok how

  • File name to print with your image (PS3)

    Hi, I'm working on about 20ish photoshop images that have a specific name to match up to a diagram, so when I print them I need the file name lable to appear on the print with it. Additionally when I send them off to clients, I need to have that file

  • System management software for LV apps on cRIO and Windows

    Hello All, Were I work there is a LabVIEW based project that is a distributed system. This system has a main application that can run on Linux, Windows, or cRIO targets. The main application loads "plugins" depending on what platform it is on to do p

  • Everytime itunes updates, my library disappears.

    Have set up itunes to look for auto updates.  But whenever it updates I have to reinstall my library.  Then it creates multiple versions of the songs in my computer's music library.  Does anyone else have this issue?  Using itunes 10.5.1 and Windows