Reverse audio plugin question

hello,
does anybody know if there's a plugin that can reverse audio as you play it live in realtime available for LE7? I used to use the Reversinator plugin in Ableton but that's a VST. Also Ableton doesn't allow you to use plugins when it is being used a slave.
I'm aware of the reverse audio function, but this is not what i'm after.
thanks a lot.

I am not sure such a thing could actually exist. I do know some guitar effects pedals have something like it, but essentially, unless it knew everything you were going to play before you played it, how could it reverse it?
I am guessing you mean to only reverse each note instead of the whole phrase.
I think a work-around might be to strip silence between transients, then reverse each one.

Similar Messages

  • DVCPROHD Audio Plugin Failure

    I couldn't find a place where this really fit—it's an audio plugin question, but I don't use the Pro Software—so I put it in the general OSX category; feel free to move it.
    My issue is with the DVC PRO HD Audio plugin (/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin). I am using a simple afplay command to try and add sounds on startup/login, but I note the following error when using the command through terminal:
    afplay[18548:903] Error loading /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: dlopen(/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHD Audio, 262): no suitable image found. Did find:
    /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: no matching architecture in universal wrapper
    2010-08-10 21:08:07.249 afplay[18548:903] Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x10020d3a0 </Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin> (bundle, not loaded)
    For some reason the audio plug in is not loading correctly, and i can't figure out why. To my knowledge I have never messed with the audio plugins on my computer. Kicker: the command worked the first time I used it, but has failed in subsequent uses. Not sure if restart fixes the issue. Any ideas?
    -Kai

    I have this problem happening on a fresh OS X 10.6.5 Install + Logic Studio 9. The console log is filling up with it like crazy. I guess I will remove it from the system for now, but I sure would like to know what it is and what affects the removal of it may have.
    I get the same errors as everyone else, and my plug shows as Universal with a version number of 1.3.2.
    System Preferences[713] Error loading /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: dlopen(/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHD Audio, 262): no suitable image found. Did find:
    /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: no matching architecture in universal wrapper
    System Preferences[713] Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x2000fb200 </Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin> (bundle, not loaded)

  • Third Party VST audio plugins  - stereo, multichannel

    Hello,
    I am developing VST audio plugins. I have the trial version of Adobe Audition CS5 on Mac OSX and as I started to realize this version of Audition doesn't support 64-bit VST plugins, is this correct? or is there something I should do for Audition to scan and load my 64-bit plugin?
    Another question I have is well I just made a 32-bit version of my plugin for Audition to find it and it works fine when its a stereo 2 input 2 output plugin.
    But I have a plugin that is 2 input 4 output and although making it 32-bits Audition will scan and find it, It will always be disabled in the plugin list and I can't find a way to enable the plugin.
    I would like to know if its possible to have a plugin that has more than 2 outputs and what do I have to do to enable it since the standard way won't do it (although the plugin is found). And also what is the deal with 64 bit plugins and Audition CS5.
    Any information would be highly appreciated!
    Thanks you very much.
    Sergio.

    sergexte wrote:
    Hello,
    I am developing VST audio plugins. I have the trial version of Adobe Audition CS5 on Mac OSX and as I started to realize this version of Audition doesn't support 64-bit VST plugins, is this correct? or is there something I should do for Audition to scan and load my 64-bit plugin?
    This release of Audition is 32-bit only and thus only supports 32-bit VST plug-ins.  You may wish to try your 64-bit VST in Premiere Pro as it is a 64-bit app that also supports third-party VSTs
    sergexte wrote:
    I would like to know if its possible to have a plugin that has more than 2 outputs and what do I have to do to enable it since the standard way won't do it (although the plugin is found). And also what is the deal with 64 bit plugins and Audition CS5.
    You can have plug-ins with more than 2 outputs, however, we don't support plug-ins with asymmetrical channel configurations.  There's a lot of details that need to be attended to in order to get that to be bulletproof.   So if you had something that was 6 in and 6 out, that should be possible in this version of Audition.

  • Reverse Proxy Plugin finer tuning

    Hi
    I have successfully setup the Web Reverse Proxy Plugin to remap the Messging Express part of uwc on the the same port.
    With (obj.conf):
    NameTrans fn="assign-name" from="/uwc(|/*)" name="uwc"
    NameTrans fn="assign-name" from="/*" name="messengerXpress"
    and:
    <object name="uwc">
    ObjectType fn="check-passthrough" type="magnus-internal/passthrough"
    </object>
    <object name="messengerXpress">
    Service fn="service-passthrough" servers="https://www.domain.com:8443"
    </object>
    It works well: when users ask for www.domain.com/uwc it just gets the normal uwc pages and when users asks anything else, it gets redirected to the webmail port of Messing Express.
    The little problem is with user that only type the first part of the url to find the login page, asking the doc root of the web server because they forget, i.e:
    https://www.domain.com
    their request gets remapped to the webmail LOGIN of Messaging Express instead:
    https://www.domain.com:8443
    They do not distinguish they are not on the Communication Express login page and the login is successful. They are now in the Messaing Express only application and do not understand why it looks so different and where is the Calendar.
    My question is how to change obj.conf rules to not come to the login page of the Messing Express when the base doc root is asked for, like: https://www.domain.com, and when the above changes in the obj.conf are made.
    I tried to put a redirect in the index.html, to go to the /uwc URI, but then this makes an infinite loop when accessing /
    I also would like to redirect non ssl http url to https ones.
    I found redirect/rewrite rules in obj.conf hard to understand and the doc does say too much. I would love to find more through example on this particular subject.
    Best regards
    Fran�ois

    Alas, I'm totally ignorant when it comes to working with a web server ...
    maybe one of our other folk will know, and be able to help.

  • Imovie wont open because of razer audio plugin

    Since the newest imovie updated I cannot open it. I Get an error that says quite unexpectedly because of the Razer Audio plugin. The only Razer software I have is for my mouse. As far as im aware it has nothing to do with Audio, and I movie worked fine with it before the update. Any fix ideas other than uninstalling my mouse?

    /Library/Audio/Plug-Ins/HAL/RazerAudio.plugin/Contents/MacOS/RazerAudio
    Remove the plug-in.

  • How can I get the rest of my third party audio plugins (UAD & Altiverb) to show up in FCPX

    Hello Everyone,
    In FCPX'as audio effects I can see the Logic (included with FCPX) plugins, as well as my own Celemony (Melodyne) & PSP Audioware plugins. However, my UAD plugins and Altiverb are not there. How do I get FCPX to see my other audio plugins that are also currently on my machine?
    Any help appreciated, thank you.
    ~Shea A.J. Comfort

    err = -50 when downloading from store - https://discussions.apple.com/thread/3697501 - delete incomplete downloads from downloads folder as per http://support.apple.com/kb/TS3297
    iTunes Store: "Error (-50)" when downloading purchased content - http://support.apple.com/kb/TS1583

  • Premiere CC hangs on startup ' scanning audio plugins'

    Having trouble with Premiere CC on a Mac. Installed and re-installed several times, deleting everything I could find.
    Everything installed fine - but when I startup Premiere, it hangs on the 'scanning audio plugins'
    Does anyone have the same experience and if so, is there a simple solution?
    Thank you.

    Hi,
    Please move all Items from the below mention folder location and empty the Folder
    Main Hard drive->Library->Application Support->Adobe->Common->Plugin->7.0->Media Core
    Once the Media Core folder is Empty then try to launch .
    Also empty the Quick time folder from the below mention location
    Main Hard drive->Library->Quick time
    Move all components from the Quick time folder and empty the folder and then try to launch , it might fix the problem for you as it seems some plugins are causing the issue.
    regards
    Karandeep singh

  • Third party Audio plugins don't work here

    I'm wondering if someone is able to use third party Audio plugins (like Waves, Sonnox, Sonalksis, etc.) in FCPX. I can't. I have them for Logic and I can see them in FCPX, but if I try to use them I encounter various issues (settings not saved, FCPX crashes, and so on...).
    Only Logic plugs work fine

    There are NUMEROUS of issues with third pty AU's in FCPx. I have reported many of them. Settings not getting stored, crashes etc etc etc...
    Plugs that work perfectly in Logic Pro....
    AU integration in FCPx is highly erratic. Unfortunately.
    You also wanna be VERY careful when using .CAF files in FCPx which have more than two channels of audio. Distortion etc... are bound to happen unless you take appropriate measures and disable channels not pertaining to stereo.

  • Audio Plugin for iTunes????

    Since Volume Logic doesn't work anymore, and they don't seem to be in a hurry to fix it, does anybody know of any other good audio plugins for iTunes on Windows, please.
    Help much appreciated

    Perhaps SRS iWOW would be worth looking at.
    Thanks so much for the help! I trialed the software and bought it after the third song! I'm very happy with it so far. Thanks again for the suggestion!

  • Missing Audio Plugins

    Just completed first project since updating to 10.0.8 - which was not without it's problems, invovling much deleting of preferences to cure the "restoring windows" hang... Anyway - made a compound clip of the final for export and went to grab an audio limiter to push the levels up a little only to find I had no audio plugins anymore - or so I thought. After much frustration and back and forth with safe boots and more preference deleting I discovered that I did in fact still have all my audio plugins - BUT - all of the catagories that used to display them on the left hand side of the effects browser are now missing; INCLUDING the main catagory labelled "AUDIO" - so it looks like there are no audio plugins available at all.. but actually, if you select "ALL" from the VIDEO list and then scroll down past the video plugins you get the the audio plugins... :-O
    So I'm posting here for 2 reasons - firstly in case anyone else experiences the sense of panic I did when I thought I was going to have to export the audio to process outside and re-import (hours before delivery) and secondly because I would love to know "Where have all the audio catagories gone?"
    I have Waves Mecury, UAD and many, many other plugins installed (594 in total) - so working my way quickly through the list to find what I want is now a complete pain.
    Anyone have any ideas? Or is that just "progress'...?

    I have Waves Mecury, UAD and many, many other plugins installed (594 in total) - so working my way quickly through the list to find what I want is now a complete pain.
    Anyone have any ideas? Or is that just "progress'...?
    No, this must merely a glitch that may probably be fixed by one of the standard troubleshooting techniques:
    1) trash preferences (which you probably tried already)
    2) revert to original layout
    3) delete the layouts folder inside ~/Library/Application Support/Final Cut Pro

  • Fcp wont load cause of audio plugins

    Hi. I work on Fcp studio and Logic pro. I have a lot of audio plugins for Logic espescially waves. But now fcp wont load cause it crashes when it gets to a certain plugin. I don't want to use audio plugins in fcp as I do my audio in logic.
    Why has fcp seen my logic plugins and how can I stop this, I can't run fcp. I've tried dragging the components folder out but no luck. There must be a resolution to this, it's driving me nuts.
    Many thanks
    Antony.

    I've had the same problem.
    FCS maintenance pack is not really an option - it disables the plugins globally, so Logic wont load them. It's also expensive (for what it does) - $169.
    The easiest workaround I found is to shift the plugins (located in the /Library/Audio/Plug-Ins/Components/ folder) to - for example - another folder (not called 'components') on the desktop, before launching FCP. Then you can move them back before launching Logic. A pain, yes, but until Apple fixes their problem...waiting.
    None of the plugins in this folder are core to FCP (if you're like me they'll be all Logic plugins), so there are no consequences to FCP. You could probably keep some in the folder, as I think the problem has got to do with the number of plugins (a different plugin crashes FCP every time for me).
    Cheers,
    Dan

  • Audio plugin manager

    After some experimentation, I've found that CS6 Audio Plugin Manager doesn't remove old listings for plugins in the UI, and there's no way to remove them.  (I can choose not to enable them, but they still appear in the list.  So I now have, for example, three instances of a Lexicon plugin, only one of which is functional.)  Is there a way I haven't found to get rid of the ones that no longer need to be there? 

    If you choose the option to "Scan for plug-ins" making sure the "Rescan existing plug-ins" box is ticked, do you not "lose" all those extras listed?
    I've not needed to do this recently but I'm sure that's the method I used some weeks ago to remove from the listing some items that were no longer present.
    Jeff

  • Don't wanna load audio plugin in FCP

    I don't wanna load audio plugin in FCP 5 (audio plugin from Protools and Logic that sharing plugin)
    Who know how to unload that third party audio plugin ?
    Thank you for every answer.

    Version is FCP-X 10.1 with OSX 10.7.2
    I use the Ctl-Shift-S to detach the audio from the video, then I can create a single audio-only storyline for the whole project (grouping and using Cmd-G) and add transitions etc to it. It is sometimes difficult to get it to work because the usual "snap" function which works well for video doesn't always work accurately enough for audio (much shorter "frames") so you sometimes get a few samples overlap, a few samples gap between clips or a few samples of a spurious audio clip between clips which are invisible except at sample zoom - and the transition complains of "not enough media". I have had to learn various tricks to get this sorted out!
    However, before I go any further - I have found the problem. If I replace the clips in the audio storyline from the original media then the transition works properly. It's something to do with what I was doing to the clips before I broke them apart.
    Before I learnt this "separate audio storyline" procedure I was detaching every other audio clip, creating overlaps and using the fade handles. The projects where I used this technique originally, then converted to the "audio-only" storyline are the ones having the trouble. If I start from the raw audio/video storyline, detach the audio and make the separate "audio-only" storyline directly then the transitions work perfectly as they should. If I have previously fiddled with the fade handles, overlaps etc then some of the transitions don't work in the new storyline!

  • Reverse proxy plugin vs load balancer plugin

    Hi,
    May i know what is the differents between reverse proxy plugin(passthrough) and load balancer plugin?
    Regards
    haw_9368

    The Load Balancer plugin was designed specifcally to allow the Web Server to be a HTTP end-point for Sun Application Server. It is an ancestor of the Reverse Proxy Plugin (generally this version was changed to be tolerant of HTTP from any origin server, and performance improvements, etc). This plugin further evolved and was integrated into Web Server 7.0.

  • Reverse proxy plugin with SSL

    Hi,
    I'm trying to set up reverse proxy plugin that forwards requests from plain HTTP port on web server to SSL port on origin-server (sun web console)
    I have followed instructions from [http://blogs.sun.com/meena/entry/configuring_reverse_proxy_in_web] to achieve this:
    wadm create-reverse-proxy --user=admin --password-file=/.ws7pass --config=test --vs=test --uri-prefix=/console/ --server=https://webconsole:6789And part of my obj.conf related to reverse-proxy:
    NameTrans fn="map" from="/console/" to="https:/" name="reverse-proxy-/console"
    <Object ppath="https:*">
        Service fn="proxy-retrieve" method="*"
    </Object>
    <Object name="reverse-proxy-/console">
        Route fn="set-origin-server" server="https://webconsole:6789/"
    </Object>When one tries to access http://test/console/ following messages appear in the log file:
    fine    (27868): for host x.x.x.x trying to GET https:/, service-http reports: attempting to contact webconsole:6789
    fine    (27868): for host x.x.x.x trying to GET https:/, attempting to resolve webconsole
    fine    (27868): for host x.x.x.x trying to GET https:/, attempting to connect to 192.168.1.80:6789
    fine    (27868): for host x.x.x.x trying to GET https:/, connected to 192.168.1.80:6789
    failure (27868): for host x.x.x.x trying to GET https:/, service-http reports: HTTP7765: error reading response header (Server closed connection)
    finest  (27868): for host x.x.x.x trying to GET https:/, func_exec reports: executing fn="set-origin-server" server="https://webconsole:6789/" Directive="Route" magnus-internal=""
    fine    (27868): for host x.x.x.x trying to GET https:/, set-origin-server reports: using server https://webconsole:6789
    finest  (27868): for host x.x.x.x trying to GET https:/, func_exec reports: fn="set-origin-server" server="https://webconsole:6789/" Directive="Route" magnus-internal="" returned 0 (REQ_PROCEED)
    finest  (27868): for host x.x.x.x trying to GET https:/, func_exec reports: fn="proxy-retrieve" method="*" Directive="Service" returned -1 (REQ_ABORTED)Any ideas?

    Oh, sorry, when I'm accessing console through reverse proxy, nothing is written to the web console log initially, and these messages appear in the web server log (now loglevel=info):
    [15/May/2008:15:52:41] failure (23204): for host x.x.x.x trying to GET https:/, service-http reports: HTTP7765: error reading response header (Server closed connection)
    [15/May/2008:15:52:41] info    (23204): for host x.x.x.x trying to GET https:/, set-origin-server reports: HTTP7751: server https://webconsole:6789 offline
    [15/May/2008:15:52:41] failure (23204): for host x.x.x.x trying to GET https:/, service-http reports: HTTP7765: error reading response header (Server closed connection)
    [15/May/2008:15:52:41] failure (23204): for host x.x.x.x trying to GET https:/, service-http reports: HTTP7765: error reading response header (Server closed connection)After some time this message is written to webserver log:
    [15/May/2008:15:53:02] info (23204): trying to OPTIONS https://webconsole:6789, check-http-server reports: HTTP7750: server https://webconsole:6789 onlineAnd simultaneously this message is written to webconsole log:
    CoreSessionManagerFilter:doFilter | Request: https-mfwk-zone-6789: /

Maybe you are looking for