Still Graphic displayed with idle DVD

Not sure exactly how to describe the feature, but if i stick a commercial DVD into my powerbook, i get a prompt from DVD Player that asks if i want to start the disc from the beginning or "last time played." What i'm interested in is what the DVD is displaying during this prompt. Generally, there is a graphic displayed with the title and artwork from the film . It is a still, but i'm not sure if its a special menu or slideshow or what.
I'm having trouble finding documentation about it as i don't even know what its called. Is anyone familiar with this feature or what the technical name/behavior is? Is it something that has to be scripted?
Thanks!
G5   Mac OS X (10.4.9)  
G5   Mac OS X (10.4.9)  

Hi:
Wellcome to the forums !
Search for About Jacket Pictures in DVDSP User Manual. I think that's what you mean.
I never used this feature but heard that not all players can deal with it fine. Look at this SEARCH in this forum for other threads related:
http://discussions.apple.com/search.jspa?objID=f952&search=Go&q=jacket
Hope that helps!
  Alberto

Similar Messages

  • Getting graphic display with GL4java

    Hello .. I'm trying to get a basic display with GL4java. I'm able
    to create the main window but cannot get any openGL display. I've first defined a class which extends from JFrame who is the main window. From the panel, I've added a class which extends from Canvas. This is the class where I define the openGL configurations.. !
    I don't know why I can't get an openGL display. Would you know what I'm doing wrong.
    -=-=-=-=-=-=-
    code from Graphique.java
    /* Generated by Together */
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.*;
    import java.net.*;
    import java.lang.*;
    import java.util.*;
    import java.io.*;
    import gl4java.*;
    import gl4java.awt.*;
    import gl4java.drawable.*;
    import gl4java.utils.textures.*;
    import gl4java.utils.glut.*;
    public class Graphique extends Canvas implements GLEventListener, MouseListener, MouseMotionListener, KeyListener{
    constructeur
    public Graphique()
    setSize(400,400);
    addKeyListener(this);
    x = 0;
    y = 0;
    public void init(GLDrawable drawable)
    System.out.println("ICI");
    gl = drawable.getGL();
    glu = drawable.getGLU();
    glut = new GLUTFuncLightImpl(gl, glu);
    glj = drawable.getGLContext();
    this.gldrawable = drawable;
    public void display(GLDrawable drawable)
    //gl.glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
    glu.gluLookAt(0.0,0.0,10.0,0.0,0.0,0.0,0.0,-1.0,0.0);
    gl.glMatrixMode(GL_PROJECTION);
    gl.glLoadIdentity();
    glu.gluPerspective(45.0f,1.0,0.1f,150.0f);
    gl.glMatrixMode(GL_MODELVIEW);
    gl.glBegin(gl.GL_QUADS);
    gl.glColor3d(1.0,0.0,0.0);
    gl.glVertex3d(0.0,0.0,1.0);
    gl.glVertex3d(1.0,0.0,1.0);
    gl.glVertex3d(1.0,1.0,1.0);
    gl.glVertex3d(0.0,1.0,1.0);
    gl.glColor3d(0.0,1.0,0.0);
    gl.glVertex3d(3.0,3.0,1.0);
    gl.glVertex3d(4.0,3.0,1.0);
    gl.glVertex3d(4.0,4.0,1.0);
    gl.glVertex3d(3.0,4.0,1.0);
    gl.glColor3d(0.0,0.0,1.0);
    gl.glVertex3d(4.0,4.0,1.0);
    gl.glVertex3d(5.0,4.0,1.0);
    gl.glVertex3d(5.0,5.0,1.0);
    gl.glVertex3d(4.0,5.0,1.0);
    gl.glEnd();
    public void reshape(gl4java.drawable.GLDrawable gld, int width, int height)
    float h = (float) height / (float) width;
    gl.glViewport(0,0,width,height);
    gl.glMatrixMode(GL_PROJECTION);
    gl.glLoadIdentity();
    glu.gluPerspective(45.0f,1.0,0.1f,150.0f);
    gl.glMatrixMode(GL_MODELVIEW);
    gl.glLoadIdentity();
    public void cleanup(GLDrawable drawable)
    System.out.println("destroy(): " + this);
    drawable.removeMouseListener(this);
    drawable.removeMouseMotionListener(this);
    public void postDisplay(GLDrawable drawable) {}
    public void preDisplay(GLDrawable drawable) {}
    paint(Graphics)
    public void paint(Graphics g) {
    //g.drawRect(x, y, x+1, y+1); // draw border
    //g.drawString("le jeu va ici :)", 20,20);
    //setBackground(Color.blue);
    GLFunc gl;
    gl.glPushMatrix();
    gl.glPopMatrix();
    keyPressed(KeyEvent)
    public void keyPressed(KeyEvent evt)
    int no = evt.getKeyCode();
    System.out.println(no);
    switch(no)
    case 40: //DOWN
    y += 5;
    break;
    case 39: //RIGHT
    x += 5;
    break;
    case 37: //LEFT
    x -= 5;
    break;
    case 38: //UP
    y -= 5;
    break;
    case 10: //ENTER
    break;
    case 27: //ESC
    break;
    case 17: //CTRL
    break;
    case 18: //ALT
    break;
    //repaint();
    keyReleased(KeyEvent)
    public void keyReleased(KeyEvent evt)
    int no = evt.getKeyCode();
    //System.out.println(c);
    keyTyped(KeyEvent)
    public void keyTyped(KeyEvent evt){}
    public void mouseExited(MouseEvent evt) {}
    public void mousePressed(MouseEvent evt) {}
    public void mouseReleased(MouseEvent evt) {}
    public void mouseClicked(MouseEvent evt) {}
    public void mouseDragged(MouseEvent evt) {}
    public void mouseMoved(MouseEvent e) {}
    public void mouseEntered(MouseEvent evt) {}
    int x;
    int y;
    private GLFunc gl;
    private GLUFunc glu;
    private GLUTFunc glut;
    private GLContext glj;
    private GLDrawable gldrawable;
    //private Joueur joueur1;
    //private Joueur joueur2;
    //private Joueur joueur3;
    //private Joueur joueur4;
    //private Plateau UnPlateau;
    }

    That's what I did. However, I browse the code given with the NeHe jars and was able to retrieve the information I needed to start my application.
    Still, there's something that's bugging me. I can run my application with JBuilder, but not using java, javac MSdos tools. I receive an error saying that my class is not recognized when I add to classpath to gl4java jars.
    the reason why I want to use java basic tools is that my computer just crashed a few time when I executed the program. I believe it's because of JBuilder which is oversurpassing my computer's ressources. You see, I use a pII 266 with 64meg ram, while the recommended speed is 128meg ram.
    thanks again for your time :)

  • Problem with display of movie dvd

    If a movie DVD displays with a black band at the top and at the bottom of the screen on my 15" MacBook Pro, is there a way to view the DVD full-screen?  The way the movie displays now, it's only utilizing 1/2 the screen.

    Thanks. I did a half-hour one-to-one yesterday at The Apple Store. I learned about the "high aspect ratio" and the importance in display. Apparently, in the past few years, this wide-screen vs full-screen choice just is what it is depending on how the video was produced.  We've been watching older dvds and netflix, so were surprised by the wide-screen on some recent viewing of 2012 dvd and netflix.  I'm learning a lot. Your response is appreciated.

  • I have just used air display with macbook pro. i have disconnected now from apple tv. but my laptop screen is still very small like its connected to the tv. this means all the tabs and writing is very small, how do i full disconnect my laptop?

    i have just used air display with macbook pro. i have disconnected now from apple tv. but my laptop screen is still very small like its connected to the tv. this means all the tabs and writing is very small. like the display down the bottom where al the applications are, is n the middle of the page and not spread down the bottom. this is seriously annoying! all the writing is every small and the tabs are small and its hard to read.  the air display link has disappeared from my computer. but the laptop screen is still very small. i want to know how do i get rid of this and return my macbook screen to its normal size. thank you

    Hello chrispyw,
    If your content is still being displayed incorrectly, I would check the resolution setting for the built in display with this article:
    OS X Yosemite: Adjust your display’s resolution
    If it keeps happening whenever you use AirPlay then I would use this section of the following article to reset the display system:
    Apple computers: Troubleshooting issues with video on internal or external displays
    Reset the system
    You can reset the Mac's parameter RAM and SMC.Reset the resolution
    Start by resetting the Mac's parameter RAM. If the display does not come up, was previously set to an unsupported resolution, and still results in no video:
    Start up in Safe Mode.
    From the Apple () menu, choose System Preferences.
    Choose Displays from the View menu to open the preferences pane.
    Select any resolution and refresh rate that your display supports.
    Restart your computer.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • Problem with playroll/graphic display

    Hi, this is my first post so bear with me. I'll try to be as explicit as possible.
    So, I'm having an issue on my iMac 24" 2.4 4GB memory. Randomly, after I edit a VST, or add an effect onto a track and playback the audio, the playroll will quit moving and the graphic displays (volume meters, etc) all stop functioning. If I click on the screen, it flashes the playhead and meters for an instant, and then immediately stops. It's kind of strange; the audio all sounds fine. I just like to see the playhead and movement on the display.
    The real strange thing here is, when I restart Logic 8, even with the same effects and everything enabled--exactly the same--the playhead works fine. Then after a few more edits, this same thing happens. Restarting logic immediately fixes the issue.
    Any advice--whether it be altering my buffer settings, etc--would be greatly appreciated. Thanks for your time!

    Sorry, one thing to add. The things I'm editing are not that crazy--pretty simple stuff, a few filters.

  • Xerox XA7-19i LCD display is still incompatible even with 10.4.8

    I wrote a post around half year ago, but it was archived, so i open up a new thread since the problem is still unresolved.
    http://discussions.apple.com/thread.jspa?threadID=590802
    Just reminder...
    I've discovered some strange behaviour of my core duo mac mini with Xerox XA7-19i LCD display. This display worked well with 10.4.5, but after my upgrade to 10.4.7 my screen was blank and only blinked a little bit after booting. The only way was to put into sleep mode with the power button, and wake up with the keyboard to get it work. It was disgusting so i reinstalled osx and upgrade only to 10.4.6. Now it works, but i cannot see the booting of my computer i onyl see a black blinking during the boot. After that when it booted up totally a get the desktop. It's now a little bit better, but still strange.
    With 10.4.8 the problem is the same as with 10.4.7, so apple has not changed anything, despite of my bug report.
    I hope sombody will read this problem, and may have a solution for that!
    Mac Mini Core Duo (1.gen) 1,66   Mac OS X (10.4.8)   Xerox XA7-19i LCD Display

    Hi B4n4n;
    If you feel that strongly about this question then talk to Apple. Here on this discussion you are talking to other Apple users like yourself. You can submit your feedback to Apple at OS X feedback.
    Allan

  • Is it possible to set primary and secondary display with 2 graphics cards?

    I have an Early 2008 Mac Pro with two graphics cards and four monitors installed. Does anyone know how the computer (or more specifically Keynote) determines which is the primary display and which is the secondary?
    Also is there any way to change the scheme?
    What I am trying to do is switch the primary and secondary from the two monitors in my office to the monitor at the podium (would like it to become primary) and a vga projector (would like it to become secondary)
    I bought the second graphics card so I wouldn't have to switch the cables back and forth three times a week. All the monitors work fine, it's just a matter of determining or changing primary/secondary
    Thanks in advance

    Thanks Malcolm
    I got that far – The keynote manual says that the display with the menu bar is the primary display – that works out fine. The problem is that the manual says that the display without the menu bar is the secondary (or alternate). But there are three displays without the menu bar.
    What I would like to find out is: is there a way to choose the display without the menu bar to be the alternate?
    When I try various combinations, there seems to be no rhyme or reason as to which display is the alternate.
    Thanks again for your response!

  • I am looking to update to a new imac with intel core processor. I am still old school with a powerbook G4. I want to know if I am going to have to upgrade all graphic programs right away after buying new computer. Thanks.

    I am looking to update to a new imac with intel core processor. I am still old school with a powerbook G4:)
    I want to know if I am going to have to upgrade all graphic programs right away after buying new computer.
    Trying to weigh ALL costs involved.
    Thanks for any advice!!!

    Anything you have that is powerpc code only will not run on a new machine.  OS X 10.8 has no support for powerpc code (universal binary programs should be fine).
    Other than that warning, without knowing exactly what programs you have, and what version you are on, it is hard to say whay will or will not migrate alright.
    you might need to do some web searching and check apps at sites like roaringapps or on the programs Company web site.
    http://roaringapps.com/apps:table

  • Artifacts in display with PSE-13

    Downloaded and installed PSE 13. In the photo editor I am getting artifacts when layers are created and when I use the Navigator to show different sections of the photo.
    In navigator this shows up as red lines as above. In the main display the lines show with various colours. The artifacts disappear in the main display with a mouseover but remain in the navigator window.
    Windows 8.1 64 - Nvidia 230 graphics card (drivers up to date) - Dell U3014 monitor running from DVI, 8GB RAM i7 CPU 2.8GHz.
    I still have PSE 12 installed and this problem does not occur with the photo editor in that version.
    Tried a re-install (as administrator), deleted the presets and PSE 13 editor recreated them - both of these actions did not help.

    So far, i'm not seeing that on windows 8.1 x64 or mac os x 10.9.5 with photoshop elements 13.
    (both systems have Nvidia  graphics cards, though different ones than you have)
    You installed the latest graphics card drivers from the Nvidia website?
    (windows update doesn't always install the latest drivers)
    Drivers - Download NVIDIA Drivers

  • Graphics issues with MacBook Pro Retina

    I bought my 15" MBPr in July and have been living with these issues since the beginning. Generally the issue happens when scrolling or writing in forms on web pages in Safari. Often times pieces of the web page will stick or ghost. This also sometimes happens when viewing photos on FaceBook. Anyone else having similar issues?

    A number of folks have had graphics issues with the Retina display model... since you're still under warranty, take your unit to your local Apple Store or an AASP and reproduce the problem for them. They should have a 'fix' - even if it means replacing the logic board - that will be of no cost to you.
    I couldn't have put up with that as long as you have...
    Clinton

  • Does the standard Intel HD Graphics 4000 in the 13 inch Macbook pro stand up to other graphics cards with dedicated memory ( 1GB of memory for instance)?

    Does the standard Intel HD Graphics 4000 in the 13 inch Macbook pro stand up to other graphics cards with dedicated memory ( 1GB of memory for instance)? I need a laptop for college and the Engineering program suggests a dedicated video card with minimum 1GB of video memory.

    I have a Intel HD 4000 in my Mac Mini (late 2012), and it's okay for what I need it.
    However:
    - there were a few issues with flickering on the video output to external monitors. These were solved through a firmware update that came with OSX 10.8.3 - for the majority of the users. There is apparently still a small group of users that still has issues. You can read long threads about this here:
    https://discussions.apple.com/thread/4472316?start=0&tstart=0
    and here
    https://discussions.apple.com/thread/4490924?start=0&tstart=0
    So for most of us (me included) this issue is solved, but it seems that certain displays / monitors don't work well with the intel HD4000, don't know if there is a pattern or a list of monitor models...
    - there was an issue with the color calibration on the HDMI output. No matter how much you tried to calibrate, the results remained unsatisfying. All light colors were crushed to white, wrong contrast, ...
    You can read about this here:
    http://forums.macrumors.com/showthread.php?t=1482487
    https://discussions.apple.com/thread/4480354?start=0&tstart=0
    The same firmware update improved this a little, good enough for me, but I can imagine it's not good enough if you do graphic work and need reliable colors from your monitor. On HDMI output, the thunderbolt/MDP output is fine. So it's mainly a dual monitor setup issue.
    If it's for graphic work, I'd go for a Mac Book Pro with dedicated GPU !

  • Audio Probelms with some DVDS/BLU-RAY discs when using optical out to Audigy 2

    I have my PS3 connected to my Audigy 2 ZS soundcard via optical?cable to play 5. sound on my PC sound system (Klipsch Promedia Ultra 5.). I have finally successfully played discrete 5. sound with some DVDs. I have changed my optical out setting to bitstream in the DVD/BD menu (XMB) and selected optical with everything checked in (XMB). So far, The Matrix, The Matrix Reloaded and Minority Report have worked in proper 5. (not stereo matrixing). Both Dolby Digital and DTS tracks (I know it works because it sounds twice as good as Dolby?Digital) ?work in Minority Report. The problem is... Jurassic Park (DTS) and my Blu-ray MIssion Impossible 3 have no audio (probably more too). The STRANGE part is if I fastfoward both films by .5x (so that audio plays in FF) I can hear audio. When FF by .5x the display signal on the top of the screen changes from DTS or DOLBY DIGITAL: Multi Channel to DTS or DOLBY DIGITAL: 5..
    What is with that?Also I still do not get audio in any games, Resistance (Blu-ray)?or any game demo but I do get the audio from the game display screen (XMB). Please if anyone has?any?useful advise or information it would be greatly appreciated.
    ?Thank you!

    I have my PS3 connected to my Audigy 2 ZS soundcard via optical?cable to play 5. sound on my PC sound system (Klipsch Promedia Ultra 5.). I have finally successfully played discrete 5. sound with some DVDs. I have changed my optical out setting to bitstream in the DVD/BD menu (XMB) and selected optical with everything checked in (XMB). So far, The Matrix, The Matrix Reloaded and Minority Report have worked in proper 5. (not stereo matrixing). Both Dolby Digital and DTS tracks (I know it works because it sounds twice as good as Dolby?Digital) ?work in Minority Report. The problem is... Jurassic Park (DTS) and my Blu-ray MIssion Impossible 3 have no audio (probably more too). The STRANGE part is if I fastfoward both films by .5x (so that audio plays in FF) I can hear audio. When FF by .5x the display signal on the top of the screen changes from DTS or DOLBY DIGITAL: Multi Channel to DTS or DOLBY DIGITAL: 5..
    What is with that?Also I still do not get audio in any games, Resistance (Blu-ray)?or any game demo but I do get the audio from the game display screen (XMB). Please if anyone has?any?useful advise or information it would be greatly appreciated.
    ?Thank you!

  • [ZM] Problem with idle shutdown.(or idle tim

    My zen micro's current firmware is ..0
    I found this problem months ago, but didn't try to figure it out.
    There is centainly problem with idle shutdown timer.
    I guess the IDLE SHUTDOWN TIMER SHOULD NOT RUN IF THE PLAYER IS PLAYING.
    Idle = player is on, but not playing or not performing any task.
    My current setting is
    Idle timer = 5 min
    Sleep timer = 45 min
    This problem occurs,
    When the player is turning on from deep sleep mode (after 4 hrs of stand-by mode)
    I left my player playing mp3 after turning on.
    And eventually the player shuts down itself after about 5 min (which is setted as idle timer)
    So I checked the screen when the player shut down itself, and the screen was displaying 'Idle Shutdown'
    Once the player shut down, it will not shut down again after turing on.
    Summary,
    . Turn on player after deep sleep mode(4hr)
    2. leave player as playing music
    3. after time amount of idle timer, it shuts down itself.
    4. the screen displays 'idle shutdown' when it shuts down itself.
    anyone noticing this problem?

    Jason-CL wrote:mcramen,I tested by taking the battery out(this will simulate as a deep sleep), and also turning on and off the player a few times without taking the batttery out with the same setting. The player are still playing now.Jason
    Jason, there is a critical difference your test missed: He turned his player off, let it go into "deep sleep" after 4 hours, then turned it back on and left it playing; it then went into "idle shutdown" after 5 minutes. This can only happen with 4-hour-standby firmwares (..02, 2.20.05, and the deprecated .0.02) turned off while playing, which then go into "deep sleep" after 4 hours; if you "simulate" it by resetting, it won't start playing when you turn it back on. And if you press any button, "idle shutdown" will work normally and the bug won't occur. (Older firmwares will lose your place when entering "deep sleep" after 24 hours, so they won't exhibit the problem.)
    Sounds like a firmware bug where it fails to recognize that a player turned on from "deep sleep" doesn't need a button punched to be playing. Get ready for .2 and possibly 2.2 firmwares, maybe?
    In the meantime, the workaround would be to press any button (menu, pause/unpause, anything) if it's playing when turning on from "deep sleep". (Much like the previous post, but I suspect any button other than the power switch will work, not just pause. But I could be wrong.)Message Edited by RBBrittain on 0-9-2005 02:4 PM

  • Query on graphics display in SCM 5.1

    Dear All,
    I am using SCM 5.1 and facing some issues while displaying the graphics
    1. In interactive planning, when I select the Graphics options, system displays the name of the planning book as graph title. What are the settings, so that it actually displays the selection characteristics on the graph.
    2. I also want to display the selection characteristics, on the screen when I execute a statistical forecast.
    3. When I select a subset of key figures, from the planning table, the graphic display does not get updated. It still shows all the key figures.
    The graphics function has changed significantly in SCM 5.1. Does anybody have a document listing the enhancements in SCm 5.1 for graphics?
    regards,
    Kedar

    Hello there Kedar,
    First of all you're very right, there are lots of changes from SCM 5.0 to 5.1 in graphics, but unfortunately I did not find anywhere a guide with changes introduced.
    In order to try to solve all your issues I'll strongly recomend you to update SCM until SP7, which introduces quite a lot of corrections in graphic displays.
    Then, have a look at this notes, which do solve more issues regarding graphics:
    Notes:  1228211, 1279862, 1151482
    Main new features, regarding my experience in implementations are these:
    - Users can modify default configured graphic in the interactive table through Switch to Design mode.
    - You can see key figures in table view but not in graphic and viceversa (correct usage of this function require having a look at notes and sp update)
    - Configuration of lines, fonts, sizes and rest of options is a bit more complex but complete.
    Hope this helps.
    Miguel Garcí

  • Hp 6250 printer - Color Graphics Display came off machine

    The graphics display screen pulled right out of the machine. I have opened it up but I can not find where the white cable (more like a flat ribbon) should be located and inserted inside the machine. If anyone can provide me with a picture of the inside of the printer where it should go or detailed insurctions on where it goes I think the machine will still work just fine.

    Hello, 
    Please call HP Tech Support for further assistance. The pritner has to be replaced.
    If you are in US , the toll free # is 1-800-474-6836 .
    If you are not in US , then log on to www.hp.com , at bottom-left corner there is a world map icon, click on it and then select the region you belong to, which would then provide support options for you for that region.
    Regards,
    Jabzi
    Give Kudos to say "thanks" by clicking on the "thumps Up icon" .
    Click "Accept as Solution" if it solved your problem, so others can find it.
    Although I am an HP employee, I am speaking for myself and not for HP.

Maybe you are looking for

  • T410 : keyboard problem after juice spill

    Hi, I have recently spilled some fruit juice (sweet and sticky) on my t410's keyboard. Here are the problems caused and the different steps I took to try and solve them : 1. Switched off the laptop, waited a day. Switched it back on. The laptop worke

  • How to get the change mode option for the line items in SC

    Hi Everybody, 1. when the SC has 2 line items and in that if both the line item are rejected by the approver and the requester is receiving it for accept changes and when he click on the change button and wants to change the line items of both the re

  • T60 Windows startup problem?

    So today out of the blue my IBM t60 shut off. when i try to start it back up it gives a blue screen of death while on the windows screen (windows xp). This occurs every single time even when the option to boot into safe mode is used. I've tried refor

  • Dynamic sql in BPEL SOA DB Adapters

    Hi, My requirement is to pass parameters to IN clause in SQL query in DB adapter. But my existing query has more than 1 where clause which fetched the details for single employee. Now I want to modify that query. Existing Query:select a.last_name as

  • E - Business Suite R11i on Windows Server 2008

    Hi , Can E - Business Suite R11i be install on Windows Server 2008 Service Pack 2 (32 bit) OS? If yes, what is minimum requirements for installing on Windows Server 2008 SP2 (32 bit)? I am trying to install this in my laptop but at the file unzipping