Options to view file size and type?

Where can I turn on options on an image and get the file size and type?
Thanks.

Stan,
You can see the file type by hovering over the file in Library view and it will show the file name followed by the extension like jpg, nef or tiff.
Alternatively in library mode go to grid view it will pixel size of the files as well as the name of the file withthe format.
If you are not able to see that go to View>View Option.
Check the option show header with label
Hope thatt helps.
Mandhir

Similar Messages

  • With iMovie 10 how do I change the movie file size and type.

    I have recently upgraded to iMovie 10. It takes some getting used to but I think I will like the new product. After creating my first few movies and trying to upload them to dropbox, it is taking a long time. Comparing the files to ones created in the previous version they are larger, and I need to know how we adjust the file size to the device the movies will be used for. I don't need high resolution files.  It looks like you can change the size in file for share but still a large file and only compatible with Mac and PC others are greyed out. Files are much larger than the files generated in the old version.
    Thanks any help will be appreciated.

    This is one of the areas where the options have been reduced compared to iMovie 9.  If you share to File, you should have Large (540p) and SD (480p) options in addition to the HD ones. 
    I'm not sure exactly which menu it is where you are finding greyed-out options.
    What is the native format of the movie you are saving?
    If you can't share directly into the format you want you should be able to post-process the shared file with a third-party app.
    Geoff.

  • EyeTV files sizes and types?

    Hi,
    Thinking of getting and EyeTV for use in the UK and with digital FreeView channels.
    What sort of files does it generate?
    Is it just a QuickTime file that can be played on any Mac?
    What size files do you get for an average 30 mins show?
    The reason I need to know is the TV I record will be sent to my friend in Canada to watch on their 20" iMac G5, I have a fixed IP and a 8MB pipe so they can log into my Mac and just download the shows they want.
    What is the quality like I have the Formac DV studio with a TV tuner and the quality is bad all noise and interference lines in the images. Don’t use it any more.
    Any views are appreciated
    R

    The eyeTV 410 is a great piece of kit and I use mine all the time.
    It records in a MPEG 2 format which can then be exported in a range of different file formats if required.
    As it is native MPEG 2 format, combine it with Toast and it makes it very easy to burn DVDs of your recordings.
    As it is MPEG 2 you can not play the native files using Quicktime (however the eyeTV software can play them). If you export as MPEG 2 then you will need the MPEG 2 component for Quicktime, or play them with VLC.
    A 30 min show is approx 500MB.
    However if you export to another format then you will be able to compress that file size.
    The eyeTV 410 is four times the quality of my eyeTV USB which recorded analogue.

  • Adding chapters while preserving the original file size and type.

    Gone are the days of easily adding chaps in FCP7.  FCPX is here… chapters are gone!.  Now enter Compressor 4. 
    When exporting from Compressor am I ultimately going to end up with an additional file with new settings?
    I have followed the Compressor manual and understand that I can “Create a new batch from template” and am supposed to choose Create DVD.  I however just want to keep my file in its original maximum resolution while gaining the chapter marks that will be recognized in iDVD or Studio Pro.
    Can anybody offer me some advice or point me to some good resources? 

    Assume you're referring to Compressor 4, although the following would pretty much also apply to earlier versions.
    Yes; you will have an additional file with chapter markers.
    Select a preset…you can start with any of them, but Pro Res 422 makes the most sense.
    If your source file (the exported Quick Time file) was PR 422, it will not change the scale and will preserve the quality of your original file (or close enough so you wouldn't be able to see the difference even with a blown up projected image). If, for some reason you a codec other than Pro Res, go to the Inspector>Encoder pane>Video Settings>Compression Settings and make your choice. 
    In the Preview window, set the chapter markers, which are frame-accurate in an I Frame format like Pro Res.
    Submit and Compressor will spit out a high quality QT movie. You can then bring that movie into iDVD, which will recognize your markers.
    If you want to use DVDSP, you have two options. 1) You can let DVDSP do the encoding by importing the QT movie with chapters. 2) You can use Compressor to encode; you choose the DVD preset (Disk Burning) and it creates separate audio and video files that you then bring into DVDSP, which will "see" your markers in these files. Most DVDSP users use the second method because they have far greater control over the compression settings…but that presumes the user is relatively familiar with Compressor and Frame Controls.
    Finally, bear in mind that DVDs are standard definition, so – however you get there – the DVD will be much more compressed and much smaller resolution than any High Def format. However, the DVD end product can still look very good. Do some tests with small, but representative sections of your movie to see whether iDVD or DVDSP works best for you.
    Good luck.
    Russ

  • How is it posible to get the File name, size and type from a File out the H

    How is it posible to get the File name, size and type from a File out the HttpServletRequest. I want to upload a File from a client and save it on a server with the client name. I want to conrole before saving the name, type and size of the file.How is it posible to get the File name, size and type from a File out the HttpServletRequest.
    form JSP
    <form name="form" method="post" action="procesuploading.jsp" ENCTYPE="multipart/form-data">
    File: <input type="file" name="filename"/
    Path: <input type="text" readonly="" name="path" value="c:"/
    Saveas: <input type="text" name="saveas"/>
    <input name="submit" type="submit" value="Upload" />
    </form>
    proces JSP
    <%@ page language="java" %>
    <%@ page import="java.util.*" %>
    <%@ page import="FileUploadBean" %>
    <jsp:useBean id="TheBean" scope="page" class="FileUploadBean" />
    <%
    TheBean.doUpload(request);
    %>
    BEAN
    import java.io.*;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.ServletInputStream;
    public class FileUploadBean {
    public void doUpload(HttpServletRequest request) throws IOException
              String melding = "";
              String filename = request.getParameter("saveas");
              String path = request.getParameter("path");
              PrintWriter pw = new PrintWriter(new BufferedWriter(new FileWriter("test.java")));
              ServletInputStream in = request.getInputStream();
              int i = in.read();
              System.out.println("filename:"+filename);
              System.out.println("path:"+path);
              while (i != -1)
                   pw.print((char) i);
                   i = in.read();
              pw.close();
    }

    Thanks it works great.
    Here an excample from my code
    import org.apache.commons.fileupload.*;
    public class FileUploadBean extends Object implements java.io.Serializable{
    String foutmelding = "geen";
    String path;
    String filename;
    public boolean doUpload(HttpServletRequest request) throws IOException
         try
         // Create a new file upload handler
         FileUpload upload = new FileUpload();
         // Set upload parameters
         upload.setSizeMax(100000);
         upload.setSizeThreshold(100000000);
         upload.setRepositoryPath("/");
         // Parse the request
         List items = upload.parseRequest(request);
         // Process the uploaded fields
         Iterator iter = items.iterator();
         while (iter.hasNext())
         FileItem item = (FileItem) iter.next();
              if (item.isFormField())
                   String stringitem = item.getString();
         else
              String filename = "";
                   int temp = item.getName().lastIndexOf("\\");
                   filename = item.getName().substring(temp,item.getName().length());
                   File bestand = new File(path+filename);
                   if(item.getSize() > SizeMax && SizeMax != -1){foutmelding = "bestand is te groot.";return false;}
                   if(bestand.exists()){foutmelding ="bestand bestaat al";return false;}
                   FileOutputStream fOut = new FileOutputStream(bestand);     
                   BufferedOutputStream bOut = new BufferedOutputStream(fOut);
                   int bytesRead =0;
                   byte[] data = item.get();
                   bOut.write(data, 0 , data.length);     
                   bOut.close();
         catch(Exception e)
              System.out.println("er is een foutontstaan bij het opslaan de een bestand "+e);
              foutmelding = "Bestand opsturen is fout gegaan";
         return true;
         }

  • My mac says that it has 40 gb of movies on it but when i finder search for file size, and for file type it gives me no videos

    My mac says that it has 40 gb of movies on it but when i finder search for file size, and for file type it gives me no videos or movies. I have called apple 3 times and each time they do the same thing and then do something that takes awhile to finish so we hang up and then it never works.
    Please Help

    each time they do the same thing
    And what thing might that be?

  • File Sizes and Capacity

    Ive noticed low available space on my system how i do go through each folder to find ou thowmuch it contains?
    like in windowsxp [i know its a diff os..but in comparison] how owuld i see the file sizes through out each folder ?
    thank you

    an easier solution is to click that little gear icon at the top of the finder window (make sure you have nothing selected) the click "show view options" then check off "size" and "calculate all sizes" and make sure at the top that "all windows" is selected....that should do the trick
    (@work) eMac G4 1.25 GHz OS X 10.3.9 (@home) Mac Pro 2.66 GHz Intel Quad-Xeon   Mac OS X (10.4.9)  

  • Logging software - shrinking file size and keeping timecode

    I recently found and downloaded the trial version of InqScribe Transcription Software (http://www.inqscribe.com/index.html).
    It seems pretty neat. You can open up and video file in the program and it read the timecode from the file and inserts it into transcript as your typing. It says it can open ANY type of video that Quicktime can view.
    Here's my dilemma - I want my clients and producer to use this program to log footage on their PCs out and about. I"m shooting with the Sony NX5 and transcoding to Pro Res LT. Obviously these files are HUGE.
    I'd like to find a way that I can shrink the file sizes and keep the original timecode. I thought h.264 would be best. I can also shrink the resolution from 1920x1080 down to something much smaller.
    I'm looking for an end product that is compatible with PCs and Macs, around 500mbs or less, and has the original TC.

    Resize to 480x270. The data rate before compression will be 1/16 of the 1920x 1080 image. Add H.264 Quicktime compression and you'll have a small file. Verify with the company that it can read h.264 files.
    When you do the conversion use Compressor and turn off Frame Controls when you do the resizing.The encoding will go much faster.
    x

  • I need to export a photo at around 1meg file size,and dont seem to be able to do it in the presets can anyone help please ,I shoot on a canon 5d

    I need to export a photo at around 1meg file size,and dont seem to be able to do it in the presets can anyone help please ,I shoot on a canon 5d

    I believe Frank is referring to the end use (e.g., for print or on-screen use).
    Until he returns, I can tell you that I ran a quick test using an image from the Aperture 3 training book library which was as follows:
    Camera = Canon EOS 5D Mark II
    Master resolution = 5616 x 3744 (21 MP)
    I was able to export to a JPEG with end file size of 1 MB as follows:
    Export Presets drop-down > select 'Edit' option
    Selected preset name 'JPEG - 50% of Original Size' > change percentage value to 40% > change DPI value to '300' > click OK to set as current default > Export version to desktop.
    The exported JPEG has a resolution of 2246 x 1498 and appears on screen to have the same image quality of the original in Aperture.
    Note - I did not change the default Image Quality slider in the Export Preset dialog (which left it at 10).
    Basically, you will need to play around with the settings until you find the appropriate values to arrive at an image version you want.

  • Resize Video, both the file size and actual size

    Hi All,
    I am very new to Adobe Premiere (CS3). I have had it for a while but not needed to use until now. A client of mine has sent me a video that he wants on his website. But it’s 150M and 1280 * 720. Can anyone help me out with how I can resize both the file size and actual size to say 800 * 450 so it can stream it via the net?
    Like I said very new to this,
    Cheers,
    Mike.

    The first thing you need to do is determine just what KIND of file you were sent, so you may start a project that matches the file
    Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037?tstart=0
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811?tstart=0
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037?tstart=0
    I don't do streaming video, so you should search the help file... I **think** what you want out is a Flash file, but that is only after you know what you are going to load into the CS3 timeline

  • Check image details like resolution, dimensions, color mode, file format, file size and file name

    I have 1000 images in a folder, i want to check their details like resolution, dimensions, color mode, file format, file size and file name into excel with nice user interface.
    Pls help me, m just learning ABCD in VB.

    The code in the file at the link below might give you a starting point. Firstly it gives you the opportunity to list all of the properties of a file type and then you can select the properties that you want and the second utility gives you the
    opportunity to list the selected properties for all files in a selected folder.
    Download and extract the file and open the file in Excel.
    Click the first button List Meta Data for One File (Run first)
    Navigate to and Select any ONE individual photo file. (Photo files because that is what you indicated you are working with.)
    You will be presented with a list of the available properties for the file. Where the Item value is blank, that property is not recorded for the particular file. Different file types have different properties and it is also dependent on how the file
    was created but generally if all of the files come from the same source then the same properties are recorded for all files from that source.
    Now insert a Y in column D for all of the required properties. (Don't select any with the Item value blank)
    Click the second button List Selected Meta Data for all Files in a Folder (Run after selecting the required properties).
    Next select a folder where the files reside. (You might need to back up to the folder if dialog is blank because it will not show individual files because the code only allows Folders.)
    You will be presented with a report listing all of the selected properties for all of the files in the selected folder.
    The user interface is not that great but you can improve on that if you want to with a Userform as you get to know VBA a little better.
    Download the file from here.
    https://onedrive.live.com/redir?resid=C2A7A5912D3D17B0!273&authkey=!ANf8R0Xf0-h3wJ8&ithint=file%2czip
    Regards, OssieMac

  • Just upgraded to Win 8.1: PSE 11 now will not let me change the paper size and type in the print properties.

    I have just upgraded to windows 8.1 but my photoshop elements 11 now will not let me change the paper size and type in the print properties.  Also some of the property popup boxes just flash on the screen but do not stay displayed!

    Camera Raw plug-in | Supported cameras
    Camera Raw-compatible Adobe applications
    The D7100 requires Camera Raw 6.5 which is compatible with CS5.
    In CS5, click Help > Updates to update Camera Raw to 6.7 and you'll be able to open and edit Raw D7100 NEF files.

  • API to restric size and type documents uploaded

    Hi Guys,
    I'd like to know if exists any api to restrict the each document size and type, when you upload it?
    For example, load anly documents type .pdf with size no higher than 4K.
    Thanks.
    Ciao.Liliana.

    How about using folder quotas to tackle the size issue? As for file types, I'm not sure on how this could be done.

  • Two step import, downsizing image file sizes and/or keeping copies?

    hi all,
    leonie was kind enough on another thread to suggest a two step import from the iphone in order to make sure that there is no accidental deletion or data loss. my understanding (i'm repeating it here myself in case i am misunderstanding) is that this routine involves 1. importing images into Aperture via the conventional import method and then 2. backing up to iTunes (to save the images) and 3. verifying (visually i think) that the images are in the Aperture database and then if so allow Aperture to delete all the images from the iPhone.
    this seems to make sense to me but i realized i had a couple of questions about general "photo hygiene" related to this kind of thing.
    1. is there some way to downsize file size after images are imported into Aperture? i take a ton of photos and only some are important to keep at a high resolution and i feel like i am stuck between having a huge Aperture database cluttered with lots of photos at high resolution /or/ turning down the file size and finding that i have an important image that is at a low resolution because i forgot to turn up the file size (i think these are in settings somewhere in my phone) before i took the photo or only realized later that it was important to have this image at higher resolution. if i could downsize while thinking about it in Aperture this seems like it would work.
    2. does anyone keep an external copy of their images outside of the Aperture database?
    thanks

    hi terence,
    thank you.
    so can i ask if anyone is using an iphone and/or what setting(s) and/or resolution folks are using?
    i guess i have a bit of a dilemma in that i take a ton of photos and i only use one at a high resolution while the others can be something as insignificant as a visual note to myself. and it kind of kills me that these could be 1.2 MB in that i have a lot of them. i sort of wish there was a way to downsample imagery since a lot of these are not so important.
    anyway. yeah i guess i was wondering if folks do a referenced library or keep an extra copy as a backup (i guess i am 'embedding' images in the library but i forget what i call this in aperture) - and i have started to wonder if there is some utility to doing a referenced library or keeping a backup but this seems like overkill while at the same time a referenced library would allow me the ability to downsample images from what i can tell but i am just guessing here since i haven't tried this method.
    thanks.

  • The box in my Photoshop Elements, which shows the size and types of brushes has shrunk to one unreadable line. How do I expand the box to its original size?  I have tried dragging it open but nothing moves.

    The box in my Photoshop Elements, which shows the size and type of brushes, has shrunk to one unreadable line. How can I expand this box to its original size? I have tried dragging it open but nothing happens and none of the tool boxes appear to give me an expansion option

    Well, when you open the program, the splash screen, the window you see while the program is opening, should make that clear enough. For example:

Maybe you are looking for

  • I think my hard drive is dying, do you agree?

    Hello folks! I have a late 2011 15" MbP, and recently it has become extremely slow and glitchy. I have checked the activity monitor to see if anything is using up my memory (I have 8 gb) or my processor (I picked the best one offered at the time), an

  • Firefox always say web site can't be found ! why is this

    my firefox has problem going into other web site ! it always display web site can't be found . == URL of affected sites == http://

  • [SOLVED]VMware wont open

    I have successfully installed vmware, and was previously getting the modual build dialog, i successfully patched and ran vmware-modconfig --console --install-all, all moduals built successfully, i had since installed firefox and now vmware will not r

  • Audio for the menu

    I can't add audio to the main menu

  • How to debugg smart forms

    plz tell me how to debugg smart forms