HELP!!! Background music not synchronized...

Ask a Question related to Macromedia Director Basics, Design and Development.

  1. #1

    Default HELP!!! Background music not synchronized...

    Hello all! I am having a major problem with the background music in
    playing at the same rate each time I play the movie. I may be doing
    this the wrong way, but I am really figuring this all out as I go
    along, so bare with me... I am using Director MX on a G5 mac. I made
    a slide show that has simple transitions from one photo to the next.
    It will be showing on a 42" flat screen TV in a sales office
    environment from a dvd player. I set my stage size at 1024 x 768.
    Not anything too dramatic. I impoted the photos from Photoshop at
    150dpi. The files range from 1.2mb to 6mb. There are roughly 40
    total. Not much, you would think a program like this could handle it,
    right? Well, I have background music that is supposed to play
    throughout the show and at specific points I have a voice over
    explaining the part you're at (which I haven't had any problems with
    the voice). I used Mac's garageband to edit the music slightly. Just
    had it full volume in the begining, fade a bit and then fade out at
    the end. The problem is that when I play the movie in Director, the
    music fades at different points every time I play it. Sometimes it
    plays exactly where I want it to, other times it stops 10 seconds
    before the movie is over and other times it goes on for an extra few
    seconds and is into the begining of the movie again. Ahhhh! I've
    read on here about using cue points, but I looked in garageband and it
    says nothing about that. I also checked into some lingo but have no
    idea what the right one to use is. PLease HELP!!! Any input will be
    so greatly appreciated. Any thing you think I may be doing wrong,
    please feel free to let me know. I apologize for my novice ignorance
    on the subject, just tryin to get the job done... on a deadline...

    THANK YOU MUCH!
    Jess
    Jessica Guest

  2. Similar Questions and Discussions

    1. Background music (again!)
      Hi all, I know that this topic has been covered, but I am quite a novice when it comes to Lingo. Could someone please explain to me how I can put a...
    2. Background Music
      Is there a way to place background music in Dreamweaver MX without having to use a mp3 embedded flash movie? DoC
    3. Background Music?
      Hi, I've been trying to teach myself flash through several books and have learned to create a separate movie and instance it into a scene so it'll...
    4. MP3's as web site background music?
      Can you help me with my new challenge? My goal is to have background music (a Dean Martin song) running in the background. I've got the song...
    5. Playing background music in webpage
      Please someone, How do I get my music to play/loop in webpages I'm creating in publisher2000. I have followed all instructions and even tried...
  3. #2

    Default Re: HELP!!! Background music not synchronized...

    You didn't give a clue regarding how the director file would get to the
    DVD player, it would seem that export to video must be the first step in
    that process.


    Usually the sync issues come up when your project is tried on other
    systems.

    The most common approach is to have the animation's natural speed make
    it consistantly run a little faster than the music, then add code to
    make it 'stall' at static points in the presentation until the matching
    point in the audio is reached point in the audio track is reached.

    To accouplish the same thing as cue points you can hard code times into
    a different score script for each pause point.



    -- this one waits on te frame until the sound reaches 35 seconds

    on exitFrame
    if sound(1).currentTime < 35000 then go to the frame
    end
    JB Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139