2 part compilation dvd

I have a two-disc DVD set and when i have copied them to iTunes (11) they are imported as two separate DVDs (movies), despite them being the same name and data.
Is there anyway of grouping a 2 part DVD as one DVD.
I know you can do it if I set the Media Kind to TV Show, but I am reluctant to do this as they won't then show up in my main Movie Tab and they are not a TV show after all. 

Best is two pass 6.2, and the other is one pass.
What problems do you have opening the files?
Are you trying to open the m2v files?
Do you have the MPEG2 playback component?
Thanks David,
The reason I asked about the diffrences in the encoding in Compressor is I am doing a job that I am half way throgh and thought I may save a bit of time encodeing usig 90 Min. fast encode as opposed to the High quality encode. IF there is not much quality difference and I may save time I'll use it.
I cannot open my compresspr file in QT (7.03) as everytime I try after a few seconds the computer says QT is not responding.
If you can help it's appreciated.
Thanks
Jeff
G4 DP 1 GIG G4 laptop 1.25   Mac OS X (10.4.3)  

Similar Messages

  • Copying part of DVD

    I recently converted some VHS tapes to DVD. I would like to take parts of different DVDs and put them on new ones for different family members. Can I do this?

    yes but you may take a slight quality hit.
    http://www.dvdxdv.com/

  • Help! Compiled DVD starts at wrong menu but fine in simulator

    This is my first DVD Studio Pro project and this problem is frustrating: everything is perfect in simulator however when I Build/Format the image the DVD starts at a sub menu instead of the disclaimer set to autoplay.
    As I inspected the log file while compiling, DVDSP thinks this particular sub menu is Menu#1:
    Starting DVD Build PVP_VOL1...
    Compiler Initializing...
    Precompiling Project PVP_VOL1
    Compiling VMG Information...
    Created 37 PGCs in VTSM1
    Created 5 PGCs in VTSM2
    Created 5 PGCs in VTSM3
    Created 10 PGCs in VMG.
    8 Menu(s) will be created...
    Compiling Menu PGCs...
    Compiling Menu PGCs...
    *Compiling Menu#1 (Season 2 Menu-2)...*
    Menu#1 should be 'disclaimer' or 'title menu.' I have no clue why it chooses that particular sub menu during the build and why everything working correctly in simulator.
    Any ideas?

    Could be that you set first play to be that menu (simulator may be inaccurate or you could have accidently set it to play a menu as oppossed to the beginning of the disc)
    Is the disclaimer a track or a menu? Any scripts or straight jumps from one to the next? Which players are you trying this on?
    Not that this should be an issue, but you can also look at the menu layouts it VTS view to see what order they are in as far as DVD SP is concerned. In other words if you move things around in outline view, the VTS may not change.

  • No Sound on parts of DVD after Burn

    I have created a movie in iMovie, brought into iDVD and when I play the DVD IN iDVD, it works great. But after I burn it to the DVD the menus have sound, but the Movie does not. I'm stumped, any ideas?

    f you recorded your video in 16-bit and not 12-bit and you're sure that's not the problem here, then check that this is set correctly:
    In utilities
    Audio MIDI Setup.app
    then set
    Audio input/Format to 44100.0 Hz
    Some programs reset the Audio, & it must be 44100 for iDVD
    Or you could try to File Save As Disk Image. Then use Toast to burn.
    Sue

  • Only part of DVD will play in QT 7

    I burned home videos to dvd. Only a certain segment of the dvd will play on qt. what am I doing wrong. The whole dvd plays fine on "DVD player".

    There are four .VOB files and only the first (which is basically usless) and the last have any size to them at all. The other to .VOB files have "zero kb"!
    The QT Player only loads on file (VOB) at a time. If you opt to open multiple files (VOBs) simultaneously, they will open in multiple QT players. Therefore, if your 4 VOBs represent a single "Title" (i.e., series like VTS051.VOB, VTS052.VOB, VTS053.VOB, VTS054.VOB,) and you want to open them as a single segmented stream for sequential playback, then use an application like MPEG Streamclip or VLC here. Since it appears you already have the QT MPEG-2 Playback component installed, I would use MPEG Streamclip. If the VOBs represent multiple titles, I would still open the VOBs in MPEG Streamclip since it scans for timecode breaks as it opens the VOB(s) but may or may not catch them all. (I usually perform an manual "fix" even if I don't get a warning while loading file(s). In any case, you can then always convert the VOB(s) to a fully compatible QT format if you want.

  • Inheritance problem first part compiles, but can't get the rest to compile.

    Here is the assignment :Lab #8, Objects, Inheritance and Polymorphism
    Purpose of Lab: Be able to:
    Write a Java program that defines, loads, and uses an array of objects.
    Create objects of classes.
    Understand the notion of polymorphism.
    Write superclasses and subclasses.
    Create objects of superclasses and subclasses.
    Instructions:
    1. Write an Abstract Data Type called Animal. Include two instance variables in this class: a String for name and an integer for age. Write a constructor method that takes two arguments and a second constructor that takes no arguments. Write get and set methods for each of the two instance variables. Write a toString method which displays the values of the instance variables for any object of type Animal. Write a speak method that takes no arguments, returns nothing and displays ?Arg! Arg!? on the monitor.
    2. Write a second class called Duck, a subclass of class Animal. Add an additional instance variable to those inherited from Animal: an integer called feathers (this variable is used to store the number of feathers that a particular Duck object has). Write a constructor that takes three arguments and another constructor that takes no arguments. Provide set and get methods for the feathers instance variable. Override the toString method to display the values of all instance variables belonging to a Duck type of object. Override the speak method to display a value of ?Quack! Quack!?.
    3. Write a third class called Cow, also a subclass of class Animal. Add an additional instance variable to those inherited from Animal: an integer called spots (this variable is used to store the number of spots feathers that a particular Cow object has). Write a constructor that takes three arguments and another constructor that takes no arguments. Override the toString method to display the values of all instance variables belonging to a Cow type of object. Override the speak method to display a value of ?Mooo! Mooo!?.
    4. Finally, enter, compile and execute the Farm class shown below. Make sure that all of your classes (Animal, Duck, Cow and Farm) are in the same folder. Compile all of the classes. Run the Farm program. Answer the questions below. Here is my code so far: public class Animals{
        private String name;
        private int age;
        public Animals()
        public Animals( String nVal, int ageVal)
            name =nVal;
            age = ageVal;
        public void setN(String nVal)
            name = nVal;
        public String getN()
    return name;
    public void setA( int ageVal)
    age = ageVal;
    public int getA()
        return age;
    public String toString()
        return "\nThe name is" + name +", and the age is" + age + ".";
    public class Duck extends Animals
    private int feathers;
    public Duck()
        super();
        public Duck(String nVal, int ageVal)
        super(nVal,ageVal);
        feathers = feathersVal;
        public void setFeathers(int feathersVal)
        feathers= feathersVal;
        public int getFeathers()
            return feathers;
        public String toString()
        return  "\nThe name is" + super.getN() + ", and the age is" + super.getA()
        + "\n The Duck's feathers are" +feathers+ ".";
    public class Cow extends Animals
        private int spots;
        public Cow(int spots)
            super();
            public Cow(String nVal, int spotsVal)
            super(spots);
                spotsColor = spots;
                public void setSpots(int spots)
            spots= spotsColor;
                public int getSpots();
        public String toString()
            return  "\nThe name is" +super.getN()+ ", and the age is" + super.getA()
            + "\n The Duck's feathers are" +feathers+ "\nThe Cow's spots are" +spots+".";
    import javax.swing.JOptionPane.JOption;
    import javax.swing.*;
    public class Farm
        public static void main( String[] args );
        Animals[]farmAnimals = new Animals[4];
                farmAnimals[0] = new Animals("Animals", 3);
                farmAnimals[1] = new Duck("Duck","green,grey feathers");
                farmAnimals[2] = new Cow("Cow", 3, "brown white spots");any help greatly appreciated last assignment of the semester!

    Here is the assignment :Lab #8, Objects, Inheritance and Polymorphism
    Purpose of Lab: Be able to:
    Write a Java program that defines, loads, and uses an array of objects.
    Create objects of classes.
    Understand the notion of polymorphism.
    Write superclasses and subclasses.
    Create objects of superclasses and subclasses.
    Instructions:
    1. Write an Abstract Data Type called Animal. Include two instance variables in this class: a String for name and an integer for age. Write a constructor method that takes two arguments and a second constructor that takes no arguments. Write get and set methods for each of the two instance variables. Write a toString method which displays the values of the instance variables for any object of type Animal. Write a speak method that takes no arguments, returns nothing and displays ?Arg! Arg!? on the monitor.
    2. Write a second class called Duck, a subclass of class Animal. Add an additional instance variable to those inherited from Animal: an integer called feathers (this variable is used to store the number of feathers that a particular Duck object has). Write a constructor that takes three arguments and another constructor that takes no arguments. Provide set and get methods for the feathers instance variable. Override the toString method to display the values of all instance variables belonging to a Duck type of object. Override the speak method to display a value of ?Quack! Quack!?.
    3. Write a third class called Cow, also a subclass of class Animal. Add an additional instance variable to those inherited from Animal: an integer called spots (this variable is used to store the number of spots feathers that a particular Cow object has). Write a constructor that takes three arguments and another constructor that takes no arguments. Override the toString method to display the values of all instance variables belonging to a Cow type of object. Override the speak method to display a value of ?Mooo! Mooo!?.
    4. Finally, enter, compile and execute the Farm class shown below. Make sure that all of your classes (Animal, Duck, Cow and Farm) are in the same folder. Compile all of the classes. Run the Farm program. Answer the questions below. Here is my code so far:
    public class Animals{
    private String name;
    private int age;
    public Animals()
    public Animals( String nVal, int ageVal) }
    name =nVal;
    age = ageVal;
    public void setN(String nVal)
    name = nVal;
    public String getN()
    return name;
    public void setA( int ageVal)
    age = ageVal;
    public int getA()
    return age;
    public String toString()
    return "\nThe name is"+name+ , and the age is" + age + ".";
    {code}{code}
    {code}{code}
    public class Duck extends Animals
    private int feathers;
    public Duck()
    super();
    public Duck(String nVal, int ageVal)
    super(nVal,ageVal);
    feathers = feathersVal;
    public void setFeathers(int feathersVal)
    feathers= feathersVal;
    public int getFeathers()
    return feathers;
    public String toString()
    return "\nThe name is" + super.getN() + ", and the age is" + super.getA()
    + "\n The Duck's feathers are" +feathers+ ".";
    {code}{code}
    {code}{code}
    public class Cow extends Animals
    private int spots;
    public Cow(int spots)
    super();
    public Cow(String nVal, int spotsVal)
    super(spots);
    spotsColor = spots;
    public void setSpots(int spots)
    spots= spotsColor;
    public int getSpots();
    public String toString()
    return "string1" + variable1 + "string2" + variable2;
    {code}{code}
    {code}{code}
    import javax.swing.JOptionPane.JOption;
    import javax.swing.*;
    public class Farm
    public static void main( String[] args ){
    Animals[]farmAnimals = new Animals[4];
    farmAnimals[0] = new Animals("Animals", 3);
    farmAnimals[1] = new Duck("Duck","green,grey feathers");
    farmAnimals[2] = new Cow("Cow", 3, "brown white spots");
    {code}{code}
    In Duck The compile errors are as follows:java1: cannot find symbol symbol class Duck extends Animals with the caret under A in Animals
    java 13 same as above but for feathers = feathersVal; with the caret under f in feathersVal
    java 25 same error caret under s in both supers
    Cow has 1 error in java 20 class,interface,or enum expected caret under S in String
    Farm a parsing error at last brace but when I add another ending brace i get
    java1 cannot find symbol class JOption caret under period between JOptionPane.JOption
    java 9 cannot find symbol caret under A in Animals[]farm etc also under A in new Animals
    java 10 cannot find symbol caret under D in Duck
    java 12 cannot find symbol caret under C in new Cow

  • Why did HandBrake only copy part of DVD? It shows chapter 1-17 but only got 17 sec. ?

    It shows chapter 1-17 but only got 17 sec.? I downloaded newest versions of HandBrake and vlc 64 bit. I went through the copying process twice and when I opened the movie I  only got 17 sec and a still picture - different one each time. It took and hour or more to copy each time. What else can I do?

    You have to select the chapter on the DVD which represents the entire video you want to encode.
    If the video is made up of 17 seperate chapters, you have to select each chapter individually and add each one to the Queue. Once all 17 are in the queue, click start and the 17 chapters will be encoded into 17 seperate files.
    What version of VLC player did you get? If it was version 2, you may need the additional vlc library. Just do a search and the result is readily available

  • Je ne peux pas installer Photoshop Elements à partir du DVD . Je suis sur Mac . Je bute sur Connection requise qui tourne indéfiniment ...

    Je ne comprends pas l'anglais

    Voici, en Anglais, un Blog qui montre la suite des opérations: http://blogs.adobe.com/richardcurtis/?p=1258
    Quel programme vous donne ce message d'erreur?
    avez-vous essayé le creative suite cleaner tool? http://www.adobe.com/fr/support/contact/cscleanertool.html

  • DVD DL with a DVD-rom part

    Hi,
    With DVD SP 3.0.2, I'm trying to burn a DVD-DL, containing a DVD-video part (2,1 Go) and a DVD-rom part (4 Go). The layer is set to Dual and the Break Point is set to Automatic. DVD SP reports an error :
    "Formatting Failed.
    Formatting was not successful. A suitable marker could not be found in the required layer break range. See DVD manual for more information."
    I think that the problem is that the DVD-rom part is bigger than the DVD-video one, and a marker can only be on the video part. As layer 0 needs to be larger than Layer 1, the break point should be on the DVD-rom part. DVD SP3 seems unable to do this. Does further versions of DVD SP can do it ?
    I also thought of burning with Toast, but I don't think that Toast will include the DVDaccess function. Am I right ?
    If anyone as an idea that could help me...thanks !

    Do you have any markers in the video towards the end of the video? If not try adding one and seeing if that helps.
    How big is the video? (size) Did you do a build? You could also add/duplicate the track and add chapter markers in there to force things if needed.
    Take a look at these threads, there are others but this should help..
    http://discussions.apple.com/thread.jspa?messageID=8096861&#8096861
    http://discussions.apple.com/thread.jspa?messageID=7721738&#7721738

  • Script wont work after building/burning dvd

    Hi everyone,
    I have a problem with a HUGE dvd-project I'm working on at the moment. It's a compilation dvd with 50 different short videos and approximately 55 menus. a large part of the 50 videos is connected through the menus with 201 unique buttons.
    First I made different stories to be sure the viewer gets directed to the menu he/she came from when a video ends. But because the project became too big (99 tracks and or stories is the maximum) I got into scripting.
    I thought I actually managed to write the right scripts, but now it seems that a stand alone dvd-player doesn't recognize the scripts. Every time a video ends or I use the menu button on the remote control the (first) main menu appears.
    *So my question for all the friendly folks out there on the other end of the glass fiber-cable is: What can I do to make it work? Is this a problem someone recognizes? Is it my scripting? Is there a way to work around scripting?*
    If you need more info please let me know. I wanted to keep it as short as possible at first, but I can elaborate some more if needed.
    thanks in advance
    ciao!

    As already said, the pre-scripting is usually the culprit... and as StudioX said, I \did leave much of the detail out in that article, which was intended to build on from other sources, such as the manual!
    If you remove the setting which puts the scripts as prescripts, and be explicit with the menu jumps (i.e. write them out in full each time and don't rely on 'current item' and dividing by '32'), then the scripting should work.
    Additionally, the script lines you quote in your prescript may not work, depending on where you are in the disc when they are run. The very first script you create will have a value of 63489, which when you divide by 32 gives just over 1984, so will be rounded to either 1984 or 1985. Since this does not equate to any menu item then the jump cannot work, since GPRM3 will never be equal to '1'. As a result the disc reverts to the main menu.
    To make this more reliable you need to work out the value of the last item, which if it is track or story 1 will be 49280. Story 2 in track 1 will be 49408, story 3 49536. This continues even if you then go to a new track. Knowing this the maths then to get to a menu is easier.
    If you 'get last item' and know that you are coming from a track or story then you can subtract 49280 and divide by 128. If you are on track or story 1 then the result is zero. Otherwise it is going to be 1, 2, 3, etc. If you know which clips you access from each menu then you can add a series of 'if' statements, for example:
    Jump menu1 If (GPRM3 <= 20)
    Which would mean anything up to your first 20 clips would send you back to menu1.
    You can then add in the button jump before this statement and you should be getting closer to what you need.

  • [USEFUL] Howto convert .avi etc to DVD

    Hi guys,
    Dunno about anyone else, but I've been looking for ages for a way to convert various movie types into something that can be watched on a DVD player.
    I've seen a few scripts about, but nothing concrete. Just got a DVD writer yesterday, and found a very nice HowTo over at the Gentoo forums, here.
    I'm going to give it a try today - anyone know how long encoding takes? Because there's no progress bar for CLI, heh.
    Hope people find that useful, credit to the author.
    T.

    I did this one time for a 3-hour-during movie.
    I used transcode for it with meg2enc-plugin and converted the audio to ac3. You may have to upscale the movie to anamorphic 16:9 (all commercial dvd's are in this format I believe) ... What is this or do you know it already ?
    anamorphic dvd: Well the total numbers of pixels form a 4:3-image, but the movie is actually 16:9 (the image is stretched vertically). You can use yuvscaler with the bicubic algorithm for this (I believe). I gives very nice results!!! I tried some other algorithms and I have to say the bicubic algorithm is very nice. I couldn't really say the movie was upscaled.
    So you have to upscale to (for PAL) 768*576 (I think ....) (no black borders).
    How did I do this ? If you want to know this, I don't know immedialty again, but if you're really interested I can spend some time on it ...
    Anyway, I highly suggest recompiling transcode and all it's dependencies from source ... and look at the configure-options and sometime add some options .. like with ffmpeg you can see if your cpu supports the cmov-instruction and also ne sure to have -march=<your cpu-type>. Every optimization is welcome !!! For me it is athlon-tbird for athlon thunderbird. Maybe throw an O3 in it. I also have -fomit-frame-pointer. You can set these in /etc/makepkg.conf I believe (or something like that).
    Well the movie I transcode from divx or xvid to mpeg-2 (dvd) had a 3-hour duration and it took me 18 hours to transcode it ... I have to say the upscaling doubled the time ... I didn't know what I should do or knowed precisely what anamophic dvd was, so did some things twice ... I really suggest compiling things yourself with as most optimisations as possible! I first didn't optimise the scaling part and then it took 28 hours ...
    I have an athlon-thunderbird 900 Mhz 128 MB ram.
    The rest goes quicker ... You don't really haev to make menu's if you want, just specify the mpeg-2-movie-parts in dvd-author and make your dvd-directories that you can burn to dvd. You can also add multiple subtitle-translations if you want.
    It takes some while to learn ...
    If I remember well ... (I don't know if I transcoded to mpeg-2 before upscaling or not .. although upscaling first is maybe better)
    There was also an incompatibilty between transcode and yuvscalers YUV4MPEG2-format. Transcode exported the old format I think ... myabe it's solved now ... else you need to use an older mpjpegtools(for yuvscaler) I think.
    (It can also be wise to do a picture pass-through so there are as much audio-parts as picture parts ... to have less chance on desynchronisation I think ... I'm not sure about this though and about the method. You can export the audio to a separate file ... with the -m options(?) of transcode ... but not necessary maybe ... )
    Transcode the audio to ac3-format ... that -E 48000 is also important I believe (saw it on your gentoo-link). I suppose players only play some formats only ... ?
    so ... to upscale: if you splitted the audio and video already, export the video to yuv4mpeg and specify as outputfile /dev/output and pipe (|) it to yuvscaler. You can then pipe it to mpeg2enc to transclode it to mpeg-2-format. I'm not sure if I did it this way ... you can maybe also use transcode again instead of mpeg2enc. There is also ffmpeg ... but I used mpeg2enc. For mpeg-2-generation use  best-quality-output. I believe the lower the Quantisation-number the better thr quality(every part of the imahe is divied by a number I believe and the lower that number the higher the numbers stay ... lesser 0-values you'll have and so lesser is thrown away I think .... ), but maybe there is a simple option for this.
    You can multiplex the audio and video-stream to an mpeg-2stream ... with mplex or so I think.
    Then use dvd-author to create the dvd-structure, ....
    A divx can be nto so standard or so (or faulty) which can give problems ... the above passthrough for equal audio/video-parts can maybe help ... or use of mplayer pass-through wich can maybe help. It gave me some headaches ...
    Well hopes this helps a bit ...

  • Problems with mavericks dvd player

    Has anyone noticed that dvd scripting is poorly implemented in Mavericks?
    I have a dvd with a nested script to randomly select from among 48 tracks on a dvd.
    Since that exceeds script length limitations, I had to break the script down into 3 parts:
    1. A master script which decides whether to choose script 1 (items 1-24) or Script 2 (items 25-48)
    2. Script 1 which chooses from among tracks 1-24
    3. Script 2 which chooses from among tracks 25-48.
    Each track has the jump to set to the master script.
    This used to run fine under 10.8.6 and it runs find on a normal dvd player.
    Problem is: it doesn't run under Mavericks. The Mavericks dvd player simply ignores the master script after the first iteration and once it selects script one or script 2 it only will play back tracks from whichever script it selected the first time.
    This is a huge defect.
    I've tried adding a line to my code at the beginning of each script to reset the variable controlled by the master script to 0 (I use 1 or 2 to decide which script to choose). It seems to be ignoring the jump command of the tracks to return to the master script and will only return to the script which controls its playback.
    Any hope Apple that you will fix this?
    Keith

    Too bad I have to reply to myself in order to correct something:
    It seems the compiled DVD doesn't run under 10.8.6 either, but it runs FINE on a real dvd, runs fine in simulate mode in DVD Studio Pro. But for some reason even though DVDs are restricted to 124 lines of code, DVD studio Pro refuses to compile my script when I make it a mere 50 lines long. Anyone have a solution for that? I really need this to run from a harddrive so I can automate the playback. I'm trying anything I can to rewrite the script to conform to the limitations of the Apple DVD player though those are not stated clearly anywhere I can find. Does anyone know those limitations?

  • Using DVD made from VHS tape (sound only) - won't load

    A few years ago I transferred my classical music collection from reel-to-reel tape and LPs to VHS tapes. These worked very well in a VCR.
    Now I tried to load the contents of these DVDs insto the IPOD via ITUNES. They were not recognized, however. The DVDs were DVD-R and DVD-RW.
    Is there any way a get this material into an IPOD>

    I am confused.
    You went reel to reel to VHS tapes-suddenly you switch to talking about DVD's?
    iTunes does not recognize audio DVD's(I think, I know it will not burn them).
    Since for the most part audio DVD's were/are a flop, I don't know of any program that would recognize them.

  • Using Qmaster with DVD Studio Pro OR Qmaster requires FCP on all machines?

    Greetings everyone,
    After a few days of tinkering I've finally managed to set up a managed cluster. However, I have a problem (surprise, surprise). When I submit a job to the cluster, Final Cut Pro suddenly opens up on all of the computers being used. I have Final Cut Studio 2 under an academic license, and all copies report that there is another copy running with the same serial number and that they must shut down. They render a few frames before suddenly quitting the job, regardless of whether I leave the message up or OK it away. I've done some reading from this thread which makes it sound like all systems must have a copy of FCP installed, or to use a slightly different method:
    http://discussions.apple.com/thread.jspa?threadID=375923&tstart=195
    It's a bit upsetting as I'd originally read that systems could aid in rendering with just QMaster installed, and that they didn't need FCP installed. Hence, having FCP open up was unexpected, and I get the feeling that uninstalling FCP from those systems wouldn't help me.
    But let me explain what I do normally, and perhaps some of you can guide me.
    My work has me converting hundreds of tapes to DVD. Without QMaster, I would import the videos in Final Cut Pro, set chapter markers and in and out points, and then export the video (with barely any processing - an export typically takes 4 minutes on a dual 800 Mhz G4). I'd then import it to DVD Studio Pro, handle the menus, and then do a build and format. That process would take ~2-3 hours per DVD, and that is the part that I'd like to optimize.
    The setup is such that I have one dual G5 wired to our hard drives (all Firewire 800), and then four other systems that connect to the G5 to access the HDs through a gigabit network switch. This has worked quite nicely in that it allows systems that only have Firewire 400 to work at Firewire 800 speeds regardless.
    I'd originally thought that DVD Studio Pro 4 would automatically be able to process jobs through Qmaster, but I couldn't find a setting for it and it didn't seem to do it on its own. Instead, I was planning to redo my work flow such that the encoding of the video (the most time-consuming part of DVD Studio Pro's build procedure) would be done in Final Cut Pro. Or more specifically, it would go through Compressor. However, as I mentioned above, attempting to work this way causes Final Cut Pro to open up on all nodes within the cluster. As they all have the same serial number, they become unhappy under such conditions. I can uninstall them from the systems as I only ever use one copy at a time anyway, but as I mentioned from the link above, it seems that rendering through FCP -> Compressor will require FCP to be installed on all participating systems.
    Does anyone have any advice for what to do? Is there a way to get around having FCP activate on all participating systems, or is there a way to do it directly through DVD Studio Pro (ideally in a manner that wouldn't cause DVD Studio Pro to activate on all participating systems)?
    Any advice is much appreciated. The distributed encoding is really the only reason why we upgraded to Final Cut Studio 2, so I'm going to feel rather foolish if this doesn't work out.

    A QCluster network isn't designed to distribute Rendering from FCP, rather it's designed to distribute encoding tasks.
    As mentioned in that thread you linked to, the best workflow I can think of in your situation is to export Quicktime reference movies from FCP, then bring those reference files into Compressor for distribution to the QCluster for the transcode to MPEG 2 for DVD. There is a wealth of good information in that thread.
    In short, if you attempt to use a Cluster to export from FCP, then all of your nodes will need to have separate licenses of FCP. But if you use the reference movie method, FCP is not required for the encoding.
    One question for clarification with your workflow, are you logging & capturing these clips then sending them directly to DVD? or are you editing them in a timeline prior to export to DVD?
    If you're just using FCP as your Log & Capture tool, then you can skip the reference movie step and just grab the captured clips in your Capture Scratch folder and send those directly to Compressor.

  • Is there a way to include a text document within the DVD?

    I am using Encore CS5. I do a DVD series. For the latest installment, I have been asked to include a 17 page document which the user could print from their computer or view from their TV, and which the main menu of the DVD would link to.
    Is this possible? I know I can include a text document on the disk,as part of DVD Rom materials, but I don't know if I can link to that via my DVD menu. Also, I don't think that would be viewable on a TV.
    On the other hand, I could include stills of the document (as a slideshow perhaps?) on the DVD and link to that ection via my main menu, but then it wouldn't really be printable from computer, like a text document would be, right?
    Anyone have any advice or anyone faced a similar challenge with including text materials as a menu option within a video DVD? (also to note, these are SD DVDs we are making, not blu ray)

    The printable option is the ROM. Include a menu in the DVD that explains this.
    You are correct, this can't be viewed on the computer. And yes, you can use a slideshow. Except that the text will be too tiny. The text will have to be formatted so that it is presented in reasonable chunks.
    Do a short sample, burn, and test it on both a upscaling HD as well as a traditional set.

Maybe you are looking for

  • Windows 7 wont install ('No Bootable Drive')

    This is EXACTLY what I've done: I've formatted and reformatted and partioned and wiped and formatted my hard drive innumerable times over the years. I have a Macbook Pro 4,1 (15-inch Early 2008). When I went to install Lion, I wanted a clean install,

  • Goods Receipt for Production Order

    Dear All, I am Creating a Production order manually and assigning the Project WBSE in Assignment Tab. Then i conformed the order. Now i am doing the MIGO for goods receipt against that Production Order. System is receiving the stock in Pant, not as a

  • Pages are appearing too big in my browser, help!

    Just downloaded my FireFox, opened it up and the pages are too big. I have to scroll around to see the full page of any site. I tried looking through the setting, but can't seem to find anything that fit the bill.

  • Problem with type size in design view CS3

    Has anyone experienced type in design view that is just too small to read? It seems to be inconsisent -- type is speced the same, but some of it is showing as 1 or 2 pt in my design view. Not having this problem in DW8. Probably something that I did

  • HOWTO: Handle a click event on a DAC TreeControl

    HOWTO: Handle a click event on a DAC TreeControl Goal: Handle the event that occurs when a user clicks on a new node of a DAC TreeControl. In this example the handler is simple - it just prints out the current node. You can try this example on the DA