Photos for TV viewing ... what rez do you use?

Hi all, Just got a iPod Video 5th Gen. Have a few questions someone may be able to help with.
1, for viewing on a TV (PAL) whats the best size to put them on the iPod? 720pixels wide max? or can the photos be higher rez than that.. does the ipod scale them if they are bigger than pal ? to fit?
2, Colour profile.. is it best to set the profiles for the photos in the albums I'm syncing to S-RGB rather than AbobeRGB.. or should I assign PAL/SECAM ?
Just to point out each Album in iPhotot has 3 Albums Orig/Posted/Ipod so the ones in the posted album say Berlin(ipod) album (the one I sync) will be optimized for viewing from ipod on a tv. Just can't work out whats the best rez/col profile to save them off in from Photochop.
many thanks
Simon
www.flameop.co.uk

Adobe Camera Raw is the way to go – it will do all you want and more.
You can pick up the basics very quickly but it pays in the long run to discover its incredible versatility by visiting the Camera Raw forum.
And read the book too!

Similar Messages

  • What command would you use to check for allocation, structural, or logical integrity problems?

    What command would you use to check for allocation, structural, or logical integrity problems?

    Wondering if you are looking for DBCC CHECKDB command? For more information, on that command, try to look at this:
    http://technet.microsoft.com/en-us/library/ms176064.aspx

  • What procedures do you use in your organisation for requirements analysis..

    What procedures do you use in your organisation for requirements analysis, quality management and change control for your custom abap development?
    which process do you think work best for each stage\phase? is there are sap recommended process for each of these phases?
    thanks
    Bijo

    ezzetabi wrote:I was using terminus, but I found it too thin for my tastes (or maybe for my bad eyes...) so I sought around and I read many persons like the Microsoft's Consolas and I have to say that it is indeed very nice. Probably MS should stop doing OSes and start drawings fonts only...
    I never saw this particular font, but I second that, fonts is the only thing MS do well imo
    And so I wondered, what do you use? IMO a terminal font should be, readable, monospaced (doh) and a little thick.
    Of course if you do not use the terminal this post is not for you.
    terminus

  • What program do you use to open the installer file for mac?!

    for some reason it wants to use matlab. i know how to fix this problem myself if i knew what program to use to open the installer... but i cannot find that information anywhere. can someone please help me. what program do you use to open the java installer file for mac!?

    osx - Why is Adobe Flash Player downloaded as a ".dmg.mdlp" file? - Super User

  • What tools do you use for automating builds?

    Hi all Build Engineers,
    what systems do you use for automating builds - do you use your own tools, or some opensource project?
    If it is something public, which one it is, and what were the reasons to chose it?
    We are thinking about using the Hudson system (http://hudson.dev.java.net/) for our developers, but would like to hear from other RE groups about their experiences too.
    Thanks,
    Karel

    Tinderbox is another build monitoring tool. It does not show detailed steps of a build cycle. It only shows the final result : success or failed. But it can display build output for multiple platforms on the same page.
    This is how the tinderbox build grid will look --> http://tinderbox.mozilla.org/showbuilds.cgi?tree=SeaMonkey
    Detail Info -->
    http://www.mozilla.org/tinderbox.html
    Tinderbox can be connected to Bonsai -->
    It is a tool that shows you who checked in what, lets you perform queries on the contents of a CVS archive; get a list of checkins, see what checkins have been made by a whom, or on a given CVS branch, or in a particular time period.
    Detail Info -->
    http://www.mozilla.org/bonsai.html

  • What application are you using for student collaboration?

    The only part that is missing from iTunes University is real time student collaboration. What application are you using to bridge the gap? Thanks, Ed

    Yeah, I'm not sure I know what you mean either. 
    Q:  If you're asking which server-side code to use on Windows IIs Servers?
    A:  ASP or ASP.net and MSSql.  Since Microsoft built these languages, you would get the best support from MS Expression.
    If you're asking for software that helps you write code, you'll need to be more specific about which code you want to write and for what purpose.
    Nancy O.

  • What sites can you go to to replace itunes for free?, what sites can you go to to replace itunes for free?

    what sites can you use to download music for free instead of itunes? I have iphone 4

    This is not an Apple technical support issue. 
    Search google.
    Please review the Terms of Use of this forum that YOU agreed to by posting here if you're unclear as to what is appropriate for this forum.

  • What Classes do you use for developing Database Applications

    Hi ! (sorry for my bad english)
    I develop now an application for production planning and I use an informix database-server. I have no problems with the database an the connection. I,m a database expert, but I,m a newcommer in java. What classes do you use to develop a database application ? (specially Table Handling) I tried it with JTable and AbstractTableModel. Are there better possibilities ?
    JdbTable OR
    JTable with DBTableModel OR
    JTable with DBTableModel and DataSet
    I know that this is a big question, but some little Informations can help me. (I develop with JBuilder Proffessional)
    Thank you for your help.
    Wolfgang

    No - the classes you have described (AbstractTableModel etc) are Swing classes - that is, they are Models in the MVC GUI architecture. Database-related stuff (SQL at any rate) is contained in the packages java.sql and javax.sql - The latter is part of the Enterprise addition. You would also need to purchase a database driver (or use the sun one, which is something like com.sun.odbc.jdbc.Driver or whatever). The driver supplies you with connections to the database (java.sql.Connection).
    Alternatively, you may be deploying code in a J2EE AppServer (eg. WebLogic, WebSphere etc) in which case you can use the JNDI to get a javax.sql.DataSource object (by setting one up in the AppServer and doing a lookup on it) and use this to get database Connections.
      Class c = Class.forName("com.sybase.jdbc2.jdbc.SybDriver");
      SybDriver sybDriver = (SybDriver) c.newInstance();
      java.sql.DriverManager.registerDriver((Driver) sybDriver);
      //then use Driver object to get hold of a Connection
      //or alternatively using DataSources
      InitialContext ctx = new InitialContext();
      DataSource ds = (DataSource) ctx.lookup("jdbc/MyDriver");
      Connection conn = null;
      try{
        Connection conn = ds.getConnection("login", "password");
        Statement stmt = conn.createStatement();
        ResultSet rs = stmt.executeQuery("select * from MY_TABLE");
        while (rs.next()) {
          //columns are enumerated 1...n
          String s = rs.getString(1);
          //or can get by Col Name
          String str = rs.getString("name_col");
      } finally {
        conn.close();
      }Anyway, I hope this helps - you'll probably need to get a book on it (Java Enterprise by O'Reilly is a good one)

  • What listener do you use for adding text to JTextField?

    what listener do you use for adding text to JTextField?
    I have a component which adds some text to my JTextField, and I want to pick up this event. I have tried ActionListener with no effect.
    cheers,
    Olly

    jtextField.getDocument().addDocumentListener();
    The DocumentListener implements:
    changeUpdate() insertUpdate() removeUpdate().
    http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/event/DocumentListener.html

  • N8: what application do you use for chatting, it m...

    N8: what application do you use for chatting, it must support Google talk and msn

    That app was beta is no longer available in it's previous form. I believe it has reincarnated into Social which unfortunately does not support the two networks you referred to. Have you tried Nimbuzz?

  • What browser are you using with OS 9.x?

    Would you all please state which internet browser you are using with OS 9.x and the strengths/weaknesses you are experiencing with it?
    I switch back and forth between Mozilla and Internet Explorer but fewer and fewer websites work properly with them. If there is a better browser than those two I would add it to my old Wallstreet running 0S 9.1.
    Again, what browser are you using with OS 9.x and what are its good/bad points?
    Thanks!
    Message was edited by: Paul Stamser

    (Almost forgot
    I have an iCab filter set up for Yahoo on my OS 9.2.1 iMac.
    For the URL string I use (asterisk)yahoo(asterisk)
    For the Scripts filter I use the Netscape identity and have all versions checked except "JScript", and everything is checked in the "Allow" section.
    For the Network filter I use the Firefox identity and have the HTTP "referer" set to "Always".
    I don't use Yahoo Mail much on that machine, but those settings allow me to use the Address book to select addresses and send messages with attachments. (I'm not sure about viewing attachments, though, and I'm almost positive that address auto-complete doesn't work.)
    Cheers,
    K.S.
    (I use iCab 3.0.5)
    Message was edited by: K.S.

  • What hardware do you use?

    hello
    I am thinking about buying a 3D graphics card and a set of stereoscopic glasses so i can view my wonderful new virtual world. what do you all use? what would you recommend? i wsa thinking so far of a nvidia quadra 4 750. what glasses would you recommend i get? i found some and there were issues with drives being compatible with this or that game. i dont really need all that, just want to look at my j3d world in 3d. other stuff is nice, but j3d is why i'm buying it.
    do you have a set of glasses that you've used and like? what are they? what card are you using?
    thanks for any posts..

    does anyone use 3D glasses?

  • What browser do you use?

    Hi,
    I'm having some usability problems in Planning. IE9 doesn't work very well sometimes and Chrome doesn't even open workspace for me. What browser do you recommend? (v11.1.2.1)

    Icebergue wrote:
    Hi,
    I'm having some usability problems in Planning. IE9 doesn't work very well sometimes and Chrome doesn't even open workspace for me. What browser do you recommend? (v11.1.2.1)Personally I think you get most success using a supported browser, IE9 and Chrome are not supported in 11.1.2.1, IE9 is in 11.1.2.2 but still no support for Chrome.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • I'd like to get your opinion: POLL: What font do you use?

    People,
    I am curious to know what font you guys use for text in your various corporate projects? I'v used Helvetica for years, as it is corporate and clean, but I am looking for others.
    POLL: What font do you use - let's say for corporate brochure/annual reports texts?

    Jack,
    You may also have a look at some of the font talks in the Typography forum, or start a thread there; among the latest was this one: http://www.adobeforums.com/webx?128@@.ef602ce.59b709a5
    Obviously, the wrapping should fit the contents.
    When all is said, I still prefer the fairest font.

  • What CMS do you use?

    Hey guys, I'm the product manager for Oracle Content Marketing. We have integrations into Eloqua and open-source CMSs such a Wordpress, but we're also looking to integrate with other commercial CMSs. What CMSs do you use to manage your websites? Feel free to post general thoughts (or questions) about integrations between Content Marketing and CMSs in general. Love to hear what you think, thanks!

    Hi James,
    I had built an integration between Sitecore and Eloqua and posted some info on the AppCloud.
    Sitecore CMS
    You can also check out the PowerHour done sometime ago: Power Hour: Sitecore and Eloqua: How to get the best of both worlds - YouTube
    On a side note, the principles used can be applied to virtually any new generation Web CMS.

Maybe you are looking for

  • Issues with getting to side displays and closing apps

    Maybe someone else has had a similar problem or can help advise: I am on a Windows 8.1 Asus Laptop with a second monitor.   Up until about a week or two ago other than some resolution issues (assume may be my video card) all was ok with Windows 8 and

  • FF loads but does not display

    Since the upgrade to FF3.6, I've had several annoying glitches. 1 Dclick desktop icon, FF loads into memory, but does not display. End task. Then Dclick the icon again. This time FF loads and displays normally. 2. After closing FF with Save & Quit, n

  • My iMac 27" freezes very often...

    Hello, I don't know why but my iMac stops working all ~5 Minutes, even if I only have about 5 Applications open like Safari, Mail, Transmission, Adium and iTunes. I was looking for the reason by myself, for example I ran the Apple Hardware Test and I

  • Stack the values in a series but not stack by series

    Anyone have the idea on this: stack the values in a series but not stack by series. There is only 1 series in the chart and I want to stack all the values returned. No way to do this in apex?

  • PDF White pages- no content shows

    When I open a pdf file of a power point presentation on my computer it shows white pages only (file is 6MB). When the same file is opened on another computer it is fine. I am on Wndows 7 using Acrobat Reader X 10.1.4