Removing or creating first tempo marker resets movie start

This is an interesting one (or not depending on your point of view):
If I have a session with multiple tempo markers and I remove the first one, whether or not it's at bar 1 or bar 21, it resets the "Movie Start" in Settings:Video...
I haven't figured out if there's a pattern to what it resets to but it's repeatable on this end at least. It does not occur if you remove any other tempo change except the first one. The project time, and all other SMPTE times on all other markers remain correct. Audio locked to a specific SMPTE point stays right where it should. When I re-enter the "Movie Start" all is restored and plays in sync.
I'm in Logic 8.0.2 running the following plugs: Omnisphere, Kontakt Player 2, PLAY, Zebra, Sound Toys, Altiverb, Waves Renaissance Maxx, Lots of EXS, and miscellaneous other NI plugs.
Video is DV format, 29.97, output through a Canopus ADVC-100. But the problem occurred even without the Canopus attached.

Thanks for the confirmation.
I posted the question over at LogicProHelp before but didn't get any response. I know it is a little bit deep to get into it but it relates to two things that are not so esoteric after all:
1) What's the deal with the first Tempo node anyway. I couldn't find any reasonable explanation about it, especially nothing about the fact that it is somehow linked to the bar entry in the Synchronization window.
2) The whole interconnection when working to video "bar-SMPTE-MovieStart-SMPTEoffset-Tempo" is very complex but a lot of Logic user deal with that every day with different levels of understanding. I 'm just surprised that that topic is not discussed more often in detail.
BTW
I can recommend the new tutorial video by Steve Horelick at MacProVideo.com about "Logic's Music -for-Picture Toolbox"
http://www.macprovideo.com/tutorial/logic9203

Similar Messages

  • Top 2 workable way to Create Windows 7 Password Reset Disk in any condition

    This article describes how to create and use a Windows 7 password reset disk for a computer before and after you forgot the password. You can use Windows 7 password reset CD to gain access to your computer.
    Scenario 1: I dont forget the password yet.
    Windows 7 has its own backup feature, and you can proactively create a Windows 7 password reset disk before you forget it. With it, you can easily reset your Windows 7 password and get right into your PC.
    Follow the easy steps below to create a password reset disk to your own Windows 7 account. Heres how:
    Note that this procedure requires one blank, formatted floppy disk.
    1. Click on "Start"->"Control"->"User Accounts and Family Safety"->"User Accounts".
    2. In the task pane, click "Create a password reset disk". The "Forgotten Password Wizard" appears.
    3. Click "Next", and then choose the portable media drive.
    4. Click "Next", and then enter your current password in the next box and click "Next".
    5. Windows 7 begin to create the password reset disk on your chosen media. When the progress bar reaches 100% complete, click "Next" and then click "Finish".
    6. Now you can remove your device and store the disk in a safe place. Once you forget the password in the future, you can take it out.
    Follow the easy steps below to use a password reset disk to recover Windows 7 password. Heres how:
    1. The created password disk can now be used during log-ins to reset the password. A reset password link appears on the account screen after an unsuccessful attempt to log in.
    2. Click on "Rest Password", and the "Password Reset Wizard" dialog opens. Here you need to insert the reset disk to the PC.
    3. Follow the wizard to type a new password twice to make sure you type the correct password. You are suggested to create a new password hint, so that you can remember the password with it if you forget it.
    4. Windows switches to the Windows log-in screen again where you can use the new password to log in.
    Scenario 2: I have already forgotten the password.
    If you have already forgotten your Windows 7 password but dont have a password reset disk at hand, you can choose another way to reset the password.
    Here is how to create Windows 7 password reset CD/USB:
    1. This procedure needs a CD or USB flash drive. Insert your media device into another computer which can access to system as administrator.
    2. Launch Windows 7 password reset disk software. On the main interface, choose "reset Windows local account password".
    3. Choose your target device, and click "Burn" to start Windows 7 password reset disk creation.
    Here is how to reset Windows 7 password:
    1. With this Windows 7 Password Reset USB software, boot the computer that you want to reset the password for.
    2. Under Windows PE, you enter the main interface of this software. Choose your Windows system, and select the user account you need to reset password.
    3. Click "Reset", and then "Yes" & "OK" sequentially to finish removing Windows 7 password.
    Quite easy, isn't it? After fully control system password reset, you will never worry about your bad memory
    +Message was edited: link has been removed+

    well, as to reset Windows 7 password on toshiba laptop, it is a good solution to take a Windows password recovery tool, like Windows Password Unlocker
    +Message was edited: link has been removed+

  • How to remove a meter from an installation after move-out

    Hi,
    Could anyone please tell me how to remove a meter from an installation after move-out and if the installation was blocked before move-out.
    I was trying to remove the meter from an installation which was blocked before move-out. And if i remove the blocking after move-out, it is still giving me this message that the installation is blocked.
    Thanks in advance.
    Mahavir

    Dear Birendra,
    You can NEVER remove a Device (for Billing Related or FULL removal), since you need to save a Removal read while doing the removal. Hence, you can not create a MR ( Reason 01/02/03/06/16/17/21/22), without a Active contract. This is a Basic Metering Rule.
    You will have to do the removal on the same day of the Move out.
    Any additional questions?
    KR,
    AAL!

  • Mark/reset IO exception

    Hi everyone,
    What I'm trying to do here is get an audio file from the jar file as an input stream and convert this to an audioInputStream. Obtaining it from the jar file works fine. The problem is that I get an io exception at the following line:
    audioInputStream = AudioSystem.getAudioInputStream(is);This code all worked fine before when I created an audioInputStream using a File object. Is there any work around that would solve this?
    public void beginAudio()
    jarFile = new JarFile("z.jar");
    soundFile = jarFile.getJarEntry("Multimedia/DMathews.wav");
          if(soundFile!=null)System.err.println("sound file is not NULL here");
          loadAudio(soundFile);
    public void loadAudio(JarEntry entry)
        try
            is = jarFile.getInputStream(entry);
            if(is!=null)System.err.println("is is NOT NULL");
            if (is.markSupported()==false)System.err.println("mark is NOT supported by IS");
            audioInputStream = AudioSystem.getAudioInputStream(is);
            if (audioInputStream.markSupported()==false)
    System.err.println("mark is NOT supported by audioInputStream");
          catch(Exception ex)
            ex.printStackTrace();
          audioFormat =audioInputStream.getFormat();
    }This is the exception:
    is is NOT NULL
    mark is NOT supported by IS
    java.io.IOException: mark/reset not supported
    at java.io.InputStream.reset(InputStream.java:329)
    at java.io.FilterInputStream.reset(FilterInputStream.java:204)
    at java.io.FilterInputStream.reset(FilterInputStream.java:204)
    at com.sun.media.sound.WaveFileReader.getAudioFileFormat(WaveFileReader.
    java:128)
    at com.sun.media.sound.WaveFileReader.getAudioInputStream(WaveFileReader
    .java:237)
    at javax.sound.sampled.AudioSystem.getAudioInputStream(AudioSystem.java:
    680)
    at Multimedia.testSound.loadAudio(testSound.java:413)
    at Multimedia.testSound.beginAudio(testSound.java:214)

    I tried the following code but got the exception below:
    soundFile = jarFile.getJarEntry(audioFiles[lsClips.getSelectedIndex()] );
          is = (InputStream)jarFile.getInputStream(entry);
          if(is!=null)System.err.println("is is NOT NULL");
          ObjectInputStream in = new ObjectInputStream(is);is is NOT NULL
    java.io.StreamCorruptedException: invalid stream header
    Does anyone have any suggestions?

  • Trying to create first iPhone app, use Interface Builder or Xcode first?

    I'm trying to create my first iPhone App, do I start with Interface Builder or Xcode first? And how do I link the two together?

    It's not really that simple -- you'll be working with both. Interface Builder is used to design the GUI (graphical user interface, which consists of the windows and buttons and text fields and so forth, the parts of the application that your user interacts with). Xcode, on the other hand, is used to write the code that tells that GUI what it's supposed to do, and how to do it. So, to answer your question as best I can -- generally, I would imagine you would want to start by creating the basic form of your GUI in Interface Builder and then start coding where appropriate in Xcode, then you'll move back and forth between the two (Xcode and Interface Builder) as needed.
    If you're new to programming and want to start with iPhone apps, I recommend picking up a book on the topic (Apress publishing has a book called "Beginning iPhone 3 Development: Exploring the iPhone SDK" that is a good one, and don't forget to take advantage of Apple's iOS Dev Center, which has lots of good documentation on most any topic that will be helpful in supplementing the information in the book you buy -- click [here|http://developer.apple.com/iphone/index.action] to go there).
    Keep in mind, however, that trying to learn to program iPhone apps will be difficult (to say the least) if you don't already know Objective-C, and the Apress book I recommended above will not be easy to follow without understanding Objective-C first. Objective-C an object-oriented extension of C, and it is the programming language that is used to develop iOS apps (apps for the iPhone, iPod touch, or iPad). I would definitely recommend learning Objective-C on the Mac before jumping in to iPhone development in specific. Apress has another book called "Learn Objective-C on the Mac" that I would recommend for this.
    Furthermore, since Objective-C is an extension of C, you won't have an easy time learning it without a prior understanding of the C programming language. Again, Apress has a book for this, called "Learn C on the Mac."
    Put simply, learning to program for the iPhone is not something that comes overnight -- it's a step-by-step process that takes patience, and you have to be willing to go through these steps if you want to learn to program properly for the iPhone.
    Step 1 -- learn the C programming language
    Step 2 -- learn the Objective-C programming language
    Step 3 -- apply your knowledge to developing for iOS (iPhone's operating system) with the Cocoa Touch framework
    Anyways, that's just my advice -- I definitely recommend taking the time to do it right and not jumping straight into the deep end, but in the end only you know what works best for you. Also, like I said, I definitely think investing in a book on the subject is worth the time and money, so let me know if you want any other recommendations for books beyond the ones listed above.
    Hope this was helpful to you, and best of luck with your journey toward programming for iOS.

  • FYI - 5D Mark II movies on iPad

    Hi all...
    Just thought I'd provide a tip to getting your Canon 5D Mark II movie files (the files as they were recorded straight off the camera) onto your iPad as quickly (and hopefully painlessly) as possible.
    1. Do as normal and offload the files onto your Mac (this may work with PC too, but I'm 100% Mac now, sorry PC!)
    2. Get a recent nightly build of Handbrake (post 0.94 release).
    3. In Handbrake, I created a new setting called iPad, based off of the existing High setting. I changed the resolution to max dimension of 1024 (no point in creating larger than necessary files).
    4. Select the directory where you imported all of your camera movie files by clicking Source.
    5. Handbrake will chug along for a while, scanning that directory, and every movie file in it. It may take a couple of minutes.
    6. Once it's done, you can now queue up each file very quickly by selecting the title from the drop down below the source button. Just make sure your iPad setting is selected in the panel on the right. (it shouldn't change as you select each movie).
    7. Go make a cup of your favorite brew, sit back, and relax - this will take a lot longer than step 5. (I do this processing overnight usually).
    8. When done, import the newly created files into iTunes.
    9. Plug in your iPad, and under the Movies tab, select your movies.
    10. Sync.
    11. Enjoy!
    If for some reason this is a duplicate of another post here, please forgive me and merge this thread with that one (or just disregard this thread). Good luck, and please follow up here with any corrections / refinements!

    Hi all...
    Just thought I'd provide a tip to getting your Canon 5D Mark II movie files (the files as they were recorded straight off the camera) onto your iPad as quickly (and hopefully painlessly) as possible.
    1. Do as normal and offload the files onto your Mac (this may work with PC too, but I'm 100% Mac now, sorry PC!)
    2. Get a recent nightly build of Handbrake (post 0.94 release).
    3. In Handbrake, I created a new setting called iPad, based off of the existing High setting. I changed the resolution to max dimension of 1024 (no point in creating larger than necessary files).
    4. Select the directory where you imported all of your camera movie files by clicking Source.
    5. Handbrake will chug along for a while, scanning that directory, and every movie file in it. It may take a couple of minutes.
    6. Once it's done, you can now queue up each file very quickly by selecting the title from the drop down below the source button. Just make sure your iPad setting is selected in the panel on the right. (it shouldn't change as you select each movie).
    7. Go make a cup of your favorite brew, sit back, and relax - this will take a lot longer than step 5. (I do this processing overnight usually).
    8. When done, import the newly created files into iTunes.
    9. Plug in your iPad, and under the Movies tab, select your movies.
    10. Sync.
    11. Enjoy!
    If for some reason this is a duplicate of another post here, please forgive me and merge this thread with that one (or just disregard this thread). Good luck, and please follow up here with any corrections / refinements!

  • Where is the "Mark for Move" command in Numbers iOS?

    In Numbers for iOS running on a iPad 2. I have a sum total of a column in one table on one sheet and need to create an alias or active copy of it in another table on another sheet. How do I do that? In Numbers '09 you can use the "mark for move." Move the sum total to the new location and then just duplicate it again.

    Ah, Delete key!  That's easier. All these years of going to the contextual menu for 'Clear Contents' in Excel.
    But now I know the Delete key in Excel does the exact same thing as in Numbers.  Thanks.
    SG

  • Just updated to Imovie 11 created first video finalized and its gone!

    Just updated to Imovie 11 created first video finalized and its gone! The only file that remains anywhere on the computer is a .rcproject file that wont open in anything including Imovie. There is no record of the file anywhere in Imovie...Help!!! This was my final for a Music class and Im obviously screwed if I dont get this back...THANKS!

    When you finalize a movie, it places finished movies of all available sizes in the Media Browser. It is important to leave the rcproject file where it is in the Movies/iMovie Projects folder. If you have moved it, move it back.
    In iMovie, when you Share to iTunes, or Share to YouTube, etc. ti will use the Media Browser copy so it does not have to re-render. But if you do not Finalize first, no problem, you can still use all those options and cause a render.
    The Media Browser files are contained in the RCPROJECT package. Right click on the rcproject file in the Movies/iMovie Projects folder for your project. Select SHOW PACKAGE CONTENTS. Like in the Movies folder, and you will see your movies.

  • So, I have just about had it. For nine days now,  I have valiantly tried to move my library to an external drive. At first, I attempted to move it to my 2TB Time capsule, iTunes didn't like its new home though and moved home without telling me.

    So, I have just about had it. For nine days now,  I have valiantly tried to move my library to an external drive. At first, I attempted to move it to my 2TB Time capsule. iTunes didn't like its new home though and moved home without telling me. So then there were two libraries. I meshed them back together reluctantly and iTunes in a silent revolt, absolutely refused to use its own 'Keep Library Organized' criteria and may as well have thrown my music against the wall. Seriously, my 5 year old nephew has his computer files better managed. Then I bought a 3TB Time Capsule and you may ask yourself why??? Well, iTunes doubled in size- although when I ran apps that are designed to find duplicate iTunes files, it deleted the music I actually bought from iTunes. So then I watched as iTunes got it back. How you ask; I run a MacBook Air, iMac and Mac mini in my house - as soon as one powered up it hit the net like a sailor on leave and re-downloaded it all without abandon. I tried to keep the libraries separate, no success there. I tried to keep them unified; iTunes response was to ask me if I wanted to join iTunes Match every time I logged on to my computer and on any computer - my iTunes match song number has been as high as 24,367 and as low as 11,112. And I can't simply refuse iTunes. No one refuses iTunes. Refusal to allow iTunes Match to run through all 24000 songs again was to revoke my rights to the songs that were once part of my library. If I took a long time to decide or was visibly impatient while iTunes did its little 3 hour scan it would arbitrarily decide that music I bought from iTunes was ineligible for iTunes Match. How could that possibly be??? I am missing music, or at least iTunes tells me so by showing me that lovely exclamation point. I have tried backing up my computer to do a full system restore and start all over. Time Capsule claims I have 979 GB of data and takes its sweet time to even back up one gig (about 18 minutes) even though I can transfer files to my Time Capsule at about 1 GB every 40 seconds. I guess though performing back-ups are somewhat like government jobs; it will get done, when it gets done. The back up requirement of 979 GB is surprising though, my Mac claims that I currently occupy just about 25% of my 2TB drive. The discrepancy, who knows, but I think the solution lies somewhere in iTunes. But maybe iPhoto. But that is for another time.

    After admittedly only a quick read the one thing you don't say is how you are trying to make this move.  Most people with moving library issues do it the wrong way.  Plenty of web sites tell you how to do it the wrong way.
    If the iTunes application is started before the drive with the library is fully mounted and awake iTunes will revert back to the internal drive.

  • Not able to create a material document with movement type 103

    I am not able to create a material document with movement type 103,
    The system is populating the value as 101 .
    How do I create a matdoc with movement type 103?

    What is the error you receive? Please specify with message number.
    On MIGO, you need to change the default value mvmt type value to 103 before you enter the PO number to be able to do 103.
    Once this defualt value is set, you can enter the PO and item number in the document number fields and proceed with 103.
    But you cannot change the mvmt type for already entered items from 101-103 or vice versa.
    I think the 101-103 and 103-101 mvmt type conversion message is standard error message

  • HT1577 how do a get a refund on a ridiculously slow downloading rented movie for my apple tv dispite a 5mb/sec down load speed? my first experience with appletv movie rental. no good. rented at 4:30pm. still waiting for standard def movie to finish at 8:1

    how do a get a refund on a ridiculously slow downloading rented movie for my apple tv dispite a >5mb/sec down load speed? my first experience with appletv movie rental. no good. rented at 4:30pm. still waiting for standard def movie to finish at 8:10pm. Not good enough.

    Thanks for the pointers folks. Yeah, 1.5GB is pretty poor isn't it? There are other suppliers, but you have to get a their phone line installed to access the internet so it's an £85 setup fee plus a day off work for a guy to come round and drill a hole in your wall before you even get to the monthly costs.
    Don't get me wrong though - I'm certainly not an Apple basher, but am equally frustrated with both them and the ISP.
    Virgin Media spend all kinds of money advertising their broadband as the fastest in the UK, but don't tell you (up front anyway) that you'll be cut off if you actually try and use it.
    Apple on the other hand carry on with their 'it just works' mantra, but with Apple TV this only applies if you meet certain criteria (again, not mentioned up front).
    I guess it aint a biggie, as i was gifted my Apple TV, and love all the other stuff it does, but from the number of posts on this forum can see that there's a lot of angry customers out there who want explanations as to why they're having similar problems to me.
    Will be very interesting to see if Apple release any kind of software update that turns the flash drive from a buffer to permanent storage, to at least ease some of the pain...
    Message was edited by: McGinty

  • How do I remove a date and time mark on a stored photo so I can put it into a calendar

    How do I remove a date and time mark on a stored photo so I can put it into a calendar.....?

    In Iphoto, yes.  You can use PhotoShop Elements or some other editor.  You can also crop.  (You might be able to make the retouch brush smaller.)

  • How do I create a service mark in Dreamweaver?

    I need to create a service mark in Dreamweaver. I checked the
    knowledgebase and character maps; I could only find copyright, TM,
    and registered trademark.
    If there isn't a keyboard shortcut, how do you create
    superscript in Dreamweaver? I tried the <sup> tag, which is
    used for the aforementioned characters.
    Any suggestions? Tips? Tricks? :^))

    On Thu, 15 Nov 2007 20:38:25 +0000 (UTC), "TravelingAngie"
    <[email protected]> wrote:
    >Not having any luck with <sup> tag; it's just
    adding spaces between the word and the SM text.
    Try it this way:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
    http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    <title>Service Mark Example</title>
    <meta http-equiv="imagetoolbar" content="no">
    <style type="text/css">
    sup {
    font-size: 70%;
    vertical-align: text-top;
    </style>
    </head>
    <body>
    <p>Lorem ipsum dolor sit amet, consectetuer adipiscing
    elit.
    Aliquam erat volutpat. Praesent tempus rutrum wisi. Proin
    dui
    libero, tempor non, mattis nec, imperdiet a, nulla. Nunc
    hendrerit,
    metus eget sodales interdum, ipsum felis lacinia elit, vel
    bibendum
    nunc ligula ac wisi. Donec vitae neque. Nam quis ante ut est
    viverra aliquet. Vestibulum<sup>SM</sup> dui.
    Phasellus ultricies
    elit nec nibh. Sed pede tortor, tincidunt a, vestibulum id,
    posuere
    quis, eros. Vestibulum quam. Nullam augue. Nullam eleifend
    turpis
    a augue. Aenean vestibulum. Quisque et velit eu diam
    consequat
    nonummy. Nullam volutpat enim et pede.</p>
    </body>
    </html>
    Gary

  • How to create a playlist for the movies I have?

    Hope someone can help me here. How do you set the movies to play continuously? I can't seem to create a playlist for the movies. You can create playlist for podcast videos and musics but how do you creat playlist for the 3 movies I have got on my iphone?
    Any help will be greatly appreciated.

    Not exactly true. As absurd as it sounds, if you have just one music track in your playlist, then you can select it from the Playlists section on the iPhone and play your videos, movies etc. one after the other.
    I have created a completely empty music track in Garageband which I drag onto the end of each and every video playlist I create. An ugly solution, but it works.
    You have to remember to check the playlist in both the Video and Music sections in iTunes->Devices->Your iPhone.

  • Creating a function in a movie clip.

    OK - so i have this method (which is in a class, if that
    matters) that receives a MovieClip. I want the method to create a
    function inside this movie clip and link it to the onEnterFrame
    even of the movie clip.
    What kind of syntax can i use for this? I'm familiar with
    creating and deleting events, but not familiar with creating
    functions dynamically.
    Thanks for your help!

    I would imagine you are trying to do something similar to
    what I am doing.
    I would add the onEnterFrame to your class constructor...
    look at my code below...

Maybe you are looking for

  • Short key for copy does not work all the time now.

    After I have installed the latest OSX - Yosemite, my short key for copy does not work all the time.  It is infrequent how it works. I'm using the same keyboard that I have always used, my wireless logitech keyboard for mac.  Please help.

  • Complex Mapping - Reset context

    Hi everybody, I have to transform one scenary RFC to FILE, but I had many problems becouse the contexts level of each structures is very different. In my RFC I have two tables, T_HEADER and T_ITEM like: 1- RFC    1.1- T_HEADER    1.2-T_ITEM and in my

  • Color missing

    Hi All Searched this forum for - getting a Black and White DVD when doing as I always do. movie 2 x 51 min PAL iMovie 5.0.2 iDVD 5.0.1 QT 6.5.2 OS X.3.9 D2GHz Mac 3Gb RAM enough free space - I thought 10 - 20 Gb. iMovie set to PAL, iDVD set to PAL Re

  • F110 - Print Preview

    Hi, How can we see the print preview after completion of F110 without going to Spool Request. Our Technical consultant want to see the print preview, our spool requests are taking lot of time and those requests are appearing after one or two days onl

  • Specifying arguments to Webservice calls

    I have the following code: Sample Code is: <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx=" http://www.adobe.com/2006/mxml" layout="absolute"> <mx:WebService id="wsTest" wsdl=" http://192.168.1.108:8080/stockquotes/stock_quote?wsdl"