Stand alone VGA to AirPlay encoder?

Does anyone know of a stand alone device that can take a VGA input (or HDMI, DVI, etc)  and then output (preferably to Ethernet) AirPlay?
I'm looking for something where a computer is not required - a stand alone box.  Appliance if you will.
I can always hack up a Mac Mini and a third party video input box, but I'm hoping there is something less pricy and less complicated already out there!

>>airplay is a format which connect to a device and push a video stream to it
Yup...
>>airplay is a peer to peer system and not a broadcast system
That's an interesting point.  I thought I saw someone using multiple devices with an AirPlay connection, but I may be confusing it with software like AirSharing.  Hmm...  a new point to ponder - thanks!

Similar Messages

  • Looking for Stand Alone FMS Encoder

    I need an Flash Encoder that is able to handle server side
    code handling file uploads, is able to convert on the fly to FLV
    and is able to create thumbnails of key frames. I have tried
    FFMPEG, but it only encodes some codecs and crashes on others. I
    need a program that is capable of encoding all codecs, without
    crashing. I also need a server side, cgi, or command line
    interface.
    Any suggestions?

    Sherkaner wrote:
    > Can anyone tell me where I can download the stand-alone
    Flash 9 player for
    > Windows?
    >
    > The only version I can find in the downloads area is the
    browser plugin.
    >
    > I want the standalone player so that I can see the
    console output. I'm just
    > starting in AS3 programming so I need to see the error
    messages.
    >
    There is no download of the standalone. The only publicly
    distributed version
    is the browser plugin/player.
    Download the authoring tool, Flash CS3 and you will get the
    standalone with it.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Calling a web service through SSL via a stand alone java class

    HI,
    I am trying to call a web service through SSL via a simple stand alone java client.
    I have imported the SSL certificate in my keystore by using the keytool -import command.
    Basically I want to add a user to a group on the server. Say I add a user user 1 to group group 1 using an admin userid and password. All these values are set in an xml file which I send to the server while calling the server. I pass the web service URL, the soap action name and the xml to post as the command line arguments to the java client.
    My xml file(Add.xml) that is posted looks like :
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope
    xmlns:xsi = "http://www.w3.org/1999/XMLSchema-instance"
    xmlns:SOAP-ENC = "http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:SOAP-ENV = "http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd = "http://www.w3.org/1999/XMLSchema"
    SOAP-ENV:encodingStyle = "http://schemas.xmlsoap.org/soap/encoding/">
    <SOAP-ENV:Body>
    <namesp1:modifyGroupOperation xmlns:namesp1 = "/services/modifyGroup/modifyGroupOp">
    <auth>
    <user>adminUser</user>
    <password>adminPassword</password>
    </auth>
    <operationType>ADD</operationType>
    <groupName>group1</groupName>
    <users>
    <userName>user1</userName>
    </users>
    </namesp1:modifyGroupOperation>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    I call the client as:
    java PostXML https://com.webservice.com/services/modifyGroup "/services/modifyGroup/modifyGroupOp" Add.xml
    I my client, I have set the following:
    System.setProperty("javax.net.ssl.keyStore", "C:\\Program Files\\Java\\jre1.5.0_12\\lib\\security\\cacerts");
    System.setProperty("javax.net.ssl.keyStorePassword", "password");
    System.setProperty("javax.net.ssl.trustStore", "C:\\Program Files\\Java\\jre1.5.0_12\\lib\\security\\cacerts");
    System.setProperty("javax.net.ssl.trustStorePassword", "password");
    But when I try to execute the java client, I get the following error:
    setting up default SSLSocketFactory
    use default SunJSSE impl class: com.sun.net.ssl.internal.ssl.SSLSocketFactoryImpl
    class com.sun.net.ssl.internal.ssl.SSLSocketFactoryImpl is loaded
    keyStore is : C:\Program Files\Java\jre1.5.0_12\lib\security\cacerts
    keyStore type is : jks
    keyStore provider is :
    init keystore
    init keymanager of type SunX509
    trustStore is: C:\Program Files\Java\jre1.5.0_12\lib\security\cacerts
    trustStore type is : jks
    trustStore provider is :
    init truststore
    adding as trusted cert:
    init context
    trigger seeding of SecureRandom
    done seeding SecureRandom
    instantiated an instance of class com.sun.net.ssl.internal.ssl.SSLSocketFactoryImpl
    main, setSoTimeout(0) called
    main, setSoTimeout(0) called
    %% No cached client session
    *** ClientHello, TLSv1
    RandomCookie: GMT: .....
    Compression Methods: { 0 }
    [write] MD5 and SHA1 hashes: len = 73
    main, WRITE: TLSv1 Handshake, length = 73
    [write] MD5 and SHA1 hashes: len = 98
    main, WRITE: SSLv2 client hello message, length = 98
    [Raw write]: length = 100
    [Raw read]: length = 5
    [Raw read]: length = 58
    main, READ: TLSv1 Handshake, length = 58
    *** ServerHello, TLSv1
    %% Created: [Session-1, SSL_RSA_WITH_RC4_128_MD5]
    ** SSL_RSA_WITH_RC4_128_MD5
    [read] MD5 and SHA1 hashes: len = 58
    [Raw read]: length = 5
    [Raw read]: length = 5530
    main, READ: TLSv1 Handshake, length = 5530
    *** Certificate chain
    chain [0] = ...
    chain [1] = ...
    chain [2] = ...
    chain [3] = ...
    main, SEND TLSv1 ALERT: fatal, description = certificate_unknown
    main, WRITE: TLSv1 Alert, length = 2
    [Raw write]: length = 7
    0000: 15 03 01 00 02 02 2E .......
    main, called closeSocket()
    main, handling exception: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    main, called close()
    main, called closeInternal(true)
    main, called close()
    main, called closeInternal(true)
    main, called close()
    main, called closeInternal(true)
    Exception in thread "main" javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.c
    ertpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(Unknown Source)
    at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Unknown Source)
    at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Unknown Source)
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(Unknown Source)
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(Unknown Source)
    at com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Unknown Source)
    at com.sun.net.ssl.internal.ssl.Handshaker.process_record(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecord(Unknown Source)
    at com.sun.net.ssl.internal.ssl.AppOutputStream.write(Unknown Source)
    at java.io.BufferedOutputStream.flushBuffer(Unknown Source)
    at java.io.BufferedOutputStream.flush(Unknown Source)
    at org.apache.commons.httpclient.methods.EntityEnclosingMethod.writeRequestBody(EntityEnclosingMethod.java:506)
    at org.apache.commons.httpclient.HttpMethodBase.writeRequest(HttpMethodBase.java:2110)
    at org.apache.commons.httpclient.HttpMethodBase.execute(HttpMethodBase.java:1088)
    at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:398)
    at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171)
    at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397)
    at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:323)
    at PostXML.main(PostXML.java:111)
    Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find v
    alid certification path to requested target
    at sun.security.validator.PKIXValidator.doBuild(Unknown Source)
    at sun.security.validator.PKIXValidator.engineValidate(Unknown Source)
    at sun.security.validator.Validator.validate(Unknown Source)
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(Unknown Source)
    at com.sun.net.ssl.internal.ssl.JsseX509TrustManager.checkServerTrusted(Unknown Source)
    ... 18 more
    Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(Unknown Source)
    at java.security.cert.CertPathBuilder.build(Unknown Source)
    ... 23 more
    I do not know where I have gone wrong. Could someone point out my mistake.
    Thanks In advance!

    Hi jazz123,
    There's an example in the [*Java Web Services Tutorial*|http://java.sun.com/webservices/docs/2.0/tutorial/doc/] : see Chapter 1: Building Web Services with JAX-WS - A Simple JAX-WS Client.

  • Problem while calling a Webservice from a Stand alone java program

    Hello Everyone,
    I am using a java program to call a webservice as follows. For this I have generated the client proxy definition for Stand alone proxy using NWDS.
    Now when I call the method of the webservice I am getting the correct result but along with the result I am getting one error and one warning message in the output.
    The java code to call the webservice is as follows.
    public class ZMATRDESCProxyClient {
         public static void main(String[] args) throws Exception {
              Z_MATRDESC_WSDService ws = new Z_MATRDESC_WSDServiceImpl();
              Z_MATRDESC_WSD port = (Z_MATRDESC_WSD)ws.getLogicalPort("Z_MATRDESC_WSDSoapBinding",Z_MATRDESC_WSD.class);
              String res = port.zXiTestGetMatrDesc("ABCD134");
              System.out.print(res);
    The result I am getting is :
    Warning ! Protocol Implementation [com.sap.engine.services.webservices.jaxrpc.wsdl2java.features.builtin.MessageIdProtocol] could not be loaded (NoClassDefFoundError) !
    Error Message is :com/sap/guid/GUIDGeneratorFactory
    <b>Material Not Found</b> -
    > This is the output of webservice method and it is right.
    Can any one please let me know why I am getting the warning and error message and how can I fix this.
    Thanks
    Abinash

    Hi Abinash,
    I have the same problem. Have you solve that problem?
    I am using a java program to call a webservice too. And I have generated the client proxy definition for Stand alone proxy using NWDS. When I call the method of the webservice I am getting the correct result but along with the result I am getting one error and one warning message in the output.
    The java code to call the webservice is as follows.
    MIDadosPessoaisSyncService service = new MIDadosPessoaisSyncServiceImpl();
    MIDadosPessoaisSync port = service.getLogicalPort("MIDadosPessoaisSyncPort");
    port._setProperty("javax.xml.rpc.security.auth.username","xpto");
    port._setProperty("javax.xml.rpc.security.auth.password","xpto");
    String out = port.MIDadosPessoaisSync("xpto", "xpto");
    System.out.println(out);
    The result I am getting is :
    Warning ! Protocol Implementation [com.sap.engine.services.webservices.jaxrpc.wsdl2java.features.builtin.MessageIdProtocol] could not be loaded (NoClassDefFoundError) !
    Error Message is :com/sap/guid/GUIDGeneratorFactory
    <b>The result of the WS is correct!!!</b>
    The Java project does not have any warning. But the stand alone proxy project has following warnings associated with it.
    This method has a constructor name     MIDadosPessoaisSync.java     
    The import javax.xml.rpc.holders is never used     MIDadosPessoaisSyncBindingStub.java     
    The import javax.xml.rpc.encoding is never used     MIDadosPessoaisSyncBindingStub.java     
    The constructor BaseRuntimeException(ResourceAccessor, String, Throwable) is deprecated     MIDadosPessoaisSyncBindingStub.java
    It is very similar with your problem, could you help me?
    Thanks
    Gustavo Freitas

  • Security in stand-alone persistence

    hi,
    i've got stand alone persistance in my java project, so im using PU with query language, last time i was snffing my ethernal interface, and noticed that queries are like a simple text, if there is any easy way to secure this informations? can persistence manager use JSSE? do you have some suggestions about any solutions? in my point i dont want to do lots of code modifications instead of saying PU to use some secure connection...
    thanks for advice

    :) PU is my persistence unit (in this case toplink), im using PostgreSQL so there is SSL but how to say PU to use some SSL connection, normaly im using something like that:
    EntityManagerFactory emf = Persistence.createEntityManagerFactory("MyPU");
    javax.persistence.EntityManager em = emf.createEntityManager();and now
    em.getTransaction().begin();
    em.createQuery("Select p FROM Person p").getResultList()and my persistence
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
      <persistence-unit name="MyPU" transaction-type="RESOURCE_LOCAL">
        <provider>oracle.toplink.essentials.PersistenceProvider</provider>
        <class>tab.Person</class>
        <properties>
          <property name="toplink.jdbc.user" value="user"/>
          <property name="toplink.jdbc.password" value="password"/>
          <property name="toplink.jdbc.url" value="url"/>
          <property name="toplink.jdbc.driver" value="org.postgresql.Driver"/>
        </properties>
      </persistence-unit>
    </persistence>

  • Stand-alone flash player

    Ok... I went to adobe.com and click to download the latest
    version of flash player(9). I published a flash file published
    under flash player 8 settings and used the new On2 VP6 to encode
    some video. I export a .swf and an HTML file.
    When i open the HTML file the movie plays fine. When i try an
    just dbl click the.swf to open it on my computer without HTML it
    doesn't play, and my stand alone flash player says version 7 at the
    top of it. Is there a seprate update for the stand-alone player? If
    so, where can i find it?
    Thanks,
    Jeremy

    Maybe you can't, since Flash 9 isn't due for release until
    some time in 2007. Flex creates content that uses the Flash 9
    player IIRC, but since it's a web app development thing that
    probably only means the plugin - though you could check if you're
    that desperate.
    You could buy Flash 8 for the v8 player, but if its only the
    standalone player you want, it's not exactly a value-for-money
    option.
    There's this whole thing where the standalone player is seen
    as a development tool because it can create 'projector'
    executables. Why they can't just take out the projector-creating
    stuff I don't know.

  • Is mp3 licensing required for stand alone apps created with Flash Builder?

    I've been writing some interactive educational software in ActionScript that utilizes Adobe AIR and plays mp3 files to communicate/instruct the user.   I was wondering if I would need to pay mp3 licensing fees based on what I found at mp3licensing.com
    I wrote to the folks at mplicensing.com and got the following question in reply:
    Will the software itself include mp3 decode (playback) capability, or will it be using the decoder provided in Android.  If the software doesn’t include mp3 code itself, but simply includes mp3 files for playback by the hardware device mp3 code, than you would need our content distribution license, not our electronic gaming license.
    If this is true, then it may be that no license is needed at all, since we exempt from the need for our license any entity with mp3 revenues below USD $100,000 per year.
    I responded:
    I am writing this software in ActionScript using Adobe Flash Builder to create a stand alone application that will be bundled with Adobe AIR and use Adobe AIR to run.  AIR supports Android, iOS, PC desktops, and Macs. 
    they replied:
    I am not sure if AIR will play .mp3 files. If it does, and your code does not have mp3 encode or decode functionality, and AIR is simply used to play the content, and your revenues do not exceed USD $100,000 per year, our license is not required.
    My question now is:   Does Adobe AIR use the decoder provided in Android or does it have it's own decoding code?   Are we subject to the licensing fees for games, etc when distributing programs that play MP3 files using Adobe AIR?
    Thanks,
    Robert

    That site helps a little bit, but not totally.  My existing server is Windows 2003 with 5 CALs included, and it works, though not because I understand the head-spinning details of Microsoft licensing.  For example, I have no idea if I am actually
    using the CALs, since the only thing ever done on that server (aside from web, email, and FTP) is me logging in by RDP to administer it.
    I never considered 2008 Web edition because I might want to install something like the Access GUI, and the Web edition seems to forbid that.  It was not clear if you could install third-party ftp server or mail server also.  Web edition was a mysterious
    product and is not my reference point.
    It would be nice if Essentials could run a web server, since it's cheaper and simpler in terms of licensing.  But nowhere is that stated yea or nay.
    If I buy 2012 standard, do I need to spring for 5 CALs also?  I need to administer by RDP, and have the other server drop backups onto the disk of the new one.

  • Will Compressor 4 run as a stand alone without FCPX?

    Will Compressor 4 run as a stand alone without FCPX?
    I use FCP 7.0.3 and have COmpressor 3. I wondered if Compressor 4 would run on my MacPro and would I see any improvement over Compressor 3?
    4 isn't tied down to FCPX I hope.
    Thoughts?
    Thanks!
    Steve

    Unless you need some special encoding that compressor 3.5 can't do, I would not "upgrade" to version 4.  I bought the new version after FCP X hosed my version of 3.5 thinking it would solve my problem.  It only created more problems for me. (BTW, I was subsequently able to resurrect the 3.5 version with compressor repair and doing a bunch of other stuff!)  The new version has Apple Qmaster incorporated into it which on the surface looks like an advantage.  But I have not been able to get it to form a quick cluster despite numerous attempts.  I have "spoken" to Russ on the forum here and he can't figure it out.  I have spoken several times to a seemingly knowlegable Apple care  specialist- they can reproduce my problem but they can't fix it  either.  Consequently, encoding is much slower in Compressor  4 vs 3.  If compressor 3 is doing what you need it to do, stick with it.  If it ain't broke, don't fix it!!!!!
    Steve

  • Can't install Lightroom 5 on a second computer, I am NOT a creative cloud customer, I am a stand-alone user.  How do I enter my serial number???

    I can't install Lightroom 5 on a second computer, I am NOT a creative cloud customer, I am a stand-alone user.  But when I try to install on my laptop, it always trys to sell me the monthly membership.  How do I enter my serial number in the second copy of lightroom?  It won't ask me for it, and I cannot enter it anywhere in the settings?  I am stuck

    You probably downloaded the Cloud version.  Get the licensed version thru the following linked page...
    Lightroom - all versions
    Windows
    http://www.adobe.com/support/downloads/product.jsp?product=113&platform=Windows
    Mac
    http://www.adobe.com/support/downloads/product.jsp?product=113&platform=Macintosh

  • Migrating stand alone programs to web based application

    Hi,
    I have a small application consisting of .class files. I created these using Swing components and it's based on Client/ server model where it accesses Oracle Database.
    I want to deploy these programs in Java App Server so that it can be accessed thru web browser.
    Please tell me how to do it.
    Thanks in advance.
    Rajeev.
    Message was edited by:
    Rajeev.Asthana

    If this was the thing, Sun, Microsoft and IBM
    wouldn't have even giving a thought of migrating
    legacy application (I'm talking about Mainframes and
    AS/400 here). If this kind of migration is possible,
    can't we migrate a java code from stand-alone
    "version" to web enabled.
    Migration is not really a term to use to for converting a stand alone application to a web application. Unless of course again you are prepared to turn it into an applet.
    The flow and control of a web application are entirely different from a stand alone app. You will not be able to reuse Swing GUI's from a web server. I don't know how to make that any clearer.
    Hopefully you have a good design for your existing application and you can relatively easily reuse your existing business logic components.

  • Need help in creating a web application that runs on a stand alone sys.

    I am planning a small java web application complete with database. I need to know if there are any ways to deploy that application on a stand alone system and that if there is any way to make an executable for that application so that the user need not go through the process of deploying the app and starting the server whenever he restarts the system. Can anyone help me in this regard? Thanks in advance.

    Hi Alex,
    Since I had a Gmail test servlet kicking around, I ran it on the latest V3 nightly build.
    On the first run, I encountered the following nested exceptions:
    javax.mail.MessagingException: Could not connect to SMTP host: smtp.gmail.com, port: 465
    --> java.net.SocketException: java.security.NoSuchAlgorithmException: Error constructing implementation (algorithm: Default, provider: SunJSSE, class: com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
        --> java.security.NoSuchAlgorithmException: Error constructing implementation (algorithm: Default, provider: SunJSSE, class: com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
            --> java.security.UnrecoverableKeyException: Password must not be nullThe UnrecoverableKeyException is a manifestation of [https://glassfish.dev.java.net/issues/show_bug.cgi?id=6938|https://glassfish.dev.java.net/issues/show_bug.cgi?id=6938]
    I worked around this by adding the following JVM config options to domain.xml
    <jvm-options>-Djavax.net.ssl.keyStorePassword=changeit</jvm-options>
    <jvm-options>-Djavax.net.ssl.trustStorePassword=changeit</jvm-options> (Note: the default master password is "changeit")
    These lines are placed in /domain/configs/config/java-config of domain.xml for the particular server config you're using. There's only one server config in the default domain.xml shipped with V3. Then restart the server.
    I retested the code on both port 465 and 587, with and without the above config changes. Without the change, they both fail the same way, and with the change, they both work. Let me know if this helps.
    -Peter

  • SAP PI Installation on Stand alone machine

    Hi,
    Thanks to one and all for having such a nice forum as it has answer to all the questions which I have posted.
    I have been given a very interesting work for anlying if SAP PI could be installed on a standalone machine without having any SAP box. My requirement is to install SAP PI tool for non SAP integration.
    I will distribute my question in 2 parts
    1. Can I install SAP PI in a stand alone desktop?
    2. Is is important to have a SAP R/3 system to install SAP PI tool?
    Please do share your thoughts and if possible please share the document which could be used as proof.
    Thanks in advance.
    Gautam

    1. Can I install SAP PI in a stand alone desktop?
    Yes.
    2. Is is important to have a SAP R/3 system to install SAP PI tool?
    No.
    If you are trying to install 7.1 then have a look at the video blog (easily available on SDN) for the same....will help you.
    Regards,
    Abhishek.

  • Recording Stand-alone Soft Synths & Virtual Instruments in Audition 3

    Hi People,
    Have a little problem which I'm struggling to figure out.
    I have been using Cool Edit Pro for several years. My set up has always enabled me to record any standalone Software Synths via my sound card. I have always had it set up so my sound card plays through patch one and records through another patch enabling me to record in the multi track editor with no problems at all and my set up records only the soft synth/instrument, and not any waves previously recoded. Instead just plays them back so I can build up my music and play along at any given time. Although this is a rather different approach to doing things, it suites me down to the ground and I'm happy to create this way
    My problem has come upon whilst trying out the new Adobe Audition 3, which is based around ASIO Drivers. Because of this I can no longer run another program (Stand alone soft synth), because Adobe hogs the ASIO driver and will not allow another program to be run at the same time. I can use the Adobe windows driver for audition no problems and I am able to continue recording how I did with Cool Edit, but I would much prefer to go along with auditions ASIO drivers to make sure I am recording with the best quality and reliability.
    My Sound card is an E-MU 1616 with breakout box. I have tried numerous ways with the patch mixer to get around this, for example I have tried using my sound cards driver for audition and ASIO4ALL2 for my soft synths. One of which is Hypersonic 2, and the other being SampleTank. I cannot for the life of me get my set up and running how it was with cool edit.
    I must admit that although I have played around with my settings, it could be something simple I need to do that just hasn't jumped out at me yet. My evaluation of Audition 3 runs out in 20 days and I'm almost sure that there is a way to enable my set up to work how I want it to before I can go out and buy Audition 3. I'm very comfortable with audition 3, naturally. I love the changes and extra features it has now along from the cool edit days.
    I have looked into other solutions as well after scouring message boards, one of which was Cycling 74 Soundflower, this sounded like it could be an answer but unfortunately it is Mac only. If Adobe did Audition for Mac then I wouldn't hesitate in going down that route...
    My other solution is to have a second computer, either a modified mid range P C, or even a Mac, to act as my synth station and have my various software synths and such running on there and playing out to my recording PC with Audition on. This would free up the ASIO to be used by Audition solely. It's a long way around but wouldn't cost the earth and would be a simple enough idea to set up. But surly, I shouldn't need to go this far out to get my ideal setup.
    Anyhow, I would much appreciate any advice and ideas to help me solve this problem; I will keep working at it in the mean time.
    Hope my explanation makes sense above, I can appreciate that there are other ways like just going along with another program and such, but in all honesty I like the way I work and don't really want to move on, I'm more bothered about just getting on and recording new ideas in the environment I'm so use to. I love the way Cool Edit/Audition works for me and I have developed my own methods with the software over the years. Working with just audio suits me to the ground as I record and chop up my own Guitar bass and drums, along with sounds from my field recorder and a host of other methods and ideas.
    Thanks in advance

    Hi!
    As long as your softsynths comes in the VSTi format (most of them do now), you can insert it on a track in Audition, which has 'host' capabilities from V3.
    In the Multitrack, insert a new MIDI track from the 'Insert' menu (note: MIDI Track, not just 'MIDI').
    On that track pane hit the 'Sequencer' button, and it will open in a separate window. In the pane left of the keyboard you can insert your VSTi of choice, and make your MIDI connections.
    Back on the Main track pane, engage the 'L' button for Live monitoring. Actual recording (of MIDI) is done in the Sequencer window.
    The usual, and recommended workflow is to keep the MIDI tracks 'open', i.e. you can edit the sound in your instrument and even the notes played at any time in the process, compiling the actual audio as the last step in the mixing.
    If you kind of 'insist' on doing it the old way, you can export the audio from your recorded MIDI+VSTi creations track by track like this: Leave the Sequencer window open, make a selection in the multitrack that covers the time span you have played. Solo the track (will mute all others), and use File / Export Audio Mixdown. Use 'Master' as the source. This will give you a wave rendering of what's currently in the MIDI sequencer. Qualitywise this is better since it's all internal and digital instead of in/out of soundcards with DA/AD conversion etc.
    I haven't found a method for a 'live' wave recording while you play, but there may be one...
    If you purchase Audition it comes with Help files explaining this in more/better detail. ;)

  • Download LR 5.5 as stand-alone

    Hi,
    I am using LIghroom 5.4 and have heard about the updated version 5.5 which I would like to download and install as it worked fine since I started using LR as from version 3.
    I want to use it as a stand-alone program and have no interest to join the Adobe cloud.
    How and from where can I download the latest update without installing the cloud desktop software?
    Update:
    found the solution myself:
    I went to the download page , pressed on the the windows version of LR 5.5 (german in my case). This opened up a text page with links. Here you scroll down (press page down couple of times) until you see Downloads, and here you press "Proceed to download" which will download the 920 MB exe file on the local harddrive.
    I got frustrated because I missed that I had to scroll down so far, so all I ended up a couple of times was the cloud installer.
    For amateurs this is not the way how I will continue. I will stick to LR as long as it is offered as a stand-alone program. I am not willing to go into the cloud and make it a cash cow for adobe....
    best regards,
    Matthias Brand

    You don't need to be attached to the cloud constantly for the newer versions to work. They only have to connect once every four months or so. I believe they also offer enterprise/government versions that don't require a connection at all, but you would have to contact Adobe sales to find out about that. Also, you can pay in yearly increments instead of monthly (and there may be more options for government versions).
    The only perpetual licenses you can get are for CS6 and equivalent versions, but nothing newer.

  • Using a Mac Mini Server as a traditional stand alone desktop

    Hello all, currently I have a late 2008 model 17" MacBook pro, Time Capsule, Apple TV and an Iphone 3GS and Ipod Traditional. I would like to add a desktop system to coordinate all of these items, to be the centerpiece is you will, in my home. I'm interested in buying a mac mini, I began to do research however and saw the Mac Mini Server which has greater memory capacity 4GB vs 2GB RAM, and dual 500Gb vs the standard Mac Mini which has one at 320GB. I would like to take advantage of these upgrades as I'm a writer and will be constantly on the web for work as well as likely keep a lot of items on the hard drive.
    However I noticed the Mac Mini server utilizes Mac OSX snow leopard SERVER as opposed to the user grade Mac OSX. *My question is if the Mac Mini Server with MAC OSX server can still be used as a stand alone desktop, connecting it to a spare LCD television I have and a mac wireless keyboard/mouse?*
    I'm aware that unlike the other mac mini and imacs it does not come with ilife and other pre-installed software, and *I want to know if it's still possible to purchase after market and install said software utilizing them in the traditional manor?*
    Thank you in advance for any feedback you can provide and I apologize if my question was difficult to comprehend due to my lack of computer knowledge. I also apologize if this question is similar to others you've received lately as I did a quick scan of google and these forums and did not seem to find the specific answer I was looking for.

    Welcome to the Apple Discussions!
    Let me clear up a misperception that you have. Both the Mac mini and the Mac mini Server have a capacity to address 8 GB of RAM. There are two SO-DIMM slots in each model. The mac mini comes preconfigured by Apple with 2 GB of RAM (2 x 1 GB). The mini Server comes preconfigured with 4 GB of RAM (2 x 2 GB). You can buy and install yourself up to 8 GB of RAM (2 x 4 GB).
    You can even install Mac OS X Snow Leopard client, which will meet your needs a bit better than Server, now that folks have figured out how to do it;
    http://discussions.apple.com/thread.jspa?threadID=2539663&tstart=0
    And yes you can buy and install iLife, and pretty much everything else that you want to include in your kit. Either model of mini works fine with wireless keyboards and mouses. If your LCD TV has an HDMI port, then a simple HDMI to HDMI cable would be the simplest manner to connect it to the mini.
    Dah•veed

Maybe you are looking for

  • Windows 8 Will not read a disc.

    I have windows 8 running smoothly on my imac (2012), everything is working perfectly, but it won't read discs. Also windows will not eject discs.

  • Mail deferring and sitting in queue

    We have a xserve G5 running 10.4.11 with all latest updates. Today I updated spamassassin and amavisd-new per osx.topicdesk.com. Now mail won't deliver in either direction and is adding up fast in the queue. Also, SA won't turn respond to turning off

  • Issue with Disabling one of the menu item in Forms6i

    Hi, I have a requirement where I need to disable the IR/PO Information (menu item) created using Form Personalization in Sales Order form. If the Warehouse is other than 'FIM' it should be disabled for that particular line. Please let me know if anyb

  • Intercomapny Pricing

    Hi I am doing Intercompany STO and preparing document type NB and give some conditions like base price and other conditions like freight.I then do delivery with transaction VL10B. But when I go to create Billing document it is created with 0 value.Ho

  • Activate workflow in SUS

    Hi everybody, I need to activate these workflows in SUS: WS14500007 and WS14500017. Does anybody know if they can be used in SRM 6.0? And if they can be used for classic and extended classic scenarios? Thank you Juliana