WaveStudio 7 won't create seamless loops

Wavestudio (7.2.00) introduces a soundless gap at the ends of my loops, not only while using the application, but it even saves the sample with the ga
I tried Audacity afterwards and the loops are completely seamless both while creating them and after I save.
When I play a perfect loop (saved in Audacity) on Windows Media Player, it loops without any significant glitch, but the same perfect loop played in Creative Media Source (5.26.02) has an annoying lag between the end and begining of the loop.
Also in Wavestudio, the recording path in preferences keeps defaulting to "Microphone". When I choose "What U Hear", I want it to stay that way until I change it.

Hi,
There is a beta version of the WaveStudio (7.4) application. You can download it to see if it hel

Similar Messages

  • Is it possible to make a seamless loop on an embedded video?

    Hello!
    I have an embedded 10-second video (of water ripples, for example) that I would like to loop continuously without displaying an obvious break/jump from the end frame to the first frame.The video itself does not end at the beginning, so it cannot simply be looped. The only way I can think of to simulate a seamless loop it to use the alpha/fade tween somehow, but I have no clue where to begin, or if this is even possible in flash. I just have these two theories:
    THEORY #1:
    If a movie clip can be reversed, then I can append a reversed copy of the clip on the end, which would create an actual seamless loop.
    THEORY#2:
    If I can cut the first 2 seconds of the clip, and paste it over the last 2 seconds of the clip, then fade in on the first one, this would create a virtual seamless loop.
    Of course, I have no idea if these options are possible in Flash (I have CS3).
    Many thanks in advance for any assistance,
    Davide

    Unfortunately, fading out at the end and fading in at the beginning does not create a seamless loop, since there are a few moments when the clip alpha is 0% and everything is completely black.This might be ok for some situations. But for creating a seamless loop, I need to have something, well, more seamless.
    Actually, I think I may have come up with a possible workaround to simulate a true seamless loop of an embedded video (at least get closer to it) by placing a still image (which has been converted into a movie clip) of the first frame on a new layer at the last frame, and then copying that keyframe and pasting it about 25 frames before the end, then alpha fading from the first keyframe to the final frame.
    It is not perfect, but it's something.
    Perhaps someone else might have a better solution?

  • Seamlessly looping FLVPlayback video no longer seamlessly looping

    Hi,
    Back in 2009 I created seamless video loops using the FLVPlayback component and 'addEventListener' (as3)—and they worked great!  looping round and round seamlessly—equally well in browsers as in flash. The videos were of varying lengths, small (all between 50—500K), and they looped perfectly.
    Recently I've gone back to update things and noticed that my video loops are no longer seamlessly looping in any of the web browsers. Now there's a big pause interrupting the seamless flow.
      ??? why?  Has something in the delivery (browsers/flashplayer) changed?  All my video loops still run seamlessly when tested in Flash (CS5).  I spent a good amount of time investigating various angles but could not find any solution.
      Anyhow, here's the actionscript:
      stop();
      import fl.video.*;
      toggleButton.addEventListener(MouseEvent.MOUSE_OVER, rolloverToggle);
      toggleButton.addEventListener(MouseEvent.MOUSE_OUT, rolloutToggle);
      toggleButton.addEventListener(MouseEvent.CLICK, toggleClick);
      toggleButton.buttonState = "off";
          function rolloverToggle(event:MouseEvent):void {
          toggleButton.gotoAndStop(toggleButton.buttonState+" over");
          function rolloutToggle(event:MouseEvent) {
          toggleButton.gotoAndStop(toggleButton.buttonState);
          function toggleClick(event:MouseEvent):void {
              if (toggleButton.buttonState == "on") {
                  toggleButton.buttonState = "off";
             vid_16_monty.pause();
              }else {
                  toggleButton.buttonState = "on";
             vid_16_monty.play();
          vid_16_monty.addEventListener(VideoEvent.COMPLETE, rewind);
          function rewind(event:VideoEvent) {
             vid_16_monty.play();
              toggleButton.gotoAndStop(toggleButton.buttonState+" over");
    the video that goes with the above script can be viewed here:  http://www.designfail.us     cat should be in seamless motion... but it's not.
    Also, not sure it would make much difference, but I'd be happy to attach an fla file—Adobe says it's a good idea but nowhere do they tell you how to attach an fla file... very peculiar, especially in these emphatic UI/UX times we live in.

    I am wondering too, now that you mentioned it
    Here´s my EventHandler-Code:
    unit.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
    private function netStatusHandler(event:NetStatusEvent):void {
        switch (event.info.code) {
            case "NetConnection.Connect.Success":
                break;
            case "NetStream.Play.Start":
                if(!inited) {
                    inited = true;
                    NetStreamWrapper(unit.Stream).path = path;
                    width = video.videoWidth;
                    height = video.videoHeight;
                    log.info(Path+": Size of video: "+video.videoWidth+" "+video.videoHeight);
                    CalculateMemory();
                break;
            case "NetStream.Buffer.Full":
                if (!initializedStream) {
                    log.info(Path+": Pausing and rewinding stream: "+unit.Stream.time);
                    log.info(Path+": Size of video: "+video.videoWidth+" "+video.videoHeight);
                    unit.Stream.pause();
                    //NetStreamWrapper(unit.Stream).initialized = false;
                    initializedStream = true;
                    if(unit.Stream.bytesLoaded == unit.Stream.bytesTotal) {
                        SetCurrentPreparationLevel(CommittedDesiredPreparationLevel);
                break;
            case "NetStream.Seek.Notify":
                break;
            case "NetStream.Play.Stop":
                if(initializedStream) {
                    dispatchEvent(new AssetEvent(END_OF_STREAM, this));
                break;
            case "NetStream.Play.StreamNotFound":
                RaiseError("File for stream not found", event);
                break;
            case "NetStream.Seek.InvalidTime":
                log.warn("Illegal seek(should not happen, but more or less harmless)");
                break;
            case "NetStream.Seek.Complete":
                log.warn("Finished seeking");
                break;
            default:
                if(event.info.level == "error")
                    RaiseError(event.info.code, event);
                break;

  • How to get (old)previous date and create a loop?

    Hi!!!
    I am using java.util.date object.
    I need to get the 2 months back date,i.e. 60 days back date and to create a loop from that date till today and add it to combobox.
    Suppose today's date=3-12-2001
    x=date-60=3-10-2001
    and wants to create a loop from 3-10-2001 till today to display it in a combobox.
    Please tell me how can I do it?

    try the below which will print the date form 60 days before(from today) to todays date
    import java.util.Calendar;
    import java.util.Date;
    public class RandomNumber
         public static void main(String args[])
              RandomNumber rn = new RandomNumber();
              rn.printDate();
         public void printDate()
              Date todayDate = new Date(System.currentTimeMillis());
              Calendar calendar_ = Calendar.getInstance();
              calendar_.setTime(todayDate);
              calendar_.add(Calendar.DAY_OF_YEAR, -60);
              for(int i=0;i<60;i++)
                   System.out.println(calendar_.getTime());
                   calendar_.add(Calendar.DAY_OF_YEAR, 1);

  • FCPX 10.0.7 Won't create alias' to event files

    We recently had a Facilis Terrablock SAN installed along with a CatDV server.
    The problem we're having is that FCPX won't create alias files on the SAN when importing footage and not moving it to the Events folder, so everything comes up as offline.
    We're adding the SAN location properly in FCPX and we can create alias files in finder on the SAN just fine.
    Does anyone have any insight about why this is happening?

    SAN's of any kind - AFAIK - are supported. FCPX can work with media on our Facilis SAN so long as I use the "Copy Media To Final Cut Events Forlder" option on direct import. It actually works quite well in this regard.
    However, this is not how we want to work with our media. Up to this point we've used our own folder structure on local discs prior to importing footage. This works fine as Final Cut creates short cuts to the original media in the Events Folder (kind of a hack way to do this IMO, but whatever, it works). There is know reason I know of that FCPX shouldn't be able to do the same with a SAN location.
    I would appreciate replys from people who've actually worked with FCPX and SAN's. Perhaps I'm asking in the wrong place for that.

  • Referencing Loader after created in loop

    I am creating a loop which loadsimages to newly created loaders.   After each loader completes, I'd like to pass it through another  function
    Here's my loop of loaders where loader_names is an array of my loader names and overlay_files is an array of my file URLs
    for (var j:int = 0; j < loader_names.length; j++) {
    loader_names[j] = new Loader();
    loader_names[j].contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler);
    loader_names[j].load(new URLRequest(overlay_files[j]));
    Once each loader completes, I'd like to create in image that is overlain on a googlemap
    Doing this to an individual loader (test_loader) would look like this
    var new_overlays:GroundOverlays = new GroundOverlay (test_loader,new
    LatLngBounds(new LatLng(46.669, -115.035), new
    LatLng(48.995,-112.079)));           
    How can I structure my completeHandler such that as each loader completes it is passed in the above way.  I need each newly created GroundOverlay to have a unique name
    Here's a function that works if I execute it after I know every loader has completed (i.e. push button)
    function create_overlays(e:Event):void
    for (var k:int = 0; k < loader_names.length; k++) {
    overlay_names[k] = new GroundOverlay(loader_names[k],
    new LatLngBounds(new LatLng(46.669, -115.035), new LatLng(48.995,-112.079)));                                                            
    It seems like if the above function was my complete_handler but in the place of loader_names[k] would be the completed loader.
    Sorry if this is rambly, i am happy to clarify anything..
    thanks in advance,
    j

    I need to have an individual loader for each loaded image.
    I then I'll create groundOverlays from each loader as they finish.
    My complete_handler should look something like
    function complete_handler(e:Event):void{
    overlay_names[k] = new GroundOverlay(loader_completed,
    new LatLngBounds(new LatLng(46.669, -115.035), new LatLng(48.995,-112.079)));                                              
    In this example loader_completed would be whatever loader just completed.  If it happens to be the 3rd loader in the loop, I'd need to name it as
    overlay_names[3]
    Is this clear?

  • Creating new loop sections

    my question is can you create new loop sections to hold the loops because i want to be able to see the entire list of loops at once
    Message was edited by: thatdude38

    Sorry, you can't change the genre and instrument choices.

  • Workgroup Manager won't create home directories; no error message

    This is quite frustrating. For the past 3 years or so I have used the same procedure to add new users to my LDAP directory:
    1) In Workgroup Manager, click the New User button
    2) Assign name and password under the basic tab
    3) Assign group memberships under the Groups tab
    4) Under the Home tab, select the right place (nfs://my.server.org/Volumes/Users), click Create Home Now
    5) Click Save
    Suddenly, when I try to do this yesterday, workgroup manager won't create home directories anymore. I could probably do it manually, but I'm not sure how to get all the right skeleton setup in there. But my main question is, why doesn't this work anymore? Why can't I at least get an error message instead of being silently ignored?
    I share admin duties with other people, so it's possible someone installed an update recently; all I can really say is that I'm running Leopard Server 10.5.8 right now, and can find out whatever else is relevant.
    Any ideas?
    Thanks!
    ~Ben

    Thanks for the pointer to createhomedir - that did indeed do the trick. (How on earth do people find these little nuggets).
    I hesitate to mark this as solved however - it's a functioning workaround, but does nothing to explain why on earth the GUI suddenly stopped functioning.
    But in the (likely) event that that question never gets answered, thanks again for letting me get on with working!

  • Create a loop with Caustics?

    I'm looking to create a looping underwater effect using the Caustics generator, although I am not entirely sure how to do it. I've played around with the timing etc... but I would like to think that there is a better way to accomplish this.

    cut in the middle, flop, overlap, dissolve. That's the only way I can think to do it...
    Patrick

  • When I press Print (to pdf), nothing happens.  what's wrong with my acrobat? I'm an experienced Adobe user. Today I installed the very latest Acrobat on my PC, and it won't create a pdf.  What might be wrong?

    My acrobat won't create a pdf.  Any idea what's gone wrong?

    You need to provide more information, including:
    - Exact nature of the problem, including full error messages
    - Version of Acrobat
    - Version of your OS
    - Other relevant information about how you're trying to create the PDF, such as the original file formats you've tried to convert

  • My computer won't create new folders-only new briefcases

    HP heard-1360t desk top running Win 7 64 bit
    My computer won't create new folders. It creates new briefcases instead.  It does not matter whether I use the New Folder link at the top or Right Click --> New-->New Briefcase .  The New Folder option is not there.
    Does anyone know how to get it back?

    Hi,
    You've posted few times in this forum already. Please check the following link:
       http://h30434.www3.hp.com/t5/Desktop-Operating-Systems-e-g-Windows-8-Software-Recovery/Windows-7-64-...
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • When recording a midi track, why is it automatically creating a loop whenever I stop?

    When recording a midi track, why is it automatically creating a loop whenever I stop?
    I am using Logic Pro 9 on a MacBook Pro and Yosemite 10.10.1

    Hi
    Probably because you have the MIDI Thru parameters set to loop?
    Click in the background of the Arrange window, and in the Region Inspector (MIDI THRU) deselect 'Loop'
    CCT

  • Rotating Animation with a Seamless Loop

    Hey all,
    I'm trying to do something very simple in PS CS6 that's proving to be, well, not so simple (for me at least). All I want to do is animate a layer in a clockwise direction and end up with a seamless looping animated gif. I discovered rotation can't even be animated unless you convert the layer to a smart object, first of all (and by accident. And the "Motion" function doesn't seem to work much at all, where there is a "Rotate" option.). And of course simply copy-pasting the first keyframe in the timeline to the end of the timeline just makes the layter rotate clockwise, then counterclockwise back to it's original position.
    So.. I'm sure this is a simple task for experienced animators in Photoshop, so if someone could fill me in I'd greatly appreciate it.
    Thanks!
    Andy

    Thanks for replying conroy,
    Well, PS only lets you rotate up to 180 or -180 degrees for starters, and also if I do like you suggest with 0* at the start and end, it will just cause the last rotation to turn counterclockwise back to the initial position of the smart object, which is not what I want. I want the smart object to keep rotating clockwise. But thanks anyway for the input, and maybe I've misunderstood in some way.
    In the meantime, I have actually figured out a crude way to achieve the continuous clockwise rotation of the smart object... Simply use the Shift key and rotate in 15* increments, making keyframes along the way until the layer is rotated back to it's initial position. Unless someone else has a better method, it looks like I'll have to live with that.
    Thanks again!

  • IDVD Won't Create Scene Selections

    Hi - I'm just starting to learn iMovie 09 and iDVD 7.0.4. I made an iMovie with chapter markers, tried to create a DVD of it in iDVD and it would not create the chapter markers. So I tried making a "Magic DVD" and lo and behold, it recognized my chapter markers and make scene selections out of them. Perfect. I burned it to a dvd. Then I created another movie in iMovie with chapter markers. I did the same exact thing, but when I created it as an Magic DVD, this time it won't recognize the chapter markers and create scene selections. I am totally stuck.
    Does anyone have any ideas I might try? What could I possibly be doing with the second movie that I did not do with the first?? I just won't create scene selections.
    Thanks

    Hi PainterLady
    And welcome to apple discussions. Drag and drop the plist for iDvd to the trash if you haven't already tried this, fallowed by a complete restart of your mac. See if it helps. The Plist for iDvd is located within your preferences folder and looks like this:
    com.apple.iDvd.plist
    iDvd will create a new factory default set of preferences.
    Once you've done this, then repair permissions from apple's disc utility (Applications > Utilities > Disc Utility).
    Hope this helps but if not just come on back.
    Message was edited by: SDMacuser

  • Trying to create a loop that stores x variables of a class I created

    I created the class Dice. To create a new Dice with 6 sides, I do
    Dice name = new Dice(6); Next, I have the class DiceN which is supposed to create N dices and store them inside an array or ArrayList. The constructor of DiceN´s takes in a number n that the constructor uses to create n dices. This is what I´d like the class DiceN to be like:
    import java.util.*;  // to use ArrayList
    public class DiceN {
      ArrayList dices = new ArrayList(); // holds all the dices the constructor will construct
      public DiceN( int n ) { // the constructor that creates n dices
        for ( int i = 0; i < n; i++ ) {
          Dice x_i = new Dice(6); // if n = 3, the variables x_0, x_1 and x_2 will be created: 3 dices with 6 sides each
          dices.add(x_i); // each time a dice is created it is stored in the arrayList for further usage
    }Obviously, one can´t dynamically create instances of Dice by using the code in the for loop, but how can I create n many dices and store them into the ArrayList, or even better, in an array without knowing beforehand how many dices will be constructed?

    Dice x_i = new Dice(6); // if n = 3, the variables x_0, x_1 and x_2 will be created: 3 dices with 6 sides eachOffcourse instances with names like x_0, x_1 and x_2 are not created here. But Different instances are indeed created, each time having same name x_i ( there is no relation between 'i' in x_i and 'i' in for loop, so x_0, x_1, etc won't be created).
    Here new Dice(6) will each time create new instances, so it serves the purpose as required by you.
    For your better understanding try running below sample code and see value of 'a' is different for each instance because they indeed different instances stored in ArrayList:
    import java.util.ArrayList;
    public class DiceCheck
         public static void main(String[] args)
              DiceN diceN = new DiceN(3);
              diceN.showDices();
    class Dice
         int sides;
         int a=0;
         public Dice(int sides)
         this.sides = sides;
         public int getA()
              return a;
         public void setA(int a)
              this.a = a;
    class DiceN
         ArrayList dices = new ArrayList();
         public DiceN(int n)
              for(int i=0;i<n;i++)
                   Dice x_i = new Dice(6);
                   x_i.setA(i);
                   dices.add(x_i);
         public void showDices()
              for(int i=0;i<dices.size();i++)
                   Dice x_i = (Dice)dices.get(i);
                   System.out.println(x_i.getA());
    }

Maybe you are looking for

  • MBP IR Receiver Not Working

    Howdy, I have a 2009 MacBook Pro running OS X 10.6.8 I am trying to use an Apple Remote with my iTunes. My computer is non responsive to my Apple Remote. I know the Apple Remote works because I have used it on another computer. In my system settings/

  • How to change VO query dynamically

    Hi, Iam trying to change the VO query dynamically. My req. is I have 6 columns in a header page 3 columns(default single column) for sorting purpose and another 3 columns(default single column) for data querying purpose. al these are in one view so I

  • Procedure which returns value

    Well! Simply I want, to write procedure which will insert or updates (is dependent from ID if ID <=0 then there is an insert otherwise updating) the information of the Student, and returns it's ID....... how I can write procedure like this??? is this

  • Asynchronous RFC

    Hi, Im using rfc_abap_install_and_run function module to create abap programs and function modules remotely from non-sap sytem i.e. ( Through JAVA beam). Here, my requirement is that i want to run this function module paralelly i.e. Asynchronous RFc.

  • Printing a Photo List in Lightroom 1.4

    I am using LR 1.4. I am a PC user I want to be able to print a list of my photos that I have in my library and preferably showing the path and file name since I pull in from different directories. Is this possible? If not does anyone know of a progra