Using file names as picture text in iMovies

I have been using IDVD and it allows you to use the filename as the title of the picture in the slideshow. It is convienant since i dont have to relabel my pictures. So if the file name of the picture is mummy with auntie Kay, then that will appear as the title of my picture. Does Imovies have a similar feature? or do i have to painstakingly relabel all my pictures?

There is no similar feature in imOvie that I know of.

Similar Messages

  • File Name Copy (not text inside the file ) and change the extension of file

    Hi,
    I have a requirement in which I have to copy the file name (not the text inside file ) from one folder/dir to another folder/dir with some another extension.
    Suppose we have file abc.txt of 20kb in a folder ,we need this in another folder with abc.done extension of 0 kb.
    This I need just to trigger a process.
    I have a below code to copy some files from one folder to another but this code copies the complete file not the file name only.Need help.
    package com.sumit.collections;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.nio.channels.FileChannel;
    public class FileMove {
         * @param args
         * @throws IOException
         public static void main(String[] args) throws IOException {
              FileMove fm=new FileMove();
              fm.copyFiles();
         public void copyFiles() throws IOException { 
              File destination=new File("C://soft//test2");
              File srcDir = new File("C://soft//test");
         File[] files = srcDir.listFiles();
         FileChannel in = null;
         FileChannel out = null;
         for (File file : files) { 
         try { 
         in = new FileInputStream(file).getChannel();
         File outFile = new File(destination, file.getName());
         out = new FileOutputStream(outFile).getChannel();
         in.transferTo(0, in.size(), out);
         } finally { 
         if (in != null)
         in.close();
         if (out != null)
         out.close();
    Thanks
    Sumit

    Thanks for all your help.I got the solution.
    package com.sumit.collections;
    import java.io.File;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.List;
    public class DotDoneFile {
         public static void main(String[] args) throws IOException {
              DotDoneFile fm=new DotDoneFile();
              fm.copyFiles1();
         public void copyFiles1() throws IOException { 
              List<String> filnamne = new ArrayList();
              File destDir = new File("C://Barcklays-soft//test2");
              File srcDir = new File("C://Barcklays-soft//test");
              File[] listOfFiles = srcDir.listFiles();
         try{
         for (int i=0;i<listOfFiles.length;i++){
              if (listOfFiles.isFile())
              filnamne.add(listOfFiles[i].getName());
              System.out.println(listOfFiles[i].getName());
              File.createTempFile(listOfFiles[i].getName(), ".done", destDir);
         catch(IOException ioe)
         System.out.println("Exception creating temporary file : " + ioe);

  • Keeping file name in picture package

    Hi guys,
    iam struggling through picture package at the moment,
    what i would like to do is to keep the original file name in picture package then when the new files are generated not have to type the old name back in some of the names can be quite elaborate.
    Ny62456_IMG for instance i don't mind dropping the IMG but want to keep the file names
    thanks
    Nik

    the images are coded
    so that i know where they come from for instance the filename will start with the schools name SK then the yearY6 then the jpeg number the filename would be SKY62109 therefore i know where it has to be sent.
    Maybe i am talking complete nonsense to you but in photoshop it works to a reasonable standard and each image is copied and then copy is generated by photoshop after each image. Its just that photoshop is not quick enough or stable enough to process a lot of images
    If i exported the file then it would retain the filename
    If you can think of a better way of doing this then please tell me i actually started playing with lightroom last saturday so am a beginner
    Nik

  • Importing in to iPhoto using file name date/time

    Hi
    +*I posted this originally in to iPhoto section but they suggest I submit here to see if anyone knows if there's an applescript. Thanks!*+
    I'm not too sure on how to exactly explain my problem but here goes...
    I have a mobile phone that does not save date/time taken data to the picture file when it takes photos. All of my previous phones/cameras have so this has never been a problem before. I Bluetooth photos and then add them to iPhoto '08.
    Problem is when they add they use the date/time added to create the event rather than the date/time taken. The picture filename displays date/time taken and I was wondering if there was a way to use the filename to have iPhoto adjust the metadata tag to the actual date/time taken? This would save me having to adjust time/date for each set of photos. The filename is for example P090308_12.00.jpg if taken on 09/03/08 at 12.00pm.
    I hope this is clear enough and that someone has some advice. Thanks for your help

    01. As per casdvm, download 'ExifTool-7.20.dmg' (872 KB in size), and install 'exiftool''.
    02. Try the provided starter code, editing it according to your needs ...
    --- Code starts here ---
    tell application "iPhoto"
    set tSelection to selection -- Obtain list of selected photos.
    repeat with i in tSelection
    try -- Capture any unexpected AppleScript error(s).
    set imagePath to (image path of i) -- Obtain full path of file.
    set imagePath to quoted form of imagePath -- Encase files' full path in single quote marks.
    set {oAStid, AppleScript's text item delimiters} to {AppleScript's text item delimiters, "/"}
    set imageName to last text item of imagePath as string -- Extract file name from files' full path.
    set AppleScript's text item delimiters to oAStid
    set imageName to get (characters 2 through ((count imageName) - 5) of imageName) as string -- Extract date and time values from file name.
    set tYear to (get (characters 5 through 6 of imageName) as string) -- Extract year from file name.
    if (tYear as number) > ((do shell script "date +%y") as number) then
    set tYear to ("19" & tYear) as string -- Append '19' before 'tYear'.
    else
    set tYear to ("20" & tYear) as string -- Append '20' before 'tYear'.
    end if
    set createDate to tYear & "." & (get (characters 3 through 4 of imageName) as string) & "." & (get (characters 1 through 2 of imageName) as string) & " " & (get (characters 8 through 9 of imageName) as string) & "." & (get (characters 11 through 12 of imageName) as string) & ".00"
    do shell script ("exiftool -DateTimeOriginal='" & createDate & "' -CreateDate='" & createDate & "' -overwriteoriginal_inplace " & imagePath) -- View 'exiftool -h' in 'Terminal'.
    end try
    end repeat
    end tell
    --- Code ends here ---

  • The Organizer – Using file names as captions in SlideShow

    I am using Vista. 
    I just switched from using ZoomBrowser to The Organizer and I have a collections of thousands of photos. In ZoomBrowser I could show the file names (which I used to describe the slide) at the bottom of the slides during a slide show. I have not found such a feature in The Organizer. Is there one?
    Otherwise, is there a method whereby I can do a batch import of the file names into the captions in the photos in The Organizer? I have the Flash Rename software which I can probably use to place the text of the file names in the Details of the Properties of the photo files.
    Please help,
    CarlosWA

    There is no similar feature in imOvie that I know of.

  • Add date to new text file name and generic text in body

    Okay, I hope this is the right forum. To help manage and keep track of incoming assets/files and I created an Automator workflow with the following: "Get Selected Finder Items → Get Folder Contents → New Text File (w/Show this action when the workflow runs so I can give a unique name).
    This creates a text file with the folder contents listed in the body.
    I would like to know if I can do two things:
    1. Automatically add a date/time stamp to the Save as field so it will automatically have a unique file name?
    2. I also want to add text before the listed contents within the text file. (e.g.: Let's say the folder contents are Volumes/Mac HD/Generic_movie.mov. I want the final text to read:
    "The following file has been moved to the local volume at: Volumes/Mac HD/Generic_movie.mov"
    Is there a way to accomplish either one or both of these with Automator or AppleScripts?
    Thanks.

    I would like to know if I can do two things...
    This might address your first concern:
    *1) Get Selected Finder Items*
    *2) Get Folder Contents*
    *3) New Text File* -- select a destination folder and check *Show Action When Run*
    *4) Rename Finder Items:*
    Choose *Add Date or Time* from the popup
    Date/Time: select Created, Modified, or Current - Format: *Month Day Year*
    Where: *After name* - Separator: *Forward Slash*
    Separator: Space - check *Use Leading Zeros* (optional)
    *5) Rename Finder Items:*
    Choose *Add Text* from the popup
    Add: *" at"* -- put a leading space before "at" (without the quotes), and select *after name*.
    *6) Rename Finder Items:*
    Choose *Add Date or Time*
    Date/Time: Current - Format: *Hour Minute Second*
    Where: *After name* - Separator: Dash
    Separator: Space - check *Use Leading Zeros* (strongly recommended)
    +--- End of Workflow ---+
    Save the workflow as an application and use it as a droplet. Drop a desired folder onto the saved applet and enter a name when the dialog appears. The new text file, which will be found in the destination folder, should be appended with a date and time stamp, e.g., *"My Folder List 7/8/2010 at 23-54-09"*
    Tested using Mac OS 10.4.11 and Automator v. 1.0.5
    Good luck; hope this helps.

  • How to get file name on picture?

    Hi there.
    Is there a way to get the file name on the picture when exporting or "save as" my pictures? I am going to run a web site where people can order pictures and it will be much easier if I can have LR "printing" the file name on the picture.
    Regards,
    Deon

    Deon,
    I would try having this done by the web gallery itself (not on but below the picture). LR web galleries offer that option while building them.
    If you cannot achieve this, the most common way of putting metadata onto a picture during LR export is by using the LR/Mogrify 2 PlugIn.
    Beat Gossweiler
    Switzerland

  • How can I Bulk add file name to picture

    I want to add the file name to the picture, so that when people look at the picture the file name is embedded into the picture.
    I have done some research on this top and have found some mention of tools that people have build to do this and indeed many different things I suppose.
    Im using PSE 10. Windows 7 Prof.  From what I understand, I cant build tools because my version eg Elements is not full blown. But if people have build something to do this I can then add it to my software and it will function for me.
    While in full, quick or even guided there appears to be an option under File/Automation Tools. This appears to be what I need.
    Can anyone tell me where this add on is and how to use it, I cant seem to find it and I really dont know if it will work with PSE 10. Many of the refrences I have seen seem to be for earlier version.
    Perhaps there is an easier way ??
    Thanks

    Good question.
    Basically what I want is the name of the photo name actually in the photo.  I have 400 pictues, I want to put them into a digital picture frame, and I want each picture to be display with the name of the pictures eg. Florida 2012.jpg and Grand Canyon.jpg. Of course I dont need the .jpg extention. But If it is there I can live with it. Im not sure if the Caption option in photoshop elements  can be exported so that the caption is hard wired into the picture. maybe it is. HOWEVER, what I dont want to do is go through 400 pictures and type in the caption for each pictures, if this option is available. It would be nice if the utility copyed the fild name into the caption, if you  could save it with the caption name, but I think Im asking too much.
    Anyway basically I want the file name build into the  photo how ever this could be done in a bulk mode.
    Is that  a lttle clearer. Here is an examle worth a 1000 words.
    BTW I did an experiment and if you put the name in the caption line of the photo. It does not get exported with the file name in the picture. ( which I would asume since not many want the name in the photo, ) Although maybe there is some option that can be turned on to do this ??
    Regards

  • Photo File Names - How to Display in iMovie

    I imported photos from Aperture into iMovie to make a slideshow. How can I make the File Name show up on each photo so that people can order that picture number from a wedding. I have 800 or so images to import and I need to automatically display the file name. I looked at Titles and I love the options, but I can only find out how to manually type titles. I can not manually title 800 images! Help!
    Kevin Hawkins

    that's interesting, my photos have never shown the file names :S

  • Using File Name to determine the Receiver

    Hi All,
    I have to determine the receivers based on the Input file name. I am using the context object File Name in the condition editor. But based on the first 4 characters of the FileName I have to route the file. Can anybody please help how to formulate this expression in the condition editor?
    Thanks,
    Geetha

    Hello Geetha,
             You need to specify this in you mapping as in condition editor you can not specify values at runtime. What you need to do is
    -> Select the Extended Reciever Determination in ID
    ->In IR specify the mapping for determining the receiver (You need to use the another mapping for this)
            . Here copy the MessageType 'Receivers' from the component  as your target MT
              SAP BASIS 7.0 (Depends on your version)-> "htt://sap.com/xi/XI/System" namespace.
           .  Define Message Mapping between Outbound Message Type(The one with your filename) and 
             Standard Message Type u201CReceiversu201D which is as Inbound message type and which is in the SAP
             BASIS -->http://sap.com/xi/XI/System
           . In mapping specify your service based on your First 4 character of your file name(Use SubString)
    IF filename -> SubString(0,4) ->Equals ->   filename -> SubString(0,4)  Then  Select Your Service  ( Service in Constant value). ELSE (your logic)
    Once you finish this remaining as usual in IR, while InterfaceMapping you select two mapping programs.
    Remmber to use the Extended Interface Determination in ID, This resolves your issue.
    Regards,
    Pasanna

  • Using File Name as Watermark

    Is it possible to export a JPEG version of a photo with the file name displayed on the photo? This would be useful for a big proofing job I have. I haven't been able to find any info on this in Aperture support or even any third party software for this purpose in a general internet search. Any ideas? Thanks!

    The free and rather good plug-in BorderFX will allow you to position metadata on top of the image and export as a JPG file.
    If PDF will do, Aperture includes good tools to create contact sheets with metadata. These can be saved as PDFs from the OS X print dialog (i.e.: not the Aperture dialog, on which you format the page, but the next one, from which you actually send the job to the printer).

  • 5.5 Issue, no longer saves Project Title, no longer uses file name

    I often work in mammoth multi-slide projects and then break them into more reasonable chunks later on, deleting extra slides and saving with a differnt file name. In Captivate 4.0 this automatically updated the Project Title in the Publish Dialog. In 5.5 it retains the old name, even after saving or publishing it. This can lead to over-writing the original project.
    In recent days I've discovered a truly bizzare workaround, completely by accident. A colleague was doing some QC and saved slides with completely new names. Although the Project Title wrongly retained the original file name, when I changed it to publish the slide, and then immediately used "Save As..." to save it with the same file name as the Project Title I just published, it finally retained the new name---in other words the Project Title I just published was still there after I closed then opened the file. If I Save As... before publishing it displays the frustrating broken behaviour, and when I tried it on some other files I had renamed it didn't work either... it seems as if the magic is available only on the first Save As... after renaming.
    Anyone else seen this? Any better workaround? Can we expect a fix? When?
    Thanks.

    yes i've seen that before.  I had a prototype of a project and as it progressed beyond a prototype I started saving and publishing with a new name.  But when I publish now it retains the name I used for the prototype, even tho I've published it several times with the new name.  Always defaults back to the first name I used.  You're not alone in your frustration. 
    I'll try to test it a little tomorrow to see if your workaround works for me.

  • Correlation using file name

    Hi all
    i have a scenario where I have to place a file at target with a particular file name, say, my_name_is_itisha.txt .After the target processes the file,it places an acknowledgement file with the name my_name_is_itisha_txt.ack.
    In short, the ack file will replace the '.' with '_' and append '.ack' to the file placed by me at the target.
    I know that we can correlate 2 files with similar fields but how to correlate 2 files with the same name ?
    Please suggest a solution.
    Edited by: itisha alok on Apr 28, 2009 1:39 PM
    Edited by: itisha alok on Apr 28, 2009 1:40 PM
    Edited by: itisha alok on Apr 28, 2009 1:40 PM

    Hi,
    Sorry for the late response....
    can you please tell me how to get the filename in the mapping?
    This is achieved by writing a UDF in the corresponding Message Maping.....this udf will do the function of extracting the filename during runtime....the UDF is already provided by Srini....even you can search SDN for Dynamic FileName and you will get lot many threads....you need to use Adapter Specific Message Attributes (ASMA) for this purpose.
    The UDF need not have any arguments/ parameters.....as it does not need any input from any of the Source nodes.....it will extract the information (filename) from the message header....
    For more info: http://help.sap.com/saphelp_nw70/helpdata/EN/43/03612cdecc6e76e10000000a422035/frameset.htm
    Regards,
    Abhishek.

  • Captions using file names? (Photoshop Album Starter Edition)

    In Photoshop Album Starter Edition, is it possible to create a slideshow and use the file name (i.e. "Red Sails in the Sunset.jpg")as a caption that is viewed within the slide show segments? If not, is there another Adobe product, possibly Elements, that can do this? Thanks, Van.

    Somewhat related:
    I have used tags to organize my photos, but it seems this will be lost if I ever move to another program (e.g. Picaca - though Adobe was able to import one Picasa tag). My questions:
    1. How can I permanently associate tag-type info with my photos?
    2. Can I use a simple or batch method to use my filenames (which have a lot of info) as captions?

  • Get handle of sequence file using file name

    in example it is described how to access the comment of a sequence file.
    During report generation I only have the file name of the sequence file not some sequence file struct which is needed.
    How do I get that using the sequence file name?

    Hi mbrost,
    Try this TS2.01f1 example.
    I have put in an override TestResult Callback sequence and added some code to obtain the comment of the Sequence File. I have also added a Comment to the Sequence File.
    Using RunState.SequenceFile as the ActiveX Reference I get a reference to PropertyObjectFile.Data which return a reference. Using this reference I then call the PropertyObject.Comment() API to obtain the comment string.
    Then I display this Comment string in a MessageBox.
    Hope this helps
    Regards
    Ray Farmer
    (PS. ignore the name markp01 as NI site is getting people mixed up)
    Attachments:
    Access_SequenceFile_Comment.seq ‏59 KB

Maybe you are looking for

  • How to check all items are not null in CAML Query?

    HI All, In a CAML Query, i got three items. In all three items, a particular column(Closure Date) should not be null. How to check in all three items, where 'Closure date' is not null? Thanks in advance!

  • RH8 web help not displaying in IE9

    Hi all, We've just encountered a problem where a customer could not open web help created from RH8 in the IE9 browser. To quote the reportee... "IE reports 'the address is not valid'. But, this only happens when calling the help files using the serve

  • Photos become blurry when imported to FCP X from iPhoto

    I'm using FCP X.  I have imported 18 high quality photos from iPhoto into my timeline.  When I play my sequence the photos appear blurry. 

  • How to change current Solaris version for a program?

    Hello, A program I am trying to run under Solaris 5.10 checks the OS version to be 5.8 or 5.9. Can I somehow tell Solaris to report 5.9 to the program instead of 5.10? According to "Solaris Application Guarantee" I should be able to run 5.8/9 program

  • Bad class file error

    Hi I set my java home to JDK 1.4 and execute my build.It is ok. Then i try the same by setting JDK 1.5 as java home. build is ok. But now i need to use only JDK 1.4.So i set my java home as jdk 1.4 and try to execute the build.xml Now i got the error