Can you use Premier Media Encoder on a seperate machine?

I'm running premier pro (cs4) on my laptop (win7) and it runs really great, but the rendering is pretty slow.
I'd prefer to save the project and then somehow run the media encoder on my more powerful workstation.
Obviously i don't want to buy a second license of Premier. Is there a way of running Premier on the laptop, sending some kind of export file to a network folder and then running it through Media Encoder on the workstation?
I guess this would involve just installing Media Encoder on the workstation, is that possible?
Hope that makes sense.
Considering the Laptop is a quadcore and the workstation is an 8 core this could potentially half my rendering time.
Cheers
Alan

Great that it worked for you.
Being allowed two personal installations is a good move on Adobe's part. By closing down one instance of the application, and then launching it on the other machine keeps you legal under the EULA. That is something that I always try to follow.
I have had instances, where I'd have maybe PS open on the laptop, and forget about it, only to fire it up on the workstation. So far, I've never had a problem, and the "Adobe Police" have never knocked on my door. I usually get back to the laptop and realize what I did, and utter a big "Oops!"
For migrating Projects between the two machines, I use a handful of FW-800 externals, with ALL Project files on them. I have set the drive letter for each of these externals to be the same, in the OS on each machine. Works very well for me. If I were not so heavily invested in FW-800 drives, I'd definitely go with eSATA's w/ the necessary cards.
Good luck,
Hunt

Similar Messages

  • Can't use Adobe Media Encoder CS5. It won't encode

    I'm following lessons on Flash Professional CS5 Classroom in a Book and I've just got stuck on lesson 8 because AME won't work. The program opens fine, but when a drag the penguin.mov to it, I get this message:
    ""Adobe Media Encoder Debug Event.
    Adobe Media Event has encountered an error
    [..\..\Src\QTTrack.cpp-395"
    I then try to use it with my own movies to see if it works. It starts encoding and suddenly it stops and gives me the exclamation mark inside the yellow triangle under "Status". I click on Status and I get this message:
    - Source File: C:\Users\Rubens\Videos\Isnt she lovely.wmv
    - Output File: C:\Users\Rubens\Videos\Isnt she lovely1.f4v
    - Preset Used: F4V - Web Medium (Flash 9.0.r115 and Higher)
    - Video: 360x264, Same as source fps, Progressive
    - Audio: AAC, 96 kbps, 44.1 kHz, Stereo
    - Bitrate: VBR, 1 Pass, Target 0.40 Mbps, Max 0.60 Mbps
    - Encoding Time: 00:00:00
    11/24/2010 11:04:56 PM : Encoding Failed
    Error compiling movie.
    Unknown error.
    Hope someone will give me a solution for this frustrating situation. Thank you.

    Are Adobe applications all updated?  Try help>updates to make sure.
    If not, you might post some info on your system to help troubleshoot.
    Dennis

  • Can you use multiple plugins on one piece of media?

    can you use multiple plugins on one piece of media?
    ...so for example have one plugin for a UI control bar, another for tracking, and another for advertising?
    If this is possible how? What types of plugin would each plugin be and what sort of media element would be required?
    Or is this not the correct approach? If not what would the correct approach be?
    Thanks in advance for support.

    I have got this plugin to set it's proxiedElement.
    To do so, I needed to follow David_RealEyes advice too.
    But I still can not acheive what I set out to find out, all I was trying to do was trace the current time of the videoElement, to begin to understand how plugins work. Can anyone advise please? Thanks in advance for support.
    I thought to acheive this I would just need to add  a listener for like this:
    dispatcher.addEventListener(TimeEvent.CURRENT_TIME_CHANGE,  onTimeChange);
    Then write the function like this:      
    private function onTimeChange(e:TimeEvent):void
                 trace('**********onTimeChange: '+ e.time)
    ...But this doesn't work.
    What am I doing wrong?
    Here's the class now for the TraceListenerProxyElement
    package
        import org.osmf.elements.*;
        import org.osmf.events.*;
        import org.osmf.media.*;
        import org.osmf.metadata.*;
        import org.osmf.traits.*;
        public class TraceListenerProxyElement extends ProxyElement
            public function TraceListenerProxyElement(wrappedElement:MediaElement)
                trace('TraceListenerProxyElement')
                super(wrappedElement);
            // Overrides
            override public function set proxiedElement(value:MediaElement):void
                trace('override set proxy')
                trace('value: ' + value)
                if(value)
                   super.proxiedElement = value;
                   trace('proxied element set')
                   enableListeners()
                super.proxiedElement = value;
                trace('proxied el: ' + proxiedElement)
            private function enableListeners():void
                trace('enableListeners')
                dispatcher = new TraitEventDispatcher();
                dispatcher.media = proxiedElement;
                dispatcher.addEventListener(AudioEvent.MUTED_CHANGE, processMutedChange);
                dispatcher.addEventListener(AudioEvent.PAN_CHANGE, processPanChange);
                dispatcher.addEventListener(AudioEvent.VOLUME_CHANGE, processVolumeChange);
                dispatcher.addEventListener(BufferEvent.BUFFER_TIME_CHANGE, processBufferTimeChange);
                dispatcher.addEventListener(BufferEvent.BUFFERING_CHANGE, processBufferingChange);
                dispatcher.addEventListener(DisplayObjectEvent.DISPLAY_OBJECT_CHANGE, processDisplayObjectChange);
                dispatcher.addEventListener(DisplayObjectEvent.MEDIA_SIZE_CHANGE, processMediaSizeChange);
                dispatcher.addEventListener(DRMEvent.DRM_STATE_CHANGE, processDRMStateChange);
                dispatcher.addEventListener(DynamicStreamEvent.AUTO_SWITCH_CHANGE, processAutoSwitchChange);
                dispatcher.addEventListener(DynamicStreamEvent.NUM_DYNAMIC_STREAMS_CHANGE, processNumDynamicStreamsChange);
                dispatcher.addEventListener(DynamicStreamEvent.SWITCHING_CHANGE, processSwitchingChange);
                dispatcher.addEventListener(LoadEvent.BYTES_TOTAL_CHANGE, processBytesTotalChange);
                dispatcher.addEventListener(LoadEvent.LOAD_STATE_CHANGE, processLoadStateChange); 
                dispatcher.addEventListener(PlayEvent.CAN_PAUSE_CHANGE, processCanPauseChange);
                dispatcher.addEventListener(PlayEvent.PLAY_STATE_CHANGE, processPlayStateChange);
                dispatcher.addEventListener(SeekEvent.SEEKING_CHANGE, processSeekingChange);
                dispatcher.addEventListener(TimeEvent.COMPLETE, processComplete);
                dispatcher.addEventListener(TimeEvent.DURATION_CHANGE, processDurationChange);
                dispatcher.addEventListener(TimeEvent.CURRENT_TIME_CHANGE, onTimeChange);
                proxiedElement.addEventListener(MediaElementEvent.TRAIT_ADD, processTraitAdd);
                proxiedElement.addEventListener(MediaElementEvent.TRAIT_REMOVE, processTraitRemove);
            private function onTimeChange(e:TimeEvent):void
                trace('**********onTimeChange: '+ e.time)
            private function processAutoSwitchChange(event:DynamicStreamEvent):void
                trace("autoSwitchChange", event.autoSwitch);
            private function processBufferingChange(event:BufferEvent):void
                trace("bufferingChange", event.buffering);
            private function processBufferTimeChange(event:BufferEvent):void
                trace("bufferTimeChange", event.bufferTime);
            private function processComplete(event:TimeEvent):void
                trace("complete");
            private function processCanPauseChange(event:PlayEvent):void
                trace("canPauseChange", event.canPause);
            private function processDisplayObjectChange(event:DisplayObjectEvent):void
                trace("displayObjectChange");
            private function processDurationChange(event:TimeEvent):void
                trace("durationChange", event.time);
            private function processLoadStateChange(event:LoadEvent):void
                trace("loadStateChange", event.loadState);
            private function processBytesTotalChange(event:LoadEvent):void
                trace("bytesTotalChange", event.bytes);
            private function processMediaSizeChange(event:DisplayObjectEvent):void
                trace("mediaSizeChange", event.newWidth, event.newHeight);
            private function processMutedChange(event:AudioEvent):void
                trace("mutedChange", event.muted);
            private function processNumDynamicStreamsChange(event:DynamicStreamEvent):void
                trace("numDynamicStreamsChange");
            private function processPanChange(event:AudioEvent):void
                trace("panChange", event.pan);
            private function processPlayStateChange(event:PlayEvent):void
                trace("playStateChange", event.playState);
            private function processSeekingChange(event:SeekEvent):void
                trace("seekingChange", event.seeking, event.time);
            private function processSwitchingChange(event:DynamicStreamEvent):void
                trace("switchingChange", event.switching);
            private function processVolumeChange(event:AudioEvent):void
                trace("volumeChange", event.volume);
            private function processDRMStateChange(event:DRMEvent):void
                trace("drmStateChange", event.drmState);
            private function processTraitAdd(event:MediaElementEvent):void
                trace("Trait Add: " + event.traitType);
            private function processTraitRemove(event:MediaElementEvent):void
                trace("Trait Remove: " + event.traitType);
            private var dispatcher:TraitEventDispatcher;

  • Using Adobe Media Encoder to create H.264, MPEG-2, and WMV videos from After Effects - 6/23/14

    Very disappointed with this choice. I will definitely be seeking to uninstall this version and go back a version or two. Two many extra steps to export an mp4 now. And now we also have to wait longer for a mp4 to render and can't take advantage of the machine's hardware? You guys fighting mp4 as a standard, forcing us to an additional product, or what? I'll be sharing my extreme disappoint with this 'upgrade' with the rest of the developers at work and who just had it installed. I'm not seeing this being too popular opn social media either. Seems like you only did what was best for you.Thanks for showing us who's boss.

    Frank VA wrote:
    And now we also have to wait longer for a mp4 to render and can't take advantage of the machine's hardware?
    Not necessarily. You can render an intermediate codec with AE's render queue (thus using all of AE's power to render) and then drop that file into the Adobe Media Encoder.
    This was the workflow I've always used - even when AE could encode with MP4. Why? Well, because AE sucked at MP4 encoding. You couldn't even do multipass endoding with it!
    This is a useful workflow in a few ways:
    1. You have an archive-quality file to come back to in the future.
    2. You can use AE's full power to render.
    3. You can use AME's superior encoding capabilities.
    4. You can tweak your compression settings and try various encoding parameters to improve the quality while decreasing the bitrate of your product WITHOUT having to re-render the AE comp every time you try since you're working off of the intermediate file. I mean, imagine a comp with several 3d layers, depth of field, shadows from multiple lights, and 250,000 particles from Particular. What if you made an MP4 and then the client needed a smaller file size or the MP4 you made was too heavily compressed and you needed higher quality? I don't know about you, but I'd much rather only render that 18-hour monster once.
    This workflow actually saves time for many people.
    And, in any workflow, this produces a better product.
    Again, this is what I did even when AE could encode MP4's.
    Frank VA wrote:
    You guys fighting mp4 as a standard, forcing us to an additional product, or what?
    They aren't fighting MP4 as a standard, in fact, when Adobe folks pop in here and answer questions, that's often their recommendation for delivery codec.
    Frank VA wrote:
    Seems like you only did what was best for you. Thanks for showing us who's boss.
    Listen, I understand your frustration. Knocking out a quick compressed file from AE for client review is handy.
    However, maintaining the h.264 encoding in AE took up development time. There are only so many person-hours per week for the (relatively tiny) AE team to spend on building each version of AE.
    I never liked AE's h.264 encoding - AME has always done a superior job. Since we have AME to do our encoding, I would rather the AE team focus their effort on improving AE as a compositing and motion graphics tool rather than as an encoding tool.
    Again, I get the frustration. I can see where it feels like they are doing what's good for them and not us, but I think, in the long run, this way is better for us. Right now, the majority of the AE team is working on making AE faster to work with and faster to render. The sooner we get a relatively bug-free version of that, the better! (Especially for folks on Mac OSX Yosemite who can't RAM preview smoothly in any version of AE).
    And at least the After Effects team has been very transparent about things - for example, this blog post talks about their reasoning: using Adobe Media Encoder to create H.264, MPEG-2, and WMV videos from After Effects

  • HT1766 Can you use an external hard drive to back up my movies in iTunes but still be able to access them or is there a device so I don't have to use a pc ??

    Can you use an external hard drive to back up my movies in iTunes but still be able to access them or is there a device so I don't have to use a pc ??

    You can store them on a separate hard drive, you don't need to keep them on your laptop's hard drive. On your computer's iTunes on the Advanced tab in Edit > Preferences there is a 'copy files to iTunes media file when adding to library' tickbox - if you untick that, you should be able to copy the films to a separate drive and add them back to your iTunes library (File > Add To Library) and it should then point to them on that separate drive and not copy them to your hard drive. When you are happy that it is what is happening and that they are safely on your external drive you can delete the films from your laptop's hard drive.
    If you plug the external drive into a different USB port next time (assuming that your laptop has more than one) then it might get a different drive letter, so you might need to always use it with the same port.

  • Why cant I encode a .mov using Adobe Media Encoder CC to .mp4 or .ogv to use in Edge?

    Why cant I encode a .mov using Adobe Media Encoder CC to .mp4 or .ogv to use in Edge?

    Yeah, mp4 in HTML5 browsers is h.264 encoded - h.264 is a subset of MPEG-4 standard. More info here:
    H.264/MPEG-4 AVC - Wikipedia, the free encyclopedia
    For ease of use in AME, if you look at the right side of the UI in the presets, the Web Video > YouTube presets are the ones that will encode to h.264 with the mp4 extension.
    hth,
    Joe

  • "R6025 -pure virtual function call" Error While Use Adobe Media Encoder

    I'm trying to use Adobe Media Encoder (CS3) to output a project to H.264. I have about 3 minutes of footage on the Premier Pro CS3 Timeline, all of it in Cineform AVI intermediate format. When I export the movie through AME and select 2-pass VBR, it gets through the first pass, but crashes at 50% on the second pass with the error:
    "Microsoft Visual C++ Runtime Library
    Runtime Error!
    Program E:\Progra...
    R6025
    -pure virtual function call"
    Any ideas what may be causing this error?

    Point taken...
    I'm on a Dell XPS 720 Windows XP (32-bit) system, with all up-to-date service packs and patches. I have 4GB RAM installed, and Production Premium CS3, TMPGEncXPress and Cineform's Neo Scene. Neo Scene is a recent addition and the problem existed prior to its installation. I have two 7900GS graphics cards (each with 256MB video RAM), running in SLI mode.
    I dual boot Windows XP: One system is "Messy" with all kinds of stuff installed. The other is "Clean" and has virtually nothing installed, except for the three suites previously mentioned. No anti-virus or anti-spyware software is installed on the Clean system. I get the error on both systems.
    I saw the post from September 2007 reference vcredist_x86. I'll be trying that at my next opportunity, however, I'm not sure that will fix it, as I don't see why both systems would suffer from the same corruption. I'll also be swapping out RAM to see if that fixes the issue.

  • Can you use apple tv as second screen? Kun je apple tv gebruiken als 2e beeldscherm?

    Can you use apple tv as second screen (on a Philips 32PFL8404H/12)? Thanx!
    Kun je apple tv gebruiken als 2e beeldscherm (op een Philips 32PFL8404H/12)? Bedankt!
    Sander

    currently no
    but some people say that airparrot can though it does not rely on the gpu for realtime encoding so performance would be worse
    with the next version of osx you are suppose to be able to do what you ask though

  • My YouTube video looks blurry using Adobe Media Encoder

    Im trying to upload a video to YouTube but the video always turns out blurry and pixilated regardless of what settings I use in my Adobe Media Encoder. I shot the video on a Sony 1080i HD camcorder, I know YouTube reduces the quality but I expect my images (ie peoples faces) should still be clear enough to see but that hasnt been the case. I went to the following site for guidance but I still cant get it right.
    http://www.squidoo.com/youtuberight
    Here are my settings that I thought would make my video look great on YouTube. What am I doing wrong?
    H.264 format
    Frame Width (pixels): 320
    Frame Height (pixels): 240
    4:3 Aspect Ratio
    30 frames per second
    TV Standard: NTSC
    Bitrate Encoding: VBR, 1 Pass
    Target Bitrate (Mbps): 0.344
    Maximum Bitrate (Mbps): 0.64
    MP3 audio
    Drogba

    I heard sometime ago that YouTube converts everything uploaded to
    Flash or FLV format. I have not used the iPod format for this purpose in CS3 but Rick has obviously found that it works well, however, I would recommend using Adobe Media Encoder to FLV and set it to 320X240 with no more than 1MB/sec bit rate to maximize quality and minimize file size since it's not going to be larger than that on Youtube.
    The FLV raw file will be ecoded using VP6 or Sorenson's older version courtesy of PPro CS3 unfortunatley, but I feel the best codec to use is 264. Why PPro, especially CS3, does not offer this codec is unkown. That could be a reason why Rick's videos look good and that he may have shot them in HD. But then again, HD to 320X240 would seem to be self defeating. iPod format is indeed, believe it or not, 720X480. If you have published anything to the iTunes store, this is a required format which is not optional as it is with Youtube.

  • I m havind 15inch 2011 late macbook pro lap i7 processor 8gb ram 1tb hdd can i use avid media composer and final cut pro in this specifications?

    i m havind 15inch 2011 late macbook pro lap i7 processor 8gb ram 1tb hdd can i use avid media composer and final cut pro in this specifications?

    Can't speak about avid, since I am not familiar with the software.
    You can certainly use FCP X on that machine. It should work better if you use a fast external drive for your media and projects.
    There is a free trial, so try it out and see how it goes. You should also follow some good video tutorials, if you are not familiar with the application. FCP X is a lot different from Avid, Premiere or even Final Cut Pro 7.

  • (261718088) Q: Can you use xm:multiple with Objects other than String?

    Q: Can you use xm:multiple with Objects other than Strings?
    <br>
    A: You bet. Attached find a text file with some code from the example I showed
    today, a version of the multipleSayHiTo() method that has a parameter of an Array
    of Person objects rather than a parameter of an Array of Strings. The code within
    the text file comes from the Greeting.jws file (the Greeting Web Service).
    [multiple.txt]

    So you are saying that the recovery discs I made do include the copy of windows that was originally installed?
    Absolutely! They will restore the hard disk to its original out-of-the-box contents. Follow the instructions in the section Restoring from recovery DVDs/media, which begins on p. 73 of the User's Guide.
       Satellite A660 Series User’s Guide
    maybe i can make a deal with wd to have them swap this drive out for the BEKT instead...
    That would be a good idea in any case.
    As I said, the 10-fc12-045d error would not be due to the drive's being AFT, but more likely the discs are not being read properly. New discs can be obtained from Toshiba. Scroll down to Get Recovery Media here
    -Jerry

  • Can you use apple tv on 2009 mac

    can you use apple tv on a 2009 mac . I have Mac OS X (10.7.5 running

    Yes but it will probably be too old for Airplay mirroring of the Mac's display but should work fine for sharing photos from iPhoto/Aperture or playing compatibl media from your local iTunes library with iTunes running.
    For many features AppleTv does not need a computer at all.

  • Can you use surround sound 5.1home theatre systems with iMac 27"?

    Can you use surround sound 5.1 home theatre systems with iMac 27"? I was thinking of using my iMac as an internet television as well as home pc. thanks

    NZane-
    Greetings and welcome to the Apple boards.
    The Mac puts out encoded 5.1. It is the function of the amplifier, receiver or decoder to take that signal and turn it into something useful. At minimum you will need a device that can accept that output and turn it into something useful.
    Most studios that I am familiar with want to be able to use their own 5.1 decoder, amp and speakers. Juicier sound!
    Luck-
    -DaddyPaycheck

  • Can you use the same Apple ID on more than one MacBook Pro for updates and applications?

    We just got a few new MacBook Pro's and when I went to install updates it said I need to make an Apple ID.  Can you use the same Apple ID and email address for that Apple ID on multiple machines, or do I need them both to be unique per machine?  I'm not sure how that works when you have multiple machines.

    An Apple ID is a user name you use for everything you do with Apple. Creating an account for an Apple service, such as the iTunes Store or the App Store, creates an Apple ID. Apple ID allows you to access other Apple services.   So you can use the same Apple ID for up to 10 Macs associated with it.
    To create an Apple ID you need to enter  your full name and your primary email address as your Apple ID. This will be used as the contact email address for your account.

  • How many Ipods can you use with one Itunes account?

    How many iPods can you use/sync with one iTunes account?

    PT wrote:
    Macistotle wrote:
    Unless you have DRM still haunting your tunes ... Then you can only use those songs on 5 devices. Otherwise, connect as many as you like (as stated above).
    No, you can sync your DRM tracks to an unlimited number of iPods (but only authorized to play on 5 different computers/user accounts)
    Patrick
    So I can sync two iPods to my iTunes account and sync the same digital copy movies that come with some o' my DVDs to both ipods? Do movies make a difference really, DRM-Wise? Thanks in advance.

Maybe you are looking for

  • Want To Lock A MacBook Screen Instead Of Putting It To Sleep?

    The best way I found is to make a hot corner to start the screen saver. Then, you don't have to log off and stop all your services. You just come back and click the screen, enter your credentials, and... BOOM! that's it!! Here's where you start. Clic

  • Library won't play more than one song at a time

    What gives? My iTunes suddenly won't play a sequence of songs. Not from the library as a whole, not from any playlist. The files are all still there and I can highlight and play any ONE, but iTunes won't then go on to the next. Tried 'select all', th

  • ETA for SQL Developer 2?

    I'm a little excited. Is there an ETA for SQL Developer 2? Is it soon? :-)

  • Where is the button formerly known as stop?

    On previous versions of FF there was a 'Stop' button that canceled what seemed to be a transaction going nowhere. Where is that button now?

  • IPhone and NikePlus Syncing

    I use my iPhone to connect to the treadmills at my gym and record the stats of my runs. With the release of IOS 5 my iPhone still appears to save the treadmill stats, but iTunes no longer syncs the stats to nikeplus. How do I sync my stats now. Note