How can I make my movies always start from the beginning?

I want to use my iPod to present short videos as part of a live presentation. I've conquered the hurdles, and have the iPod sending video out to my projector, but I want to ensure that every movie starts at the beginning, even if I had cut it short in the last presentation.
I thought I saw a setting for this somewhere, but now I can't find it.

WaMuHIP07 wrote:
Right-click the videos that you want to always start from the beginning in iTunes. The options tab of the video file properties contains this option control. Uncheck the box that says "Remember Play Postion."
Or hit the left side of your scroll wheel when launching it on your iPod

Similar Messages

  • How can i make Event witch is started before the page render.

    hello i want to do this :
    when i open some JSP no matter from where i want to have a backing bean for this jsp that have a method that starts before the render response.
    my ideas is to have a list of records from a sql server and i need a method that makes a conncetion to the sql server and add everythink in the request so when the jsp is displayed to have content.
    i need example of the backingbean method paste plz.

    I think you can add the sql coneection and all those initial things to the constractor of the bean which contains the variable u need in the page..
    and leave the getters and setters of those variables empty..
    if the DB changes frequently, you can make the scope of the bean: page scope
    otherwise let it be session scope..

  • How can I make all my tracks start at the same time? In bar 0 to be more specific

    HI! I want all my tracks to start at the same time. I need teh audio files to start at bar numer cero.

    Hi, first you'll have to adjust the project start to bar zero like shown here:
    http://help.apple.com/logicpro/mac/10/#lgcpce0833d7
    …then select all regions in your project and make sure the playhead is positioned at the start of bar zero exactly, now follow this:
    Have a nice day!

  • How can I add a .mov video file to the beginning of an existing .mp4 video file?

    I normally use final cut for all of my editing but Im having a lot of trouble converting this mp4 with bad pixelation.
    The mp4 is my only master copy of my original 8mm student film.
    It has some bad opening titles I need to alter and I need to slap my production logo on the front before I can even think of releasing this again.
    Any ideas?

    I normally use final cut for all of my editing but Im having a lot of trouble converting this mp4 with bad pixelation.
    The mp4 is my only master copy of my original 8mm student film.
    It has some bad opening titles I need to alter and I need to slap my production logo on the front before I can even think of releasing this again.
    Any ideas?

  • AudioInputStream won't start from the beginning

    I'm not sure if this is normal or not, but here's a weird the situation. I have a number of audio files that I play together. Nothing complicated.
        public void playAudio() {
            try{
                File soundFile_1 = new File("SoundFile1.wav");
                File soundFile_2 = new File("SoundFile2.wav");
                File soundFile_3 = new File("SoundFile3.wav");
                audioInputStream_1 = AudioSystem.getAudioInputStream(soundFile_1);
                audioInputStream_2 = AudioSystem.getAudioInputStream(soundFile_2);
                audioInputStream_3 = AudioSystem.getAudioInputStream(soundFile_3);
                audioFormat_1 = audioInputStream_1.getFormat();
                audioFormat_2 = audioInputStream_2.getFormat();
                audioFormat_3 = audioInputStream_3.getFormat();
                DataLine.Info dataLineInfo_1 = new DataLine.Info(SourceDataLine.class,audioFormat_1);
                DataLine.Info dataLineInfo_2 = new DataLine.Info(SourceDataLine.class,audioFormat_2);
                DataLine.Info dataLineInfo_3 = new DataLine.Info(SourceDataLine.class,audioFormat_3);
                sourceDataLine_1 = (SourceDataLine) AudioSystem.getLine(dataLineInfo_1);
                sourceDataLine_2 = (SourceDataLine) AudioSystem.getLine(dataLineInfo_2);
                sourceDataLine_3 = (SourceDataLine) AudioSystem.getLine(dataLineInfo_3);
                new PlayThread().start();
            } catch (Exception e) {
                e.printStackTrace();
                System.exit(0);
        class PlayThread extends Thread{
            byte tempBuffer_1[] = new byte[100000];
            byte tempBuffer_2[] = new byte[100000];
            byte tempBuffer_3[] = new byte[100000];
            @Override
            public void run(){
                try{
                    sourceDataLine_1.open(audioFormat_1);
                    sourceDataLine_2.open(audioFormat_2);
                    sourceDataLine_3.open(audioFormat_3);
                    sourceDataLine_1.start();
                    sourceDataLine_2.start();
                    sourceDataLine_3.start();
                    int nBytesRead;
                    while(((nBytesRead = audioInputStream_1.read(tempBuffer_1,0,tempBuffer_1.length)) != -1) &&
                          ((nBytesRead = audioInputStream_2.read(tempBuffer_2,0,tempBuffer_2.length)) != -1) &&
                          ((nBytesRead = audioInputStream_3.read(tempBuffer_3,0,tempBuffer_3.length)) != -1) &&
                          (stopPlayback == false)) {
                        if(nBytesRead > 0){
                            sourceDataLine_1.write(tempBuffer_1, 0, nBytesRead);
                            sourceDataLine_2.write(tempBuffer_2, 0, nBytesRead);
                            sourceDataLine_3.write(tempBuffer_3, 0, nBytesRead);
                    sourceDataLine_1.drain();
                    sourceDataLine_2.drain();
                    sourceDataLine_3.drain();
                    sourceDataLine_1.close();
                    sourceDataLine_2.close();
                    sourceDataLine_3.close();
                    stopPlayback = false;
                } catch (Exception e) {
                    e.printStackTrace();
                    System.exit(0);
        }I also have a method that combines the three audio files into one. I usually call this method after having played the files for a short time.
        public void saveAudio() {
            saveList.add(audioInputStream_1);
            saveList.add(audioInputStream_2);
            saveList.add(audioInputStream_3);
            saveMixAIS = new MixingFloatAudioInputStream(audioFormat_1, saveList);
            File saveFile = new File("SaveMix.wav");
            try {
                AudioSystem.write(saveMixAIS, AudioFileFormat.Type.WAVE, saveFile);
         } catch (IOException e) {
                e.printStackTrace();
    } Interesting enough, this code doesn't seem to combine the three audio files properly. What seems to happen is that the combined file starts at the location where I stopped playing. In order to get the files to start from the very beginning, I need to re-initialize the AudioInputStream.
        public void saveAudio() {
            try{
                File soundFile_1 = new File("SoundFile1.wav");
                File soundFile_2 = new File("SoundFile2.wav");
                File soundFile_3 = new File("SoundFile3.wav");
                audioInputStream_1 = AudioSystem.getAudioInputStream(soundFile_1);
                audioInputStream_2 = AudioSystem.getAudioInputStream(soundFile_2);
                audioInputStream_3 = AudioSystem.getAudioInputStream(soundFile_3);
            } catch (Exception e) {
                    e.printStackTrace();
                    System.exit(0);
            saveList.add(audioInputStream_1);
            saveList.add(audioInputStream_2);
            saveList.add(audioInputStream_3);
            saveMixAIS = new MixingFloatAudioInputStream(audioFormat_1, saveList);
            File saveFile = new File("SaveMix.wav");
            try {
                AudioSystem.write(saveMixAIS, AudioFileFormat.Type.WAVE, saveFile);
         } catch (IOException e) {
                e.printStackTrace();
    } Is this normal?

    mohogany wrote:
    That definitely makes sense.
    I was under the impression that the AudioInputStream never loses the data it has read and that the AudioSystem.write method always starts from the beginning of this AudioInputStream. I need to stop treating the AudioInputStream like an array and instead treat it more like fresh water.Definately.
    AudioInputStream doesn't actually have anything in it...it's actually just a wrapper. Whenever you call read on it, it just reads whatever it's wrapping around, and returns the result. This is why it can contain both live data being recorded or file data or a network stream or...
    In this case, it is reading from a BinaryFile. Everytime you call read, it increments the file position... and it doesn't reset the file position when you call AudioSystem.write...

  • Video doesn't start from the beginning

    Please tell me there is a setting on the iPod classic to always start a video from the beginning of the video??!?!?! I am using the iPod classic for video projection.
    E.g.: I play video #1 until, say, 3:00. I select menu and go to another video or a song, a photo, whatever. I go back to video #1 and it starts at 3:00! WHY?
    I want iPod Classic videos to ALWAYS start from the beginning.
    Please tell me there is a setting for this.
    thank you

    I have good news for you, (compared to your other post!).
    Select the video in iTunes and click on *File/Get Info* and look on the Options tab. Turn off the tick in *Remember playback position.* You can bulk select some or all your videos to do this.
    Phil

  • OBIEE 11.1.1.6.12 - sum of payments starting from the beginning of prompt month

    Hi all,
    how do I calculate sum of payments starting from the beginning of prompt month in OBIEE 11.1.1.6.12 ?

    used firefox no issues but in ie not seeing any issues

  • How can I make my movies pro for mac work?

    How can I make my movies pro for mac work?
    I have downloaded it i click on the icon but I cant make it work

    Delete the app using this free utlity > Download AppCleaner for Mac
    Then re download the app using the same Apple ID it was originally purchased from. You won't be charged again.
    How to re download apps from the Mac App Store:
    Open the App Store. From the menu bar click Store > Sign In
    Click Purchases from the top of the App Store window.
    Select which apps you want to re download. Then right or control click where you see Installed  then click Install.
    If you still have problems, I located the app developer's website. Contact details for help here >   http://www.mymovies.dk/about.aspx

  • HT201250 When Time Machine starts backingup, It popsup a small window that stays up the whole time it is backingup.  How can I make it do its job in the background without the popup?

    When Time Machine starts backingup, It popsup a small window that stays up the whole time it is backingup.  How can I make it do its job in the background without the popup?

    just let it do it for the first time.  actually you might want to option click the little symbol next to the time representing timemachine then click verify bacups
    Message was edited by: Carlo TD

  • How can I make my imap email not take the emails off the server?

    How can I make my imap email not take the emails off the server when I delete them on my iPad?
    Can anyone help me whith this?
    I tried to use the pop account in gmail settings but that was downloading all my emails sice 2008 ( more than 300 deleted emails tha can only be found in the deleted email box), when I just have 5 or 6 email in the inbox .
    How can I solve this????
    Thank u all...

    I have the same problem. For years I have been able to delete emails from my ipad and have them remain on the server so I can deal with them on the desktop. Now they get deleted from the server when deleted from the ipad, which makes the ipad unless for reading mail.
    You answered to delete the email account on the ipad and set up a new one as a pop. I have made many attempts to do that in the  incomping mail server "Host Name" field but it always errors out even when the host name is equal to what my desk top has. So I can see no way to change away from IMAP. I started with an ipad 1 and now have an ipad 2.
    Rachael

  • When I attach a file to outgoing mail it shows up in the body of the e-mail. How can i make it only show up at the end or elsewhere?

    When I attach a file to outgoing mail it shows up in the body of the e-mail. How can i make it only show up at the end or elsewhere?

    Edit > Attachments > Insert Attachments at End of Message. If a new message is the active window, the option applies only to that message. If you don't have a new message open, then the option becomes Always Insert Attachments at End of Message.

  • How can I recover a book I started from a file?

    I have recently installed the iPhoto 9.2.1 from App Store.
    I am having many problems with iPhoto after an electrical cut when I was working with it.
    First, when I opened iPhoto immediately after that, many of the events appeared in black box, when I open a file of these,  black boxes appears, photos could not being seeing, but click in one, the photo appears.
    I realized that those files I did not working with them for long.
    I am interested to recover them, How could I do it?
    I copy iPhoto Library into a external hard disc to safe and start from the beginning. I need to work in one book.
    Second,The photos for that book were in the external hard disc. I imported them into iPhoto and start working. I thought that everything was solved out.
    This morning when I opened the computer and iPhoto, My work, begun the previous day, was not there, iPhoto ask me if I want to recover iPhoto Library and  thinking that that was my last work, I said yes.
    But it was not, It was the old library, but the work that interests me has disappeared.
    How can I recover this work I started? It must be in some place.
    Thanks for your advice

    Sorry, it'll be impossible for any of us (the forum regulars) to post in this thread without making obvious suggestions like this; it's safe to ignore these suggestions, I understand that you are powerless here to make reasonable suggestions like "Fire the incompetent translation firm that can't keep up with its clients and retain one that actually has the licenses for the apps necessary to complete the project."  If nothing else, all of the people who search Google for the phrase "translation downsave CS5 CS4 book" will learn that the best answer is "tell your translation supplier that they will lose your business if they fail to upgrade."
    But in your case - no, I know of no such script to re-save a CS4 book from IDMLs spat out of CS5. The scripting forum is thataway; maybe they know of a script someone else has already written for this purpose. Mostly because, especically in a book file, one of the steps before saving the INDDs and book in CS4 should be "a human compares the IDML opened in CS4 against the INDDs in CS5, or PDFs generated from same, before Saving As CS4 INDD."

  • How can I make signature darker when I print the report?

    I need to put my manager's signature on the report. The signature is too light, How can I make it darker when I print the report?
    I used file link and OLE, both did't make it.
    Thanks.

    No way to do it directly in the report. You need to work with signature image file using any graphic software to increase its contrast. The easiest probably would be to use Paintbrush and change the image to black-and-white, then save back as jpeg file.

  • HT204380 How can I make a face time call from one country to another( supporsing both parties using iphone 4s). What will be the caller charges. If there is no charges as we use wifi, will there be a charge till connecting the call?

    How can I make a Face Time call from one country to another( supporsing both parties using iphone 4s). What will be the caller charges. If there is no charges as we use wifi, will there be a charge till connecting the call?

    FaceTime is free to use. You will not be charged for using FaceTime.

  • How can i play a movie in keynote from more than 600 seconds between other slides in a automatic loop

    How can i play a movie in keynote from more than 600 seconds between other slides in a automatic loop

    The maximum duration available for an automatic presentation in Keynote is 600 seconds.
    The alternatives are to export a QuickTime video, use other presentation applications, a media server player or digital signage application.

Maybe you are looking for

  • Scroll bars in phpBB forum posts

    I just posted a complaint on a phpBB forum about most posts being framed with scroll bars making it necessary to scroll down and across to read each post. After a bit of a debate it turns out that being the only Mac user and the only Safari user I am

  • What will  the replacement be for the ipod nano 1st gen

    Would like to know if anybody knows what will the replacement be? Also has anybody received it? I'm still waiting for the box will be 3rd week waiting.....thanks for any information

  • Clearing Variant Grouping by 30 days

    Hi All, could any one help me out in clearing variant configuration, I want to select open items which are greater than 30 days old with Main Transaction and Sub Transaction. can we use special characters in grouping rule like > 30? Thanks in Advance

  • Dynamically add Children Link Element

    Hi, I'm trying to dynamically add a children element, a link, but the action binding refuses to work ... I've created a custom jsf component, that does nothing at all. For example, one would use it like: <my:nothing></my:nothing>So my UI class would

  • Price Determination Date

    Hi,   Client is creating PO w.r.t contract which is set as "5-GR date" for Price control and the same has been set in vendor master. There is no price control set in info record "No Update". But when i check PO in EKPO table, system shows price contr