Where are subtitles saved?

Hi All,
I'm working on a DVD of HMS Pinafore for a client of mine (School) and have been asked to add subtitles to the DVD so that people can sing along. I manually entered the entire libretto as subtitles.
I spent 2 days entering the subtitles ...and after adding a menu ...the damn project has crashed and refuses to open.
After another day of unsuccessfully trying to get it to open - I've given up and re-exported from premiere.
The question is, can I grab my subtitles from the old project and drop them into the new one? I don't fancy doing them all again.

>A better subtitle workflow is to create them in a text editor (check the online help), or a dedicated subtitling application, and then import them into Encore.
Absolutely.
Using a text editor is the easiest way - Textpad (www.textpad.com) is a great & free one (nagware) that out-performs anything like Notepad by a wide margin.
Set timecode in, timecode out & subtitle and you're done.
Best of all this will remain as a text file and can be re-imported with ease in case of disasters. Plus it is much simpler to edit (delete faulty title, make changes, save
i under a new name
and reimport.

Similar Messages

  • Where are contacts saved?

    Hi there,
    This started off as a loss of all contacts from the address book, which has now turned into a curiosity of where exactly do the contacts get saved?
    I have removed the folder ~/Library/Applications Support/Address Book/
    I have actually deleted this folder, logged out, logged back in again and found the address book restored with all contacts. From doing searches on the net everything points to this folder being the place where contacts are saved but obviously it is not. I have no sync service operating nor changed any defaults as this has all been done with a clean account.
    So, where are contacts saved to?

    It is probably being restored from the copy kept in SyncServices (in your Library/Application Support folder). Look in Local folder, and in the various folders there look at ClientName.txt. You will likely find that one of them is com.apple.AddressBook. Beyond that, I do not know the organisation of the various files within the Local folder, except that there is enough data there to restore a missing set of contacts.
    AK

  • PDF Optimizer Settings: Where Are They Saved?

    PDF Optimizer Settings: Where Are They Saved?
    That is, the ones that you create and then Save.
    Also the default one which came along Acrobat Pro (i.e. Standard etc)
    Thanks

    They are stored in the Acrobat User Preferences Area.  The same location is used for Pro, Standard, and Reader.  But the exact location is OS dependant.
    Open up the JavaScript Console window and run this line of code. (instructions at the links below)
    app.getPath("user","preferences");
    Thom Parker
    The source for PDF Scripting Info
    pdfscripting.com
    The Acrobat JavaScript Reference, Use it Early and Often
    Then most important JavaScript Development tool in Acrobat
    The Console Window (Video tutorial)
    The Console Window(article)

  • Where are auto saved excel filed stored on a MacBook Pro?

    Where are auto saved excel filed stored on a MacBook Pro?

    Go to http://support.apple.com/kb/HT4946
    and check:
    Where iTunes backups are stored on your computer

  • Where are renditions saved?

    Hi!
    Where are renditions saved?
    Do we create completely new folios (and all the articles in each folio) or are the different renditions of a folio and all the articles in them saved in the save folder?
    Thanks!
    CJ

    But only for the DPS Professional or Enterprise level customers, according to Andrew.
    Is that correct?
    If this is the case, then, the rest of us will have to know ahead of time what device a client is using and share (via the Folio Producer: Organizer or via the Folio Panel in InDesign) the specific "rendition" with the client.
    Even, if a client wants to access the same folio on various devices, they will need, then, to make sure and download the right rendition invitation on the right device.
    This is complicated. Hope it doesn't last too long…
    Thanks!
    CJ

  • TS2755 i have no messages in my phone but my storage is 90% full and in my usage it says i have 12MG in messages (saved) but i dont have any messages in my phone - where are they saved ? how can i delete them? please help

    i have no messages in my phone but my storage is 90% full and in my usage it says i have 12MG in messages (saved) but i dont have any messages in my phone - where are they saved ? how can i delete them? please help

        pamalushka54,
    We want to make sure that we get your phone up and running. Can you look to see where you have the most stuff stored at. Settings>General>Usage>Storage.
    This will tell you what exactly is using everything. Then you can delete things from there.
    RobinD_VZWSupport
    Follow us on twitter @VZWSupport

  • Where are settings saved for WCF Service Applications?

    Default Settings for a WCF Service Application are stored in the web.config file and are Read Only because only Application settings are allowed i.e. you cannot change the Scope from "Application" to "User" in the settings designer like
    with other components.  So, in order to save changes to settings the WCF Service Application will need to create a setting property at runtime like this:
    System.Configuration.SettingsProperty newProperty;
    newProperty = new System.Configuration.SettingsProperty("NewSetting");
    newProperty.IsReadOnly = false;
    newProperty.DefaultValue = "New Setting";
    Properties.Settings.Default.Properties.Add(newProperty);
    Properties.Settings.Default.Save();
    OK...this works, but I've looked everywhere and I can't find where the new setting property is being saved.  I have already looked in the C:\Users\[username]\AppData\[Local or Roaming]\[Company Name]\[AppName...etc.]\[version]\user.config and although
    a user.config file was created it does not contain the new property.  Anyone have a clue?
    Actually, this doesn't work...the settings are not saved to the file system.  I located some other posts and modified my code as follows, but the settings are still not saved to the file system.
    System.Configuration.SettingsProperty newProperty;
    newProperty = new System.Configuration.SettingsProperty("NewSetting");
    newProperty.Provider = Properties.Settings.Default.Providers["LocalFileSettingsProvider"];
    newProperty.Attributes.Add(typeof(System.Configuration.UserScopedSettingAttribute), new System.Configuration.UserScopedSettingAttribute());
    newProperty.PropertyType = typeof(string);
    newProperty.IsReadOnly = false;
    newProperty.DefaultValue = "New Setting";
    try
    Properties.Settings.Default.Properties.Add(newProperty);
    catch
    //Just ignore it for now.
    Properties.Settings.Default.Save();
    The new setting appears to be saved only in memory.  If I close Visual Studio then the setting is lost.  Also, I deleted the C:\Users\[username]\AppData\[Local or Roaming]\[Company Name]\[AppName...etc.]\[version]\user.config files and the file
    is no longer being created.
    Looks like I will need to explicitly load/save a text file or use the registry to persist changes to settings.

    Hello Steven,
    >>The new setting appears to be saved only in memory. 
    It seems that the Save() method only saves these runtime added in memory, I suggest you could check the Save method source code since now the .NET is source opened:http://referencesource.microsoft.com/#System/sys/system/configuration/ApplicationSettingsBase.cs,9664b0111a35af52
    >>Looks like I will need to explicitly load/save a text file or use the registry to persist changes to settings.
    Someone provides an implementation about this approach, you could check it:
    http://stackoverflow.com/a/1075318
    Or you could set it in a register entry:
    http://stackoverflow.com/a/26518724
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • TS3991 where are documents saved in preview?

    Where are PDF documents saved to icloud in Preview? Either on icloud.com or on any ios Device?  Honestly, where do they go?
    http://help.apple.com/icloud/#/mme7d59147

    This is configurable... We can store the documents at file level other wise inside Database also.

  • Where are memos saved?

    Question: Where are the notes made on the yellow "memo pad" saved to? In iTunes, I can locate backup on music, contacts, bookmarks, etc.—but see no sync/backup for the memo notes.
    Anyone know?
    Thanks!

    It DOES seem odd that notes created on the iPhone can't be synced or edited. There are several other options for transferring notes entered on the iPhone to other places:
    iGoogle lets you create notes on the iPhone that will appear in iGoogle on the desktop. Once created they can be edited on the desktop but not edited again on the iPhone.
    Noter (www.dbelement.com) has a paid note taking app. Unlike iGoogle you can edit the note on the iPhone once it is created and sync it. It has very limited formatting and notes are restricted in size.
    The most promising one is Evernote (www.evernote.com). They are the premier note taking application for computers today, with a rave review from Walt Mossberg in the Wall Street Journal a couple of years ago. I've been using it for several years. The current version only runs on a computer, but I am currently using a closed beta of Version 3, which allows notes to be accessed via the web as well as on the desktop (or notebook or tablet). They also have "fat" clients for Windows Mobile and other mobile operating systems, and promise an iPhone version in the near future. At the current time you can create notes on the iPhone and sync to your desktop via the web, view notes created on the desktop or in a browser on another computer. You cannot edit existing notes on the iPhone at this time. You CAN edit on the desktop or using a desktop browser window, so hopefully the iPhone version isn't far off. It supports full rich text formatting, tagging, searching, etc. It can import web clippings, graphics, works with tablets for ink notes, and most amazingly, can usually interpret the text within a graphic or ink note for searches.

  • Where are contacts saved on iPhone 4?

    On my previous phone (Nokia 5800 XM) I could choose between phone mamory and SIM card to save contacts; in iPhone, that option doesn't seem to exist.
    So my question is, where are new contacts saved (iPhone's memory or SIM card)?
    Thank you.
    Note: If there's a way to choose between phone memory and SIM card, please let me know.

    iPhones memory.
    Stedman

  • Pages 08 Template images -where are they saved?

    I know Pages 08 does not have clip art but I like many of the pictures on the templates. I want to use some of the template images (like the cat.tiff or frog.tiff) on a blank document. Copying & pasting works but I'd rather be able to see all the template tiffs at once. Where are the template images(tiffs) located on my hard drive. Is there a specific iWork folder I can find them in?

    Welcome to Apple Discussions
    The images are "buried" in each template which is buried in the Pages application. You can find them by Control- or right-clicking on the Pages application > Show package contents > Contents > Resources > Templates & then the folder for the template category you want. Then Control- or right-clicking on the template icon > Show package contents > Contents where you will find the actual images.
    Or you can just copy & paste from an open template.

  • Where are the saved pdf websites saved in the phone? (Galaxy S II)

    I saved a website as a pdf file (a firefox feature) but where is it saved? If not there is no point in saving the file anymore if I cant find it. Thanks :)

    /sdcard/Download(s) or if you attach your phone to a computer just look for the Download(s) folder.

  • Where are notes saved on the HD?

    My MacBook Pro is being sent it for repair and i have taken out the HD and connected it to my pc to back it up.
    Where can i find 'notes' that i would have saved on my Mac?
    I have some important info on them and need to access them!

    Notes are stored in
    ~/Library/Containers/com.apple.notes
    To find them in the Finder hold down the Option key and pull down to Library.  Then open the Containers folder.
    What to do with that Notes folder is the question.
    After duplicating that folder for safekeeping you can try several things.
    One is to delete the Container.plist file and see if Notes works again.
    Another might be to restore that folder from a TIme Macine backup.
    Be sure you make a copy of the current folder before you trying anything that may modify it.

  • Where are applications saved on computer

    hi,
    i can find where all the applications are saved but i want to change it to another drive but i cant find where i change this.
    i know for music you have to go into preferences but cant find it for iphone applications

    On the Mac there is a new folder inside the "iTunes Music Library" folder (on the same level as e.g. "Album Artwork" and "Previous iTunes Libraries" is) for applications.

  • Standard and 1:1 preview where are they saved?

    Hi,
    I searched the forum but I could not find where the standard size and 1:1 preview are saved. Do you know where they are stored?
    I just need to get an idea of how much space a single 1:1 preview takes up on my disk to allocate the cache.
    Thanks

    They are in the Previews folder, which lives at the same level folder as the catalog, .lrcat.
    The cache is a separate matter.

Maybe you are looking for

  • Itunes points to wrong files - points to random system files instead of mp3

    I noticed this about a year and a half ago when my ipod would have an error that some of the files couldnt be transfrered. Upon further inspection, it seems itunes occasionally gets confused about where files are located. The files will look fine in

  • Connecting my MacBook Pro to Dell Monitor

    Hi, I have a Dell E228WFP 24 inch monitor and I have connected it to my MacBook Pro (October 2013, Non-retina, 13 inch) with a Mini DisplayPort to DVI adapter, and another adapter off eBay, which plugs into the VGA cable that is in the back of the De

  • DVD Rom

    Hi there. recently my dvd-drive has been working intermittently, it no longer shows up as an icon in the "my computer" section. the drivers are up to date. if anyone has any ideas on what is causing this problem id be extremely grateful for solutions

  • 3 problems that I've run into

    So to start out, I've been using Photoshop for about 3 years and I have just started messing with Dreamweaver for web design. In Photoshop I've just started using the slice tool and exporting the image of a web site I made myself into Dreamweaver whi

  • Two level approval in CCM

    hello all, we would like to have approval of the same item from two different persons (i.e. procurement and financial department) in catalog before publishing. Is that possible in CCM 1.0? or CCM 2.0? TIA Gordan