How to play a cue point with mixer

I know how to play a cue point of sound with the method:
sound(1).queue([#member: ...  #startTime: ... EndTime: ... ])
How can I transfer the method of cue point using  the mixer?
I need to have any hint about this because I must use both cue
point with playrate, at my begginer level of knowledge I know that:
1) I can't use "playrate" with  "sound(1).play()" method.
With this method I can use cue point;
2) I'm trying to know If I can use cue point with   mixer method.
With this method I can use "playrate" .
It is also for me important to know if it is possible or
impossible to solve this problem in director.
Thanks.

iPhone 3gs, 4 or 4s?
With the former two, just drag the videos to the desktop iTunes and sycnhronize to your iPad. They will be synched to the stock Videos.
With the latter, you can either resize the video to 720p (or less) OR use a third-party app (It's Playing, AVPlayerHD, GoodPlayer being the best choices) to play it back. I'd go with the latter to avoid quality degradation and long-lasting reencodings.

Similar Messages

  • How can I print a file with mixed page orientation in windows 8.1?

    I have a win 7 and a win 8.1 computer.  I have a file which contains both landscape and portrait pages.  The file prints correctly with the mixed orientation from the win 7 pc, but will only print with either landscape or portrait on the win 8.1 pc. 
    I am using Adobe reader XI on the win 7 pc and adobe touch on the win 8.1 pc

    ส่งจาก จดหมายของ Windows
    จาก: Pat Willener
    ส่งเมื่อ: จ. 5 มกราคม 2558 6:15
    ถึง: thang dinhvan
    How can I print a file with mixed page orientation in windows 8.1?
    reply from Pat Willener in Adobe Reader Touch for Windows 8 - View the full discussion 
    I have a win 7 and a win 8.1 computer.  I have a file which contains both landscape and portrait pages.  The file prints correctly with the mixed orientation from the win 7 pc, but will only print with either landscape or portrait on the win 8.1 pc. 
    I am using Adobe reader XI on the win 7 pc and adobe touch on the win 8.1 pc
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7064031#7064031 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7064031#7064031
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Adobe Reader Touch for Windows 8 by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • Play different cue point in a movie

    I need to have an interface that runs several movies with cue points.
    In the interface I need to have many buttons. Movies can be different with different cue points.
    The first button should perform the first part of the movie (cue point from "a" to "b"), the second button must perform the second part of the movie (cue point from "b" to "c") and so on.
    How I must set the script and wich objects is better to use.
    Thanks.

    It seems you're adding the MP3 as a legacy media object, which is strongly discouraged (and impossible as of Acrobat X).
    MP3 files don't support genuine "cue points", but with Acrobat 9+ Rich Media annotations you can easily set a button to play a file from a specified offset time (in seconds) - by choosing a button action of "Multimedia Operation (Acrobat 9 and later)", then "Seek to time", and entering the offset in seconds from the start of the track in the bottom field of the dialog.
    With legacy media it's possible to do a similar thing with JavaScript, by entering a settings:startAt value in the argument object passed to media.openPlayer(), though this is not documented in the latest SDK and can't be used when authoring in Acrobat X, it's explained in the SDK for version 9. For example this starts playback 2.5 seconds in, provided the external player supports that operation:
    var args = { settings: { startAt: 2.5 } };
    app.media.openPlayer(args);
    Remove the existing script on your button and paste in the above code, changing the value as required. This assumes only one media object is present, if your existing code is more complex you will need to edit in the extra settings obbject by hand. With Rich Media, it's all done for you and there's no scripting involved.

  • 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

  • Cue Points with netstream

    I've created a custom object without the FlvPlayback
    component. I used the following code:
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    myVid.attachVideo(ns);
    ns.play("flv/home/intro.flv");
    That flv file has embedded cue points. How do I access them?
    I can access them easily if I were using the FlvPlayback component,
    but I don't think the cue points are getting through the netstream.
    Any ideas?

    use the ns.onCuePoint event handler.

  • How do you add cue points to a MOV file that Director 12 can read?

    I have just downloaded the Trial of Director 12 - and unless I can add cue points to video that it can interpret - I am not going to be able to achieve what I need to.  I've spent the last day and a half looking over the scant documentation provided by Adobe, and anything else I could find online - but the only answers that came anywhere near were for old versions using discontinued xtras.
    Please can anyone help? - I am using Windows 7 64 bit - CS6.
    Thanks in advance. :-)

    Probably too late for your project but...
    You can do this by using 3 sprites in addition to the SWF. In this example, I've named them "videoPlay", "videoRewind, and "videoStop". The SWF in this case was named "video."
    Apply this script to each of the 3 sprites.
    property mySprite
    on beginSprite me
      mySprite = sprite(me.spriteNum)
    end
    on mouseUp me
      case mySprite.name of 
        "videoPlay":
          sprite("video").play()
        "videoStop":
          sprite("video").stop()
        "videoRewind":
          sprite("video").stop()
          sprite("video").rewind()
      end case
    end

  • Cue points with Sound Forge 9.0a?

    Just upgraded from SF 6 to 9 … I haven’t needed
    cue points in a long time but it used to be as simple as saving a
    WAV file with markers in it. With SF 9 I have an option to save
    WAVs with and without meta data. Saving without meta data strips
    out the cue points (logical enough, reading the sound file back
    into SF 9 confirms the markers are gone) … saving with meta
    data creates a file Director 10.1 won’t read (“Having
    trouble reading file, Continue?) Has something changed? I’ve
    searched here and on the web at large and not seen any mention of
    issues between SF 9 and Director. I’ve tried two machines
    with the same result.

    Fixed it, sort of… Apparently by default Sound Forge
    doesn’t name the cue points at all and Director doesn’t
    like this (at least up to MX04, don’t know about 11). To
    create wav files with metadata that Director will read:
    In Sound Forge navigate to Options > Preferences >
    Labels.
    Check the box “label markers”, I also used the
    prefix and leading zero options
    Any new markers will now have labels
    For my present project I already had 83 cue points accurately
    positioned that I didn’t want to remake. In this case I
    renamed each cue point by hand, one at a time. Insanely tedious but
    better than marking the file again.

  • How to play media form InputStream with jmf or dsj?

    the media format is avi or mp4.
    media receive from socket and put in a ring buffer.now implement InputStream to read datas from buffer and play the data.
    i want to know how to play media from inputStream

    Hi, thanks for replying.
    Im not exacly sure what year the imac is i cant seem to find it anywhere.
    I bought the machine last year on apples refurbished site. Someone at Apple support suggested once that it maybe a 2010 model. In system profiler there is a thunderbolt tab in the left hand pane but it says there are no drivers  loaded. Does that mean that thunderbolt is on the mac but i must install the drivers? If so, is it all plug and play after that or do i need to configure it all manually? If so coyuld you please point me in the right direction for instructions on how to do it. My tv for instance is saying that it cant find a server. As for vlc player, i use it all the time.Dont know what ide do without it !

  • Cue points with MP3 files

    Can cue points be added to mp3 files to control the movie? I
    have used them in director, but an unsure if they can be used in
    flash.

    yes.
    myMedia.addCuePoint("name", 10);
    where 10 is the time at which to add the cue point to the MP3
    file.

  • How to play a mp4 movie with DTS audio?

    Hello,
    I try to play a mp4 movie with DTS audio on the z1 player but i dont get any sound...I also have downloaded the app mx player, but this also wont play the dts audio. Any suggestions?
    Thanks,
    Edy

    http://forum.xda-developers.com/showthread.php?t=1831111
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • How to trigger embedded cue points

    Hi all
    I need to trigger embedded cue points. I have navigation cue
    points, and I want the video to pause when it reaches the end of a
    section. I also have an event cue point where I want to import
    graphics. Im new to actionscript and dont know what code to write
    to implement this. Ive looked at many, many websites but to no
    avail, I just dont know where to start. any info or tutorials would
    be very much appreciated as im working against a deadline.
    thanks!

    Hi,
    you would need the ADF Faces context to PPR an area on a screen, the FacesContext doesn't help. Also, PPR is a feature of ADF Faces and not the external context in JSF. I would try to issue PPR through JavaScript using the AdfPage object
    http://download.oracle.com/docs/cd/E15523_01/apirefs.1111/e12046/oracle/adf/view/js/base/AdfPage.html
    What I would try is
    - define an af:serverListener on af:document
    - look the af:document up using JavaScript
    - invoke a managed bean through serverListener
    - have this bean issuing the PPR
    See: http://download.oracle.com/docs/cd/E15523_01/web.1111/b31973/af_event.htm#DAFBJGAH
    Note that you don't need the clientListener since you invoke the server listener from extern (your SVG)
    Frank

  • How do I create cue point in FLV component

    Ok team,
    I have a video clip that needs to have sound with it, I also want to put motion graphics at certain points in the clip using Flash.
    Ok so if I embed the clip into the timeline so that I can use another layer on top to do the graphics I get problems with the sound- I have even tried to have the sound as a separate file and play it using script starting the video and sound at the same time, but it gets out of whack..
    If I import the video externally there is no way I can see what is going on so that I can do the graphics on top....
    I am looking at adding cuepoints to the video to try to trigger my graphics in this way, it says online to go to the property inspector and right click on the cuepoints option, but when I go to the properties inspector it is telling me that this is not supported in AS3? so WTF! I am nearly ready to start punching myself in the head here...  The online Adobe help I am looking at is for Actionscript 3 compnents so something is goig very very wrong
    Please help, is there an easier way to do this?  I am compositing in Premiere pro and adding text but when I export as FLV it is looking fuzzy- and also the text becomes interactive at a later stage so it would be much better if it could happen in Flash.
    PLease please help
    Cheers
    sub

    The topic of audio / video syncing is often mentioned in the Forum. The usual suspect is the audio...." but it gets out of whack".
    That is a fundamental mis-understanding.. it's NOT the audio that gets out of whack... it's the video!
    You can embed video with (streaming type) sound into the main timeline and get very good syncing results provided you understand and build on the fact that the vdeo must match up and sync with the audio, NOT the other way around.
    For your review (from an earlier post):
    Also remember that it's the animation that gets out of sync, not the audio.
    The reason I say that is because the audio MUST play at one and only one frequency... or in other words, the audio will have an exact length of time that it takes to play the sound. If you shorten that time in an attempt to match the animation, that's sort of like pushing the sound together, that increases the frequency and raises the pitch... making it sound like Alvin and the Chipmunks.
    On the other hand, if you streeeeetch out the sound over a longer period of time, decreasing the frequency, you looowweer the pitch.
    So knowing that sound must play back at only one rate (or frequency), you'll need to match the animation to the playback speed (frequency) of the audio, not the other way around.
    While it's often recommeded that you not embed video into the main timeline because of this same audio/video syncing problem ("audio gets out of sync"), I've had no problems with syncing the audio and video as long as I set the Flash doc frame rate to exactly match the original video Frame rate (29.97 frames per sec for mini-DV).
    Here's an example of a video embedded directly into the timeline, yet the audio stays in sync.
    http://www.cidigitalmedia.com/tutorials/vid_sync/vid_sync.html
    Now I realize you may not be using video, but the principle is the same. Match the animation to the audio, not the other way around.
    This may mean that you need to play with the document frame rate to find the sweet spot where the audio and animation stay in sync. Test your .swf with higher and lower frame rates to see the effect. It may take some experimentaion but you should be able to greatly improve the sync.
    So in your case, if the video origianlly had audio with it (as many videos do), the frames per second of the Flash document must match exactly that of the original video or the video will either get ahead of the audio or fall behind the audio. Again, it's the video that is out of sync, NOT the audio.
    Best wishes,
    Adninjastrator

  • How to create an Access Point with Two MI424WR (GigE for Verizon FiOS) Routers?

    I understand that these routers are fairly new and I cannot seem to find hardly any information on them.  I have a fairly large home and I just happen to have two MI424WR's Gig E routers.  One is my main and the other I would like to create into an Access Point.  Has anyone done this with these routers?  I have found plenty of previous information on previous routers similar to these, but I have yet to find any instructions on how to do this with these routers. 
    Please help!
    Mark
    http://www.actiontec.com/products/product.php?pid=214

    How are you going to connect them?  cat5 or coax?
    cat5 instructions:
    Can I use my wireless or an extra router along with the Verizon provided router?
    coax instructions:
    Can I get an ethernet connection in a room with only coax?

  • How to align an anchor point with an object?

    I have a shape I made with the pen tool, and now I want to align one anchor point of the shape with the middle of a rectangle. How can I do this? It doesn't seem like I can do what I do for objects, which is select both objects, click the object I want to align to, and hit align. If I'm not describing this properly let me know and I can try to clarify.

    ...another way...
    1. grab the Rectangle Tool
    2. move your mouse on top of the Anchor you wish to align
    3. draw a rectangle wider than the shape, centered on the Anchor
         - click and drag to draw a rectangle (don't release yet),
         - then press Alt to make it centered on top of the anchor,
         - release the mouse, then the Alt key.
    4. select both your shape and the rectangle
    5. press Ctrl+G to group them
    6. select both, the newly created group and the rectangle
    7. align your shapes
    8. ungroup and delete your temporary rectangle
    9. to align vertically, make your temp rectangle wider and taller than your shape.

  • Assembly Point with mix of time based and discrete components

    Hi all,
    I have a scenario where I want to assemble 2 different components - one of them time based (assy data EXTERNAL_LOT), the other one discrete (assy data INV_SFC).
    Resource system rule "time based resource (genealogy)" is set to true.
    I set up and loaded slot config on resource for the time based component.
    Operation is configured to not allow SFC complete if components are missing (CT520 on PRE_COMPLETE hook)
    When I start SFC at operation and resource in POD the time based component is assembled automatically (according to device history record) However, once I open assembly activity (COMP_LIST_DISPLAY, CT500) to assemble the discrete component both components are displayed as not assembled in component list. If I assemble the discrete component only and then try to complete SFC I receive an error message pointing out that not all components are assembled yet.
    I would have expected that time based component is displayed as already assembled and also CT520 hook does recognize the time based component as already assembled.
    Am I missing any settings?
    Or does such a mixed scenario not work at all?
    We are using ME 6.1.4.2
    Thanks for your help!
    BR Ulrike

    Hi,
    The issue you are seeing with CT520  whereby the hook does not recognize the time based component as already assembled was resolved in a later release.  Please patch to latest version.  Associated release notes will detail which patch fixed it.
    You would need to use assembly point in POD to add the INV_SFC
    Thanks
    Steve

Maybe you are looking for

  • Remote Desktop Connection Problems

    Every time I install updates, I seem to lose my RDC. All was working last week and the computers are set to accept remote connections. On my Windows Server 2012 Essentials, I can log into my remote Web Access, then go to "Computers" and when I click

  • Interaction (widgets) in masterslides

    Hi there, Can anyone tell me if it is possible to use interaction widgets in masterslides?? I'm trying to insert a 'dropdown' interaction into a masterslide. Thanks for your help! Greetz Bart Sijm Netherlands

  • Change fieldcatalog setting in FAGLL03

    Hi experts, I want to add 2 columns  (KOSTL / AUFNR)  in the FAGL_ACCOUNT_ITEMS_GL program. After checking the program, I found the final table and function which is displayed on the output screen. at first, I create new zprogram and new FUNCTION 'ZF

  • Form background

    Hey guys, I created a form in DW and added a background image via the page properties window. I can view it just fine in the design window, however, in preview, the background is missing. Is there an extra step to putting a background behind a form,

  • Why doesn't iBooks appear in iTunes v11.1.3

    I just purchased a new iMac 27" and installed the newest version of iTunes 11.1.3 (8) The top line does not show a listing for Books. I had twenty books on my old MacBook Pro/iTunes/iPhone.  On my new iMac there are just the headings of [ Summary, Ap