What's best workflow for adding subtitle to existing dvd?

We have been requested to add a foreign language subtitle to an existing dvd. It was authored in DVDSP so we have the original files. The translators are requesting a QT or dvd with window dub of the timecode for timing. How would I do that if the assets are already encoded and in the DVDSP timeline?
Also, the project is setup on 5 tracks, many short chapters in each. Because the cost for translation is per file, it means we pay the minimum charge for each track which ends up being double than if we would have kept all the files on a single track. Other than re-authoring the dvd is there another way to do this and save the money. If I get a stl or son file of a long video stream can that file be broken into separate files for each of the tracks? Also looking for a better workflow for the future.

rshellhammer wrote:
...we have the original files. The translators are requesting a QT or dvd with window dub of the timecode for timing.
Take the file you used in Compressor to make the mpeg and make a mov file h.264 I believe will maintain the timecode.
Also, the project is setup on 5 tracks, many short chapters in each. Because the cost for translation is per file, it means we pay the minimum charge for each track which ends up being double than if we would have kept all the files on a single track. Other than re-authoring the dvd is there another way to do this and save the money.
No.
If I get a stl or son file of a long video stream can that file be broken into separate files for each of the tracks?
Not without a lot of work.
o| TonyTony |o

Similar Messages

  • Best workflow for burning Blu-ray and DVD

    Hi,
    What's the best workflow for effciency sake for burning both a Blu-ray and a DVD of the same project?
    Essientially I'd like to export and create a menu once, then be able to downrez to DVD. However, I'm not sure that is possible since blu-ray and DVD are differnt codecs.  
    Thank you

    The only way that you can get acceptable re-scaling of menus is to go from BR to DVD, and do the editing in Photoshop.  Simply re-scaling the menu here will not give acceptable results.
    I usually copy the various button layers from the BR menu to a new DVD menu file created using the provided Photoshop preset.  You will still have to do  some manual re-scaling and alignment.  The thing that has given me the most trouble over the years is round button highlights - a segment is often chopped off.  Font sizes will probably need adjusting too.
    Unless you are adept with handling layers and groups within Photoshop, it may be easier to start again.
    Any attempt to convert within Encore is unlikely to produce acceptable menus in my experience.

  • What is Best Practice for Adding Thousands of Tasks to CloudJob?

    I am looking for some guidance on adding lots of tasks to a CloudJob.
    I have thousands of tasks to add to a job, and several parent tasks running across multiple TVMs are participating in adding the new tasks to the job. However, I can reproduce my problem with a single task that tries to add new tasks to the job with
    a max degree of parallelism of 15.
    In each thread, I call IBatchClient.OpenWorkItemManager, then IWorkItemManager.GetJobAsync, then ICloudJob.AddTaskAsync, followed by ICloudJob.CommitAsync in order to add a new task. I will occasionally get a "Server encountered an internal error. Please
    try again after some time." exception. After I delay, and then retry the entire series of operations again (from OpenWorkItemManager all the way to ICloudJob.CommitAsync), I receive the "A task instance can only be added to a single job." exception.
    Since I am receiving these exceptions frequently, I am hoping that there is a better way to add a lot of tasks to the job. I see a way to add multiple tasks to a work item, but I don't know what the tasks will be ahead of time. I have to wait until I am
    well into processing the job before I know what new tasks need to be added to the job.

    Am I correct in assuming you're doing something like this?
    Parallel.For(0, 100, new ParallelOptions() { MaxDegreeOfParallelism = 15}, async (idx) =>
    IWorkItemManager manager = batchClient.OpenWorkItemManager();
    ICloudJob job = await manager.GetJobAsync("wiName", "jobName");
    await job.AddTaskAsync(new CloudTask("foo", "cmdline"));
    You are doing some extra exception handling and stuff too as well I assume.
    There are a few improvements you can/should make that ought to make your life easier.
    First, the GetJobAsync() call actually does a round trip to the server -- you can avoid doing this for every task you add and reduce your round trips by half:
    IWorkItemManager manager = batchClient.OpenWorkItemManager();
    ICloudJob job = manager.GetJob("wiName", "jobName");
    //Foo("Test", "Abc", "test");
    Parallel.For(0, 100, new ParallelOptions() { MaxDegreeOfParallelism = 15}, async (idx) =>
    await job.AddTaskAsync(new CloudTask("foo", "cmdline"));
    Even more than that, we provide a helper method which has this functionality and performs bulk adds behind the scenes, which will reduce your round trips by about a factor of 50-100.
    IWorkItemManager manager = batchClient.OpenWorkItemManager();
    List<ICloudTask> tasksToAdd = new List<ICloudTask>(); //Popualte this with your tasks
    await manager.AddTaskAsync("wiName", "jobName", tasksToAdd, new BatchClientParallelOptions() { MaxDegreeOfParallelism = 15 });
    Additionally, we have a way where you can configure a "retry policy" without having to manually do it yourself on every call.  It's pretty handy, you can set it on the BatchClient itself, or on an individual call, below you can see I set it
    on both (just to show you - in a real application usually you would just set it on the batchClient and be done with it -- it would then apply to all operations done by the batch client):
    IBatchClient batchClient = BatchClient.Connect("", new BatchCredentials());
    IRetryPolicy retryPolicy = new LinearRetry(TimeSpan.FromSeconds(5), 6);
    batchClient.CustomBehaviors.Add(new SetRetryPolicy(retryPolicy));
    IWorkItemManager manager = batchClient.OpenWorkItemManager();
    List<ICloudTask> tasksToAdd = new List<ICloudTask>(); //Popualte this with your tasks
    await manager.AddTaskAsync(
    "wiName",
    "jobName",
    tasksToAdd,
    new BatchClientParallelOptions() { MaxDegreeOfParallelism = 15 },
    additionalBehaviors: new List<BatchClientBehavior>() { new SetRetryPolicy(retryPolicy) });
    Also a clarification -- you cannot ever add tasks to a work item.  The method for add tasks happens to live on the "WorkItemManager" which a bit confusingly also manages job related stuff as well (since job is a child of work item). 
    Whenever you are adding tasks, you are always adding tasks to a job, so the "workItemManager" methods related to adding tasks all take job name as a parameter.
    Another issue you may be hitting has to do with .NETs service point manager... see:
    https://msdn.microsoft.com/en-us/library/system.net.servicepointmanager.defaultconnectionlimit%28v=vs.110%29.aspx
    You may want to set this property to be something larger than the default of 2.
    Now, it's possible after making the changes I suggested you still experience some issues -- give these changes a try and if you're still having issues come back and let us know what they are and we can help you improve the submission code further.
    You can also see the sample code for TextSearch which demonstates this in the JobManager task.
    https://code.msdn.microsoft.com/windowsazure/Azure-Batch-Sample-Text-87d08017/sourcecode?fileId=129811&pathId=1120079659
    Hope that helps,
    -Matt

  • What's best workflow for Keynote iMovie iDVD Burning

    I create a slideshow in Keynote each year for our 5th graders.  I then export as a QT movie and import it into iMovie to add chapters markers, titles, credits, etc.  I then export as a QT movie again to pull into iDVD.  I then add Menu's and then burn to a dvd.
    It seems like a lot of re-encoding.  It gets encoded coming out of Keynote, then again coming out of iMovie, then yet again when creating the DVD out of iDVD.
    Is this the proper workflow or is there something else that I should be doing? 
    By the way, which is best codec to export the video?  There's multiple choices when exporting from Keynote and then the same choices when exporting from iMovie.  Is there an ideal codec when the ultimate product is a standard-definition DVD?
    I'm running iWork '09 and iLife '11.

    You should be able to use the same encoding for out of Keynote and for all editing in iMovie and then out of iMovie so the only additional transcoding should be the final mpg-2 encoding in iDVD which actually creates a DVD.

  • What is best practice for adding copyright page, etc?

    Hi Folks,
    I'm using iBooks Author for the first time. When I added a copyright page using Insert > Pages > Section > Copyright, I get a loose page that I was able to drag in front of the table of contents. However, the copyright page now has no formatting. That is, it spans a full two-page spread without the page break in the middle, like the rest of the book. How can I get the the same format for pages before the TOC?
    Thanks,
    Rob

    iBooks Author will definitely need a code view feature to users can hack the XML manually and fix these things.
    While I don't see that happening , (a) you can show package contents and go nuts now, if you like and (b). feel free to use iBA's menu to feedback [ http://www.apple.com/feedback/ibooks-author.html ] for any features, changes, etc. you may have in mind for the future and (c) remember, the best defense is a good offense...best way to stay out of jams w/IBA is to not get into them in the first place...practice with different templates to see which may support specific needs.
    For use of the appllcation, if you haven't seen it already, try:
    Publishing With iBooks Author
    http://shop.oreilly.com/product/0636920025597.do

  • What is best workflow for D200 in light of no new news

    I have been shooting my D200 with JPEG and still switching between it and my D100 back. With ACR and Aperture still not reading D200 raw (the Nikon plugin is not that appealing)I have downloaded Bibble 4.5. Does a nice job, but do I need PRO? I would manual/batch into an aperture folder with an import folder action.
    I want to create WB adjusted files, I suppose 16bit TIFFs would be best(??), and then manage the rest in Aperture with occasional heavy editing or compositing being done in CS2.
    Are there other ideas?
    Thank you.
    Michael

    <...>
    I want to create WB adjusted files, I suppose 16bit
    TIFFs would be best(??), and then manage the rest in
    Aperture with occasional heavy editing or compositing
    being done in CS2.
    <...>
    That is exactly what I do, only I simply do a batch export in auto mode from my raw converter and then use Aperture to tweak white balance as needed. It works quite well. SO really anything you can throw D200 RAW files at and get a 16-bit TIFF out with good quality of detail will work well.
    I don't have a D200 but your workflow should be the same.

  • What is best workflow for interpret NTSC footage into PAL project?

    Premier Pro CC cutting a film for HD broadcast TV. Majority of footage shot PAL at 1080p, so I made a 1920 x 1080 25p project. Is it okay to make a progressive project for broadcast? Or should I switch to interlaced?
    I am supposed to deliver an NTSC tape to the network.
    Some footage is 29.97 and 23.97.  Is it okay to Interpret footage in bin as 25p PAL and then cut it into my sequence.  It seems to play properly; I'm just concerned about problems in the final output. I've read that people duplicate the clip, then interpret to 25fps PAL, and leave the original NTSC alone.  This sounds like a good idea. Working on a MacBook Pro Mountain Lion.
    When I output the final QT movie, what are the best settings and codec to use for the final
    Hi-Res output which I will bring on a drive to a post house to do final CC and layback to tape?
    Many thanks in advance.
    Patrice Shannon

    Convert NTSC <--> PAL http://forums.adobe.com/thread/1209530 may help

  • Best Workflow for HD content onto a DVD

    Hello to you all out there! Here's what I'd like to do...I want to be able to burn HD footage onto a DVD, but still watch it as HD footage. I know that DVD resolution is MUCH lower, and am looking for a workaround for that. So what I need help with is:
    1. What settings am I looking for as far as my export from Premiere CS5.5?
    2. What settings in Encore?
    Thanks in advance!

    Fortunately BD disks are not that expensive any more. Philips 10 disks are for $10, Titan BD 10 disks are under 10. Blu ray burners are under 100 dollars on newegg.
    So my point is, if the stuff is affordable,  why to go thru hoops and humps and complexity to create BD disks, if it could be done just the way it is meant to be done? Unless you have a lifetime supply of DVDs, or hard core DVD fan.

  • Best Workflow; HD to YouTube, iPhone, and DVD?

    Hi there. I'm currently editing a four and a half minute video in Final Cut Pro, which was shot on HDV 1080i, 30fps. To review my work, I've been exporting the timeline using the Apple ProRes 422 (HQ) 1440x1080 30p 48kHz setting. This creates a very beautiful, clear looking file, albeit a little large (roughly 4.5GB).
    I am going to need to export my video to three places; YouTube, iPhone, and burn on DVD. I was wondering what the best workflow for each of these you recommend.
    I'm completely unsure about YouTube, though I imagine for iPhone I could take the 4.5GB Quicktime file in Quicktime and do a File->Export using the Movie to iPhone setting. This would theoretically create the best quality file for iPhone, correct?
    Further, I know I could use Compressor to create .m2v file ready to burn on DVD using DVD Studio Pro, but what settings do you recommend? Since the video is so short, I would want the maximum bitrate, but don't want to set it so high that some DVD players can't play it. Thanks SO much in advance!

    I do basically the same thing you do, except at 24p instead of 30. My workflow for going to Youtube uses a pair of custom-crafted Compressor presets. First, I scale my ProRes 422 HQ reference movie down to 640x360, still in ProRes, with frame controls on. This gives me a really good downrez.
    Then I encode the resulting downrez to H.264 at 20 Mbps, with AAC audio at 256 Kbps. (Sometimes I have to tweak the bit rate of the picture to keep it under Youtube's one-gig hard ceiling. I recommend BitRate Pro for this; it lets you calculate the bit rate needed to encode a show of arbitrary length to a file under one gigabyte.) This is the file I upload, on the theory that giving them all the bits possible will result in the best possible final encode to Flash.
    The last step in my workflow is to stab the person who wanted me to deliver via Youtube.

  • What is the best workflow for Final Cut Pro X across multiple computers?

    I travel on a team that is in a different location every week, so all of our video editing has to be fairly moble. We have 3 macbook pros and would like to use final cut X on all of them. What would be the best workflow for us all to work on the same project and sync it across the computers? (eg, one of us editing the footage, one editing the sound, one working on visual effects?)

    My first question would be how well 5.1 would work with SL. People have reported problems.
    As far as cameras are concerned, I would guess most any tape-based camera would work and so much depends on the kind of projects you work on that I wouldn't want to start guessing at your needs.
    If you want broad access to tapeless and advanced formats try to locate and purchase an upgrade disk to 6 or 7.
    Good luck.
    Russ

  • What's best practice for logging messages in pageflow?

    What's best practice for logging messages in pageflow?
    Workshop complains when I try to use a Log4J logger by saying it's not serializable. Is there a context similar to JWSContext that you can get a logger from?
    There seems to be a big hole in the documentation on debug logging in workflows and JSP pages.
    thanks,
    Rodger...

    Make the configuration change in setDomainEnv.cmd. Find where the following variable is set:
    LOG4J_CONFIG_FILE
    and change it to your desired path.
    In your Global.app class, instantiate a static Logger like this:
    transient static Logger logger = Logger.getLogger(Global.class);
    You should be logging now as long as you have the categories and appenders configured properly in your log4j.xml file.

  • Best workflow for working on a project on two computers (i.e desktop and a

    What is the best workflow for the following--
    I have a project where I want to do some work on my laptop, then work on the desktop, then back to the laptop?
    As a video guy, in Final Cut I do this by having two identical copies of my media, and simply transferring the FCP project file back and forth between the two computers.
    Is there an equivalent in Aperture of transferring your selections/edits between two copies of Apeture with the original master files on both in identical projects?

    I don't know what you mean by "bandwidth options". If you mean the frequencies and bands the iPad can use with cell carriers, those are listed in the Wireless and Cellular area of the tech specs. For iPads sold in the US, see:
    http://www.apple.com/ipad-mini/specs/
    If that's not what you meant, please post back and clarify what you mean by "bandwidth options".
    Regards.

  • Best workflow for colour grading in CS5.5

    What is the best workflow for colour grading in Premiere Pro CS5.5? I don't like the 3 way colour grader in Premire I like to use Levels and Curves, so I normaly use Color Finese 3 LE in After Effects but it's hard to export an entire timeline to AE due to it not improting transitions and title text correctly.
    I see in CS6 there is now Speed Grade available from Premiere Pro. can you export your entire timeline into Speed grade and it retain your titles and trasitions?
    So how are most folks colour grading their finished timelines in Premire Pro?
    Kevin

    If I can CC in Pr, I will. What prevents me from staying in Pr is if I need to do a lot of masking, secondary type corrections.  Ae is better for that, IMO.
    I guess my general rule is, "The more love I need to put on my footage, the more likely it is I'll need to take the project to Ae."
    When I do CC in Pr, my tools of choice are RGB Curves (which is CUDA friendly, and I have a CUDA card) for CC, and I use Three-Way or Fast CC mostly for increasing saturation.  I leave the other controls alone.
    The advantage to doing CC in Pr, is the CUDA accelleration.  If you use CUDA effects, you can work a lot faster, due to less rendering.  Once you go to Ae, you lose CUDA, but you gain flexibility.  Therefore, there's not a single one-size-fits-all answer.
    I also have a lot more available plugs in Ae.  I like Frischluft Curves, which is an oustanding curves based plug.  And the native Hue/Saturation effect in Ae is extremely useful for single hue corrections.  Pr doesn't have a similar native effect.
    And then as a last step, after getting all my corrections "evened out," I'll add Magic Bullet Looks to an adjustment layer for an overall treatment.
    I only opened SpeedGrade once after installing it.  I don't see why anybody would use it, unless they were already familiar with it.  You can't go back to Pr easily.  And in my world, projects are rarely finished.  Clients think they can make massive changes at any stage of post, even after mastering and delivery.  I've had clients make changes to spots after they've been airing for several days.  I laugh at editors who name anything "final."

  • Best Workflow for Multicam Sequences?

    I have a project that includes video from 2 cameras and audio from 2 audio recorders. I synced everything up using PluralEyes, then imported it back into Premiere. Then I opened the synced sequence, deleted the camera audio, nested the video, and enabled multicam. After that, I started going through and editing the multicam footage by selecting the appropriate camera by pressing 1 or 2 (or command-clicking on the appropriate camera in multicam view). My question is, now that I've synced everything up and finished my rough multicam edits, how do I mark the selections of the sequence that I would like to keep?
    For example, part of the sequence is an interview. Instead of just cutting the sequence up, I would like to first mark and label the portions of the interview that I would like to keep. That way I can easily go through and know what the interviewee is speaking about in each clip without having to play the whole thing. I understand that to do this on the original clips in the source monitor, I would need to create subclips. But how do I do it on a synced multicam sequence? Is there a way to open the sequence in the source monitor? What's the best workflow for something like this?
    I've been using Premiere for all of two days (switched from FCPX), so any help would be much appreciated. Thanks.

    I use comment markers for this sort of thing as I prefer to keep my project bins thin. To open a sequence in the source monitor, right-click on the sequence in the project window and select Open in Source Monitor. Position the play head at a point of interest and press M. Go to Window>Markers to view a list of markers and add comments. When you want to review a marked section click the corresponding marker in the marker window and the play head will advance to that point. Btw, you can do this within the timeline and in any monitor, not just the source monitor.

  • Best workflow for doing a QC check?

    Hi all,
    A client wants me to do a technical QC check on video files I receive before editing them. The items they want checked are as follows:
    o   File format (GOP structure, bitrate, wrapper, codec, chroma subsampling)
    o   Macro blocking
    o   Artefacts induced during transfer from VT, frame rate conversion, size or bitrate conversion
    o   Field dominance issues
    o   Chroma/luminance levels
    o   Aspect ratio discrepancies
    o   Flashing/strobing
    o   Frame slicing
    o   Audio levels to EBUR128 recommendation.
    o   Wide dynamic range
    o   Audio distortion, clipping, phasing and dc offset etc
    Most of these are fine, as they can be spotted during manual playback. But what would be the best workflow for monitoring the Chroma/luminance levels? I figured I could turn on the YC waveform and play the clip back through a monitor - but the main issue is keeping an eye on both the picture & the waveform at the same time.
    Can the scopes be set to give me a indication/alarm when a specified peak occurs? The same way audio does when it clips, where you get a red dot on top of the level meter?
    And is there anything else Im overlooking?
    Thanks in advance - cheers!

    Thanks shooternz,
    The client has specifically requested each file be QC checked. They will be delivering files to us for editing, which will be broadcast after we return the files.
    So we need to manually watch each video we receive to check for any audio peaking or pixelation/slicing/artefacts, etc, that may have occured during the enciode - but I'm just wondering if the YC waveform can be set to raise an alarm or "peak" if the video file goes outside of legal limits at any stage. We will be viewing the video file - so it'll be awkward to also have to try to watch the YC waveform too, so hoping that part can be automated via a 'peak alarm' or similar!

Maybe you are looking for

  • IPhone 5 battery drains very quickly

    I've had an iPhone 5 for about a year and a half and it all of a sudden started draining really quickly.  Without using it outside of a few texts, it is at 50% by noon.  With use, it easily completely drained by then.  Also, I have noticed a few odd

  • Setting up connection pool in weblogic8

    Hi, I am trying to setup a connection pool in weblogic with url = jdbc:oracle:thin:@<IP address>:<port>:<sid> driver classname= oracle.jdbc.xa.client.OracleXADataSource It is giving following error: 2004-11-04 15:11:25,033 INFO - commit()->[SYSTEM, A

  • RRI: refresh in the target query possible?

    Hello BW Experts, I have send the customers c1, c2 and c3 to the target query. Q1 -(c1,c2,c3)> Q2 Q2 is a customer level query. if jump from Q1 --> Q2.If I refresh Q2 will i be able to look at all the customers otherthan c1,c2,c3 ? Please suggest. Th

  • SAP MDM 5.5 on ORACLE 9i or 10g?

    Hi all, could you please give me your lights in the above question? I had downloaded SAP MDM 5.5 and ORACLE 10.2 , as SAP had delivered yet the necessary software after my order. However, I just yesterday received the package from SAP and it has SAP

  • Adobe premiere pro cs 5.5 render low quality colour,is there a disable smart resample

    im making switch from veags pro toadobe premiere pro,in vegas i rendered a clip just a red bubble,and the colour went from bright beautiful red,to oranges,even though its avi lossless,so i disabled resample in vegas,how do i do this in adobe