How to position sub-titles??

I'm running QuickTime 7.2 on Windows XP-Pro. I'm trying to subtitle a 1280 x 720 movie using the following QTtext file:
{QTtext} {language:0} {timestamps:absolute} {timescale:30}
{height:80} {width:1280}
{textBox:640,0,720,1280}
{font:Arial} {size:30} {plain} {anti-alias:on}
[00:00:00.00]
{justify:center}
Listen - [{italic}dog barking{plain}]
[00:00:05.11]
Second caption
[00:00:10.00]
My main problem is in positioning - no matter what I do, the subtitles appear at the top of the screen, even if I try manually moving the text track by changing the visual settings in the Movie Properties page. What do I need to do to perform positioning??
A second problem is with the line "Listen - [{italic}dog barking{plain}]"; everything up to the closing ] is italicized. How come?

I tried that, but it didn't seem to make any difference. When I changed the values, nothing happened to the text bar position. And when I went back to check, the values had returned to 0,0.
I've been using WebAim's tutorial to learn about this stuff (www.webaim.org/techniques/captions/quicktime), and their description of how to position the text track bears little relation to the version of QuickTime I'm using.

Similar Messages

  • How do I remove Sub Title w/o removing Chart Title in components?

    I'm trying to remove the Sub Title area from a component by unchecking the Sub Title box under Appearance/Text tabs but this also removes the Chart Title.  Is there a way to remove just the Sub Title w/o the Chart Title?  I'm using a bar chart component.

    Hi Lora,
    This is by design.
    May I suggest just removing any subtitle data (or binding) as this will remove the element from your chart.
    Thanks,
    Gerrit

  • How to add a Title (slide? screen?) BEFORE the video track

    Hello,
    I'm very new to Adobe Premiere Pro and I'm trying to figure out how to add a title to my project but I don't want the title on the start of the video in the sequence. I'd like to add it to a black screen, maybe with some transition effects, that will play prior to the video starting. Do I need to create a black image in CS and add it as a still and just add the title to the still which I can position before the video/audio track A starts?
    I'm hoping that there's something I can do right within Premiere that will give me a place to put the title before my video starts. I didn't see an option to add a blank slide or something to that effect that I can add title to.
    thanks for your assistance!
    The more I learn the more excited I get, this software is great.

    Thanks for the link.. like I said in my post, I'm brand new to the software and I've been watching and following guides for hours. Time is not on my side, I have a project that must be done by the end of this week and I have very limited time after work.
    So when I have the head at the begining of my main track and click INSERT in the source monitor window it inserts a duplicate of the entire video so I have TWO videos in my sequence. This is clearly not what I'm wanting so I'm assuming that there's something I'm missing. I've searched google but don't see anything.
    I'm just looking to add a black, blank screen that I can add a title to before my video begins. I realize this may be rudamentary to season vets but as I said, I'm very new and trying to learn this all quickly and I would really appreciate if someone could point me directly to some information about it. I'm not afraid to read and learn, hell I love it, but I'm pressed for time so someone just telling me, "go learn the software" with a link to a huge FAQ, doesn't really help me.
    I've already learned a ton from some great guides but I have yet to have anyone indicate how to add extra footage (be it a still or blank video) directly from Premiere Pro.
    Thank you all for your time!
    EDIT: I think I figured it out... I just bumped the start of the main track up about 10 seconds and I added new item "Black Screen" right in front of it. I will add the title to this. Thanks all.

  • Flash Video and sub-titling

    Hi Guys,
    Just like to know, if anyone has done any project with flash
    video with subtitling.
    I have around 20 videos of 5 mins each, I have to put the
    subtitling on the videos, the text for the sub titling is available
    in Excel sheets, I also have the time point for the subtitling.
    Is that possible to load the text dynamically from the excel
    sheet or any other format at the given time point in the flash
    video.
    Any tutorial available for the above topic? please provide me
    the link.
    Thanks in advance
    regards

    b_pandey,
    > Just like to know, if anyone has done any project with
    > flash video with subtitling.
    I haven't, but I've done projects in which video had to be
    synchronized
    with other events.
    > I have around 20 videos of 5 mins each, I have to put
    > the subtitling on the videos, the text for the sub
    titling is
    > available in Excel sheets, I also have the time point
    for
    > the subtitling.
    Excellent; you're all set!
    > Is that possible to load the text dynamically from the
    > excel sheet or any other format at the given time point
    > in the flash video.
    Not from an Excel sheet, no. But Flash can load text files
    and Flash
    can interact with databases via PHP, ASP, Cold Fusion, and
    the like. Given
    the time-sensitive nature of your project, however, I would
    put the
    subtitles right into the SWF itself.
    > Any tutorial available for the above topic? please
    > provide me the link.
    You'll want to read about "cue points" in the documentation
    and online.
    Here are two tutorials I found by Googling the terms "Flash
    video cue
    points" ...
    http://www.mediacollege.com/flash/video/cuepoints.html
    http://www.actionscript4designers.com/wmg3/cuepoints_briefly.html
    The second one involves screens, which you probably don't
    need, but the
    *concept* is, of course, the more important part. The first
    tutorial is
    more likely to help you.
    I would put all the subtitles into an array and use the
    cuePoint event,
    as described in tutorial #1, to populate the same dynamic
    text field over
    and over again based on strings in the array.
    What this means is that you'll want to familiarize yourself
    with the
    Array class. Start small, at first. Start a new FLA
    altogether and create
    nothing in it but an array.
    var subtitles:Array = new Array();
    Then push items into the array.
    subtitles.push("Hello, Ginger.");
    subtitles.push("Why, hello, Fred.");
    subtitles.push("Care to dance, Ginger?");
    subtitles.push("Oh, yes! Let's do!");
    Then use trace() to test your understanding of how to pull
    information
    again from the array.
    trace(subtitles[0]); // zero is the first element
    trace(subtitles[1]);
    trace(subtitles[2]);
    // etc.
    A for() loop can retrieve them all. Just substitute the
    numbers for a
    variable that represents numbers.
    for (n=0; n<subtitles.length; n++) {
    trace(subtitles[n]);
    And so on. Looking up the "Array class" entry of the
    ActionScript
    Language Reference will teach you about the Array.length
    property used in
    the above sample. All class entries show the properties,
    methods, and
    events available to a given class. Properties are
    characteristics of the
    object, methods are things the object can do, and events are
    things the
    object can react to.
    Once you understand arrays, look up the FLVPlayback in the
    documentation
    and/or follow along in the above tutorials. Just realize that
    you'll use
    the concepts described to meet your own needs. If you prefer
    not to use the
    FLVPlayback Component -- and you may not -- look up the Video
    class, and
    also the NetStream and NetConnection classes to learn how to
    load FLVs
    without a Component (the NetStream class features an
    onCuePoint event). See
    also ...
    http://www.quip.net/blog/2006/flash/how-to-load-external-video
    David
    stiller (at) quip (dot) net
    Dev essays:
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Creating background for sub-titles?

    I remember in FCP7 I could make a custom 'solid' clip, resize it small, make semi-opaque, position it behind the sub-title, then use some kind of edge-softening plug-in from the effects bin ... which would take away the sharp edges of the semi-opaque solid clip ... which I would then make just enough opaque to make the text stand out, but not enough so the background shadow clip was obvious.
    I'm trying to figure out if there is a way in FCPX to blur and soften the edges of a Custom solid?

    Thank you Tom,
    I scanned through a couple of times ... must have been looking for 'feathering' ... tired eyes.
    Very much appreciated,
    Ben

  • Do movies available on the iTunes store have sub-titles?

    I want to know if the movies we can buy/rent on the iTunes store have sub-titles? And if so, how do we know? And if not, is it something envisioned by Apple?
    Thanks!

    See this thread for the answer (so I don't have to retype it here):  https://discussions.apple.com/thread/3173451

  • Changing position of titles

    Hey guys...I don't have iLife 08, yet...geez, I barely used the last version.
    I'm doing a quick "slide show" in imovie HD for a friend....and can't seem to figure out how to change the placement of the TITLE.
    It shows up in the middle of the clip, I want to move it to the BOTTOM of the clip...can anyone advise on this?
    Thanks

    Hopefully one of the "Top Users" can address this better than I. iMovie Help states that, if available, you "can position the title style's origination point by clicking the preview monitor" and "if the pointer(?) changes to a crosshair you can click a place in the preview monitor where you want the title to begin". I don't think the selection of iMovie HD's title styles include that capability (perhaps someone can recommend a "plug-in" with such).
    One thing that might help position your subtitle lower is by checking the "QT Margins" box, which will lower the text to the bottom of the screen. Only, it may get cut off if viewing on a TV screen. Also, you can position the text left or right of center by typing a "." to the far left (to get the text to line up on the right) or to the far right (text will be on left) of the text in the text viewer. Good luck.

  • Audio volume drops on sub-titled clips (imovie 4)

    When I place a sub-title on a video clip the volume drops considerably. When I highlight the clip and boost its volume even to the maximum 150% in an attempt to make the loudness consistent with the rest of the project, it's still not enough. Volume reductions like this occur even when I do contrast or brightness, etc. adjustments. How better boost volume with these clips that suffer volume reduction and maintain uniform audio throughout a project?

    Hello Tom
    Extract the sound of the video clip with the title and see if it makes a difference.
    This takes me back some years. I don't recall the sound dropping off to the degree you speak of though. But give it a go, you have nothing to loose !
    Cheers
    jc

  • Ripping existing sub-titles and reusing them in new project...

    Hi there folks,
    I've been given the task of converting an existing NTSC DVD-Video into PAL -- amongst other things I need to remove and replace existing distributor logos, etc.
    So I've created all new PAL assets, e.g., the main feature, menus, intro, etc.
    The question I have is that the original NTSC feature has a total of four sub-titles sets of which, if possible, I would like to rip and lay back into the new PAL project.
    Is this possible? And if so how?
    Many thanks in advance.
    Kindest of regards, Mark Bateman.
      Mac OS X (10.4.9)  

    Many thanks once again Steve, I've subsequently discovered the reason as to why DVDSP refused to acknowledge the double line entries -- or rather how to get around the problem!!
    Removing the video asset from the track allowed the subtitles to be imported correctly... Not sure why, but it worked!!
    Many thanks once again...
    p.s. This particular project began it's life in Encore 2.0 -- oh dear, oh dear, oh dear!! I wil NEVER use that sorry excuse for an authoring package again!! Quite how Adobe have the confidence in bringing it to the Mac platform is something way beyond me... Anyway, apologies for the digression...
      Mac OS X (10.4.7)  

  • Sub-titles..??? possible with Live Type..???

    hi
    just to know how (if possible) to make sub-titles in a FCE projet using Live Type.
    If you get any help for this...!!!!
    Thanks
    Kriss / F Guiana

    I post these links to questions about subtitles and captioning.
    The two processes are related. "Free"? Probably not.
    I have never used FCE.
    http://www.captionmax.com/faqTechProb.php
    http://www.ccaption.com/nccwork.shtml
    http://www.robson.org/capfaq/
    http://ezinearticles.com/?Video-Subtitles-Or-Video-Captions?&id=1195664
    http://www.versiontracker.com/dyn/moreinfo/macosx/31486
    http://www.versiontracker.com/dyn/moreinfo/macosx/26479
    http://www.versiontracker.com/dyn/moreinfo/macosx/33168
    http://www.versiontracker.com/dyn/moreinfo/macosx/23578
    http://www.versiontracker.com/dyn/moreinfo/macosx/31000
    http://www.versiontracker.com/dyn/moreinfo/macosx/32086
    http://www.versiontracker.com/dyn/moreinfo/macosx/8026
    http://www.kenstone.net/fcphomepage/subtitles_dvdspstone.html
    bogiesan

  • Can't figure out how to make "sub-tabs" / Too many "top-tabs" / Other ?

    First of all, the website that I am webmaster for is: www.cindydennis.org .
    I am having some problems:
    1) There are TOO MANY tabs at the top. I can't figure out how to make sub-headings on one page...
    For example, I'd like on the "About CDM" page, tabs that can be clicked on to go to other information tabs, but that don't end up appearing on the top (e.g.: having "Remarks" and "What We Believe" tabs go there, but not appear at the top).
    Another example, if you look at the home screen, I'd like to have the link to the "Privacy Policy" and Terms of Service" pages on the bottom, but not have them appear as tabs in the top, too.
    How do I do this, please? I've searched, and can't figure out/___sbsstatic___/migration-images/migration-img-not-avail.png
    2) How do I add "Copyright 2011" automatically? I saw in the Rapidweaver trial version, it automatically adds it when you publish... is there a way to tell this program to do this? Or do I need to type that in on each page? (I don't want to purchase RW... I'm not ready for that yet.)
    Thank you in advance
    Cindee

    Cindee ~ One way to do the copyright notice is to use a Text Clipping — Select (highlight) the copyright text you want to use and drag it to the Desktop. If necessary, change the name of the Clipping icon so that it's more easily identifiable on the Desktop. Then, when you need it in iWeb, simply drag the Clipping icon from the Desktop to iWeb's main canvas.
    By the way, rather than posting your URL here like this:
    www.cindydennis.org
    ...include the prefix to make it conveniently clickable:
    http://www.cindydennis.org

  • How do I print titles on photos

    I would like to be able to print my photos with the title either on the edge of the photo or on the photo along one edge. I would also like to include the date, so years from now I know when the photo was taken. (Yes I know that I could write this on the back, but prefer having it printed with the photo.) Is there any way to do this in iphoto? (I presently use my Nikon software, which does this, but would like to switch to iphoto if I can figure out how to include the titles and dates.)
    Powerbook G4   Mac OS X (10.4.5)  

    Hi malachite,
    no not with iPhoto. You can set up another graphics program such as PS or PS Elements as an external editor within iPhoto Preferences and add your text to the photo there and save it with the same name and flattened. The edit will then be reflected within iPhoto.

  • How to create a title over the top of the left-most column in a cross-tab.

    This is one of those things that seems simple until you try it.
    I'm almost there.  I moved the cross-tab from the report header to the report footer so I can have a page title.  I tried using an overlay but it didn't work for any page past the first.
    I can't seem to figure out how to put a title over the left-most column though.
    Thanks in advance,
    J

    I have used a text box, after you type in the text, select the box, and move it to the front.
    then select the crosstab and move it to the back.

  • How to create sub report in BI Publisher

    Hi,
    i have created sample report in BI Publisher .But I do not know how to create sub report in BI Publisher.
    How to create parent-child report?
    Can you provide details through example?
    Thanks

    This blog post seems to be quite useful: http://blogs.oracle.com/xmlpublisher/2007/01/formatting_html_with_templates.html
    Also, there is a whitepaper: http://www.oracle.com/technology/products/xml-publisher/docs/BIP-SubTemplate.pdf
    The focus is on formatting template for your report, but should have the same principals.

  • How to change the title of an object in the build order window?

    In Keynote '09 v5.1.1 (1034)... How to change the title of an object in the build order window from the default "dropped image" to a specific title?
    I'm running the following:
      Model Name: MacBook Pro
      Model Identifier: MacBookPro2,1
      Processor Name: Intel Core 2 Duo
      Processor Speed: 2.33 GHz
      Number Of Processors: 1
      Total Number Of Cores: 2
      L2 Cache: 4 MB
      Memory: 2 GB
      Bus Speed: 667 MHz
      Boot ROM Version: MBP21.00A5.B08
      SMC Version (system): 1.14f5

    Custom names can't be applied to objects in the build list.
    They are labeled as either; text, shape, table, chart or the filename of an image

Maybe you are looking for