Need help with Audio controller or cue points

Haven't set up the actual project yet. Just trying to
determine best method. Will be using Flash Pro 8.
Goal: create an initial page showing a TOC that represents
chapters in an hour long audio piece. Clicking a topic brings them
to a certain point in the audio. Once leaving the TOC, the user
will see a still PPT jpg associated with that section of audio. But
they'll also need access to an audio controller so they can scrub
to different portions of the audio. Once they let up, the PPT image
needs to change -- if they went to a different section.
So at first I thought about a regular flash set-up with the
audio spanned throughout the timeline, PPT images set-up throughout
the timeline, and frame labels to jump to. But I couldn't figure
out how to set up an audio controller with this set-up.
Then I thought about a Flash Slide Presentation set-up using
a Media Playback component with the Media Controller component and
cue points. I've looked at some of the on-line examples of this and
they seem to work when playing forward but I notice that when you
scrub backwards that the images fall out of synch. It seems if you
have cues A, B and C and if you begin dragging from the C cue and
let up BEFORE the B cue the image displays B. It should be
displaying A though since your somewhere in-between A and B. But A
doesn't show unless you scrub back far enough to cross the A cue
time.
So what is the best method. It seems the latter if there was
only a way to calculate the time between the two cues. For instance
"if time is >A but <B then display A".
But the first example with the long timeline and frame labels
would be fine if there was a nice controller out there that I could
implement.
And remember I need to be able to jump to any spot in the
audio clip from the TOC menu on the first screen.
Thanks!

Is it AVCHD, Mini-DV, or DVD?  What format does the camera record to?

Similar Messages

  • I need help with my event-based cue points with audio

    Im having trouble with my video game project for my action script 3 class at school. Here is what i did, i made a game called Tailgate toss up. I filmed my character and rendered it in Adobe Premiere. I than brought my .mov file into After Effects and I put event-based cue points-
    my first cue point at 0:00:03:13 called "loop"
    my second cue point at 00:00:03:27 called "draw"
    my third cue point at 00:00:05:24 called "bang"
    my fourth cue point at 00:00:13:29 called "dead"
    my fifth cue point at 00:00:14:29 called "You Lose"
    my last cue point at 00:00:19:14 called "End"
    Here is my action script 3 code
    ///first frame:
    start_btn.addEventListener(MouseEvent.CLICK, startGame);
    function startGame(event:MouseEvent){
    gotoAndStop(2);
    SoundMixer.stopAll()
    stop();
    ///second frame:
    stop();
    var loopTime
    var hitHim:Boolean = false;
    var vConnection:NetConnection = new NetConnection();
    vConnection.connect(null);
    var vStream:NetStream = new NetStream(vConnection);
    var client:Object = new Object();
    client.onCuePoint = onCuePoint;
    vStream.client = client;
    var myVideo:Video = new Video(418, 480);
    myVideo.y = 0;  ///this adjusts where the video is, right now it is the size of the canvas which is 418,480
    addChild(myVideo);
    myVideo.attachNetStream(vStream);
    vStream.play("michelle.flv");
    var throw_bottle:Sound
    throw_bottle = new Sound(new URLRequest("audio/throw_bottle.mp3")); //change to button noise, will add sound into ae file
    target_mc.addEventListener(MouseEvent.CLICK, shoot);
    target_mc.buttonMode = true;
    target_mc.visible = false;
    draw_mc.visible = false;
    function onCuePoint(cuePoint:Object):void {
       if(cuePoint.name == "loop"){
    loopTime = cuePoint.time;
        if(cuePoint.name == "draw"){
    var randomLoop:Number = Math.random()*10;
    if(randomLoop > 2){
    vStream.seek(loopTime);
    }else{
    setChildIndex(target_mc, numChildren - 1);  
    setChildIndex(draw_mc, numChildren - 1);    
    target_mc.visible = true;
    draw_mc.visible = true;
    if(cuePoint.time == "5:24"){
    draw_mc.visible = false;
    target_mc.visible = false;
    if(!hitHim){
    vStream.seek(15);    
    if(cuePoint.name == "dead"){
    vStream.close();
    myVideo.clear();
    gotoAndStop(3);
    if(cuePoint.name == "end"){
    gotoAndStop(3);
    function shoot(event:MouseEvent){
    throw_bottle.play();
    hitHim = true;
    ///my third and last frame
    playAgain_btn.addEventListener(MouseEvent.CLICK, playAgain);
    function playAgain(event:MouseEvent){
    gotoAndStop(2);
    SoundMixer.stopAll()
    stop();
    When I have no audio it works perfectly, no problems. When I bring audio in i re-render it as a .mov file and bring it back into After Effects and add the cue points to it. Than i re-render it out again as a flv file. When i bring it into my flash project it will work when the looping variable does just one loop and my target will appear so you can click on it or not. But when the looping variable makes it loop 2 to 10 times it skips over the catching (the part of the clip if you clip the button) and goes directly to the dropping of the can, not giving you the option of clicking the button. So basically it skips the "draw" or second cue point of my game and goes to "You Lose" cue point.
    Any suggestions?

    Hi,
    The latest audio driver for your machine is on the following link.
    http://ftp.hp.com/pub/softpaq/sp59501-60000/sp59649.exe
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Need help with a field to increment points

    There is a business need to add points for some of our accounts. Example is that if an account is a training account, we need to add 5 points. If the same account has a special program tied to it, it gets another 3 points, so on and so forth..
    I need to know what kind of a field I can set up for this to capture the points. It seems the field will need to be a calculated field. However, how can I store the matrix?
    Then, we need to run a report to show points by account.
    I'm really in need of help here .. not sure how to address this business need.
    Thanks,
    Anita

    Hi !
    If you only need a report showing your accounts ordered by points, you'll have to build your report and use the CASE WHEN ... THEN ... ELSE ... END function. If you have for example 3 checkboxes when :
    the 1st brings 3 points
    the 2nd brings 7 points
    the 3rd brings 12 points
    You'll have in your report something like :
    Column 1 : Account Name
    Column 2 : Checkbox1 (CASE WHEN checkbox1 = 'Y' THEN 3 ELSE 0 END)
    Column 3 : Checkbox2 (CASE WHEN checkbox2 = 'Y' THEN 7 ELSE 0 END)
    Column 4 : Checkbox3 (CASE WHEN checkbox3 = 'Y' THEN 12 ELSE 0 END)
    Column 5 : Total (Column 2 + Column 3 + Column 4)
    You can easily do the same with picklist values :
    CASE WHEN pick1 = 'val1' THEN 3
    WHEN pick1 ='val2' THEN 8
    ELSE 0 END
    And if you need to display a score on the account detail page, I'll suggest to create a web applet displaying a report calculating the score the same way than above, but with the AccountId as parameter.
    Hope this will help, feel free to ask more !
    Max

  • Need help with audio...

    Hi,
    I need some help with an audio issue...a deep, buzzing sound which is so dominant, i can barely hear the rest
    the situation:
    older VHS tape (about 10 years) - i know some of you just cringed the video quality isn't the greatest, but not the worst. the audio is terrible.
    transferred with my canopus av300 to my mac (g4 d1.25) - no issues
    using FCP 4.5
    i tried the AUGraphicEQ and since it was so deep, i reduced the following to 0:
    800
    6300
    8000
    reducing anything else doesn't seem to work
    i've also tried cleaning in soundsoap both before using the AUGraphicEQ and after. If i clean it with SSoap before AUGraphicEQ, it sounds far better than the original track, but a low buzz is still present. using the EQ again doesn't seem to do much.
    the camerawork was done on a tripod about 30 yds back. no mikes were used either. just the camera capturing both a/v.
    Any thoughts on anything else to try? Any other filters? I fear the buzz is just with the main sound and no chance of completely killing it.
    I can email someone a small sample file for them to play with if you like.
    i'm really at my wits end b/c i would like to ensure i give the client as best i can (the other option would be to send the tape to a colleague's audio expert, but the price is something my client doesn't want to pay
    Cheers,
    Keebler

    Got SoundTrack Pro? It will perform miracles with getting rid of unwanted sound. It's a matter of isolalating a few frames of the sound where no one is talking, and then using a simple command to remove that sound by itself from the entire audio track.
    There is a possibilty that the Hum remover in FCP 4.5 might help...
    Jerry

  • Need help with audio transfer!

    I'm having problems with audio in idvd. The problem is with clips that were pasted into an imovie project from a different imovie project. The idvd preview seemed fine, but when I burned my disk, the audio associated with the pasted clips was inaudible. The same problem occurred with clips that I had "shared" as a quicktime movie and then imported into idvd. Any help would be GREATLY appreciated. I'm a total amateur!

    Got SoundTrack Pro? It will perform miracles with getting rid of unwanted sound. It's a matter of isolalating a few frames of the sound where no one is talking, and then using a simple command to remove that sound by itself from the entire audio track.
    There is a possibilty that the Hum remover in FCP 4.5 might help...
    Jerry

  • JMF: Need help with audio INPUT DEVICE CONFIGURATION!!

    i am able to establish a connection between 2 PCs in a LAN but cannot get the microphone to send audio to the other PC ... please help me with the code.
    private void initMicrophone()
    // i think the problem is with this line below, where it searches
    // for a device that does LINEAR encoding with the specified
    // SampleRate and SizeinBits in MONO format!!
    AudioFormat format = new AudioFormat("LINEAR", 8000, 8, 1);
    Vector devices = CaptureDeviceManager.getDeviceList(format);
    CaptureDeviceInfo di = null;
    if(devices.size() > 0)
    di = (CaptureDeviceInfo)devices.elementAt(0);
    else
    System.out.println("No devices found");
    System.exit(-1);
    lc = di.getLocator();
    would also provide the code of the full application ...if you can help me regarding that! thanx!
    i think the code of the whole application is running just fine ...the problem is as specified in the code sample provided!! ...if u still think that u need to have a look at my code ...please let me know! ..thanx so much!!

    sorry about posting this message twice!

  • Need help with audio portion of iDVD

    I have added a playlist from iTunes to a slideshow. When I play it on slideshow, all music in the slideshow is played. However, when I export to iDVD and play back the slideshow, only the first song plays. The rest of the slideshow has no music playing once the first song ends. Help! Thank you!

    Hi jMoose and welcome to the forums!
    My bet is that the audio tracks that won't transfer to iDVD are purchased tracks in iTunes rather than from your own CDs?
    If so what you are up against is DRM copy protection. The workaround is to burn a CD in iTunes of those tracks you need, then re-import them from that CD into iTunes and save them as AIFF files.
    Then iDVD will use them with a smile!

  • Need help with audio trimming...

    So I'm working on a new project and was wondering if this was possible in iMovie08.
    I have edited some video clips (not long, and now in my project area), and want to use different songs from my iTunes library instead of the iMovie sound effects. The movie is about 3 minutes long, but I wanted to use 3 different parts of different songs from iTunes to use as background music. I'm having trouble doing this, as it seems like I have to use the entire song throughout the full movie... How can I trim iTunes song and use it in iMovie08? I could'nt even trim the sound effects...
    I also tried Garageband, but I have absolutely no knowledge in using Garageband... I know I'm wrong, but I couldn't even get any iTunes songs to open in Garageband for trimming...
    Any help or advice would be greatly appreciated.

    The movie is about 3 minutes long, but I wanted to use 3 different parts of different songs from iTunes to use as background music. I'm having trouble doing this, as it seems like I have to use the entire song throughout the full movie... How can I trim iTunes song and use it in iMovie08?
    In turn. pin each audio clip to the video clip and not the background. Set its in and pout points for the segment of audio you want and then slide the clip segment in the exact position/location you want it.
    I also tried Garageband, but I have absolutely no knowledge in using Garageband... I know I'm wrong, but I couldn't even get any iTunes songs to open in Garageband for trimming...
    With GarageBand, simply drag and drop each clip to the main window to add each as an individual track. Select the audio track you wish to work on and move the "playhead" to find the "in" or 'out" point you wish to set. When in position, select the "Split" option in the Edit menu to split the selected audio track. Remove the unwanted segments and slide the content you wish to keep to the position/location you want it to play in relation to the video track. Select and repeat this same process for each of your other audio tracks.

  • Need help with audio on button ASAP THANKS!

    Hi,
    Using CS3 I added via properties audio to the "over" part of a gold button.  The audio I added is 4Mb in size which I had imported to the library.  When I selected "over" on the button and then using properties assigned the audio file .... the wave form appeared ... but not under "over" but over, down and hit.  Thus when I publish what is happening is the page loads fine ... the audio begins to play on roll over as wanted ...
    HERES THE GLITCH:  if you accidently roll over again a new audio begins to play out of sync with the first one ... basically you get the row, row row your boat effect where each roll over audio is delayed.
    MY FAILED SOLUTION:  I tried to move the audio file and assign it via properties under hit. Thus have to have someone click on the sound.  Yet the same outcome happend where the wave form appeared not just under hit but it showed on over, down and hit. The same thing happened when I tried assigning to "down".
    MY QUESTIONS:
    Is this caused by the sound file being too big?  I tried a small audio beed and it would assign directly under the part I assigned but not with the bigger 4MB audio file.
    If it is the size of the sound file, can I link the button to an external audio file. If so, what code would I use if I am using Action Script 2.0. I am very new at action script.
    If it is not the size, could some one please tell me how to fix this glitch.  I would be satisfied with the button working on either over or hit.  If you wish to see what the button is doing, you can see it online at www.signaturehill.com.
    THANKS.

    Hi Erika,
    That might just be what I need ... but I am confused as to where do put the action code.  Can you help me with the following questions:
    1. Did you put it inside the button via actionscript or did you select the button just and ad it there ...  or somewhere else? Since I have several buttons doing the same thing on different pages, I am not sure where to put it.
    2. What was the exact code you used  ie  on (release)  {....   StopAllSounds(); }  .... did you even use "release" or some other mouse event.
    Please include the action script code I might try since I am very new to scripting. THANK YOU>

  • Need help with audio edit - how can I censor myself?

    Hello, all. I have a problem that I don't know how to solve.
    Let me say, first and foremost, how much I dislike iMovie '08. I miss '06 so much! It was so straightforward and easy to use. This new (well, now old) version is so blocky and simple that it's completely backwards; I straight-up don't know how to operate it. And I'm a film student! It's so embarrassing.
    Here's the problem. I'm working on editing a vlog for release tomorrow, and I need to "bleep" a bad word I say. I have the censor beep, and I have it anchored over the clip I want to censor, but I can't find a way to actually mute the audio from the video, so that only the bleep plays. At this point, I'm bleeping, but you can still hear the bad word. Completely ineffectual.
    I've tried everything in my extremely limited arsenal to solve this problem, but no dice. Help!

    Drag the mouse to select the video frames that you want to mute. A yellow border should be around them.
    Then, EDIT//SPLIT CLIP (or right-click/Split Clip).
    On this split clip, open the Audio Inspector and set the volume to zero.

  • Need help with audio input device configuration!!

    I am able to establish a connection between 2 PCs in a LAN but cannot get the microphone to send audio to the other PC ... please help me with the code.
    private void initMicrophone()
    // i think the problem is with this line below, where it searches
    // for a device that does LINEAR encoding with the specified
    // SampleRate and SizeinBits in MONO format!!
    AudioFormat format = new AudioFormat("LINEAR", 8000, 8, 1);
    Vector devices = CaptureDeviceManager.getDeviceList(format);
    CaptureDeviceInfo di = null;
    if(devices.size() > 0)
    di = (CaptureDeviceInfo)devices.elementAt(0);
    else
    System.out.println("No devices found");
    System.exit(-1);
    lc = di.getLocator();
    would also provide the code of the full application ...if you can help me regarding that! thanx!

    i think the code of the whole application is running just fine ...the problem is as specified in the code sample provided!! ...if u still think that u need to have a look at my code ...please let me know! ..thanx so much!!

  • I need help with audio in my Premiere Pro edit

    I recently recorded a gameplay with a song track in it. In the beginning of my video, i did a voiceover explaining what the video was going to be about. When im talking, i want to lower the song, then raise the volume when im done talking. How can i do this? If i need to be more specific let me know. Thanks!

    OK, assuming that the gameplay audio with the song is on audio track one and the voiceover is on audio track two.
    All you have to do is to keyframe track one to lower the volume while you are talking and raise it bak to normal when you finish speaking. It is pretty simple.
    Check out some of the Audio related tutorials here:
    http://library.creativecow.net/series/Premiere-Pro-Basics-CS6--above-with-Andrew-Devis

  • Need help with Audio problem

    I just installed iTunes 7.3. Now when I try to run the program, I get an error: "iTunes cannot run because it has detected a problem with your audio configuation." Could someone help please?

    This is usually due to a Quicktime proble, this Apple article should help:
    http://docs.info.apple.com/article.html?artnum=304424

  • Need help with audio wav file in multicam clip

    I created a multicam clip with 3 cameras with crappy, far away, room audio and 1 stereo audio wav file with 2 lavaliere mics of "good Audio" 1 lav left & 1 lav right. on one channel there is a lot of distortion from shirt ruffle etc.... but only at times. I would like to ride the mix and use sections of "good" audio and get rid of sections of "Bad" audio from the one channel. but, I cant figure it out. anyone??? I'm hoping Apple updates this issue soon with great audio support with "simultaneos multicam audio switching!!!" Please, Please Apple...

    You can do what you need right now, no need for Apple to do anything, they've already don it. Check this out.
    http://www.macprovideo.com/hub/final-cut/final-cut-pro-multiclip-audio-channel-e diting-1006

  • DESPERATE!!... I need help with audio!

    Hi! I am starting a website for a business who has requested their website running in TWO days. The website is for a salon, so I have selected two tracks for the website to play. I need them to play through the entire website (continuous play through it) without stopping after every page. This also need to be without a play button. I also need the other one to start when the first one ends. I'm not sure if this is possible, but it will be m butt if not! Thanks!
    Message was edited by: macmaster99

    The xspf player will autostart and autoresume...
    http://www.iwebformusicians.com/MusicPlayers/PlayListPlayer.html
    You can hide it in each page using the method described here....
    http://www.iwebformusicians.com/MusicPlayers/QT.html
    ... by hiding it behind a screenshot of your page background.
    See the bottom of this page for make up a compilation using the freeware Audacity......
    http://www.iwebformusicians.com/AudioFiles/Edit.html
    ..... or any other audio editor that will import your audio file type and export it as MP3..
    Make up the player with no photo and only one track so that you can reduce its size to a minimum.
    If this is as clear as mud, click the Feedback button at the bottom of this page ....
    http://www.iwebformusicians.com/
    ... to contact the idiot that built this site.
    Don't expect a reply to soon as its 1.45 am in California and he's off to bed.

Maybe you are looking for

  • Multiple Row selection in JSP using checkbox - Oracle BPM 10gR3

    Dear BPM Experts, Has anyone invoked JSP from Oracle BPM 10gR3 screen flow that has the following UI requirement. 1. When UI is loaded user is presented with multiple rows of pre-populated data(each column of the row represents attributes of a BPM ob

  • Problem distributing javabean ActiveX component

    I have tried using javareg and using Sun's ActiveX Bridge to register my javabean (called NovaBean) as an ActiveX component for use by a VB project. Both javareg and the bridge work on my machine, but when I try to install the app on someone else's m

  • How do I get Adobe Camera Raw (ACR) support for my new Canon EOS 7D mkii.

    I purchased the new Canon EOS 7D mkii in early November. I tried opening the raw files in both the latest Creative Cloud versions of Photoshop and Lightroom. I found that Adobe Camera Raw, both the current versions and ACR 8.7 beta/release candidate,

  • Problem with max function

    Can anybody help me in using MAX(extents_id) in the following query. What is there is wrong, I know. Does anybody know the correct usage? select max(extent_id) as select seg.owner, seg.segment_type, seg.segment_name from dba_extents ex, dba_segments

  • Help with paste and copy

    My copy and paste is not working on my trail?