Droplet created in 3.0 running now in 3.5 doesn't submit to Batch Monitor?

I've got a droplet I created in FCS2 (Compressor 3?).
I upgraded to FCS3 and tried to use my droplet.
I get a window with 'Server: This computer - submitting 1 files'
But in the Batch Monitor I never see anything appear under 'This Computer'.
It's just a simple droplet to take a ProRes 422 HQ captured from an HV20 in their 24p in 60i format - that strips out the extra garbage and reverse telecines.
1st time I've tried to use it with Compressor 3.5.
How can I debug this?
Name: 24p
Description: Apple ProRes 422 10-bit video with audio pass-through. Settings based off the source resolution and frame-rate.
File Extension: mov
Estimated size: 73.75 GB/hour of source
Audio: multi-track passthrough
Video Encoder
Format: QT
Width: 1920
Height: 1080
Pixel aspect ratio: Square
Crop: None
Padding: None
Frame rate: 23.976
Frame Controls On:
Retiming: (Fast) Nearest Frame
Resize Filter: Linear Filter
Deinterlace Filter: Reverse Telecine
Adaptive Details: Off
Antialias: 0
Detail Level: 0
Field Output: Progressive
Codec Type: Apple ProRes 422 (HQ)
Multi-pass: Off, frame reorder: Off
Automatic gamma correction
Progressive
Chroma filtering enabled
Pixel depth: 24
Spatial quality: 50
Min. Spatial quality: 0
Temporal quality: 0
Min. temporal quality: 0

I found the original droplet in my Compressor settings list, and created a new droplet from 3.5.
This time, when I dropped a file on it, it worked.
But - in case I need to convert a droplet from 3.0 to 3.5 (that doesn't exist in Compressor settings), is there a way?

Similar Messages

  • How to create a schedule to run once?

    I am having some problems getting a schedule to run only once. If I leave the repeat_interval empty, the schedule does not run at all. The documentation explains all the options for setting the repeat frequency, but it does not explain how to run it only once at a set time/date. I have created a user interface to allow the users to create their own schedules and I'd rather not do something like a "yearly" interval with an end date of next week. I need the generic solution.
    Any ideas?

    Hi Ravi,
    Thanks for your reply!
    I have just discovered something very interesting! best explained by example:
    (I might log an SR through metalink too. I'll be sure to update this thread with the outcome...)
    I create 3 schedules and 3 simple jobs:
    schedule 1 - start_date in 2 minutes time (eg. 11:30:00), repeat_interval => null
    schedule 2 - start_date in 2 minutes, 20 seconds time (eg. 11:30:20), repeat_interval => 'FREQ=DAILY'
    schedule 3 - start_date in 2 minutes, 40 seconds time (eg. 11:30:40), repeat_interval => null
    jobs 1, 2 and 3 just insert a row into a table through a PL/SQL block.
    My test results are as follows:
    1. The first time these schedules are created only schedule 2 runs. Schedules 1 and 3 never run.
    2. I drop and re-create all schedules and jobs, (adjusting the time to a few minutes in the future) and re-submit the schedules and jobs and they all run. I can continue this as many times as I like now and the repeat_interval of null will now work fine.
    3. re-start the 10gR2 database.
    4. re-create the schedules and jobs and only schedule 2 runs again. Schedules 1 and 3 never run. (I'm back at step 1!! I can reproduce this problem anytime by following these steps)
    My script is below:
    declare
    start_datetime__w timestamp(3) with time zone;
    repeat_interval__w varchar2(200);
    begin
    * REPEAT INTERVAL NULL TEST
    * TIM_SCHED_2_1 - no repeat interval
    * TIM_SCHED_2_2 - a repeat interval
    * TIM_SCHED_2_3 - no repeat interval (identical to TIM_SCHED_2_1)
    * Results on my 10gR2 database (Redhat Enterprise Linux 4.4) are:
    * job 2 will always run
    * jobs 1 and 3 will only run after the successful run of job2 AND jobs 1 and 3 have been re-created
    * Why?
    * It seems the scheduler needs a wakeup call!!!
    * test table: create table tim (col1 varchar2(30), col2 date);
    -- Cleanup previous jobs:
    --dbms_scheduler.drop_job      (job_name      => 'TIM_JOB_2_1');
    --dbms_scheduler.drop_schedule (schedule_name => 'TIM_SCHED_2_1');
    --dbms_scheduler.drop_job      (job_name      => 'TIM_JOB_2_2');
    --dbms_scheduler.drop_schedule (schedule_name => 'TIM_SCHED_2_2');
    --dbms_scheduler.drop_job      (job_name      => 'TIM_JOB_2_3');
    --dbms_scheduler.drop_schedule (schedule_name => 'TIM_SCHED_2_3');
    repeat_interval__w := 'FREQ=DAILY';
    -- create schedule TIM_SCHED_2_1, repeat_interval__w = null
    start_datetime__w := '27-FEB-2007 11:34:00.000 AM +10:00';
    dbms_scheduler.create_schedule (schedule_name => 'TIM_SCHED_2_1',
    start_date => start_datetime__w,
    repeat_interval => null,
    end_date => null,
    comments => 'schedule created at '||to_char(sysdate,'DD-MON-YYYY HH24:MI:SS'));
    -- create schedule TIM_SCHED_2_2, with a repeat_interval set
    start_datetime__w := '27-FEB-2007 11:34:20.000 AM +10:00';
    dbms_scheduler.create_schedule (schedule_name => 'TIM_SCHED_2_2',
    start_date => start_datetime__w,
    repeat_interval => repeat_interval__w,
    end_date => null,
    comments => 'schedule created at '||to_char(sysdate,'DD-MON-YYYY HH24:MI:SS'));
    -- create schedule TIM_SCHED_2_3, repeat_interval__w = null (SCHEDULE IDENTICAL TO TIM_SCHED_2_1)
    start_datetime__w := '27-FEB-2007 11:34:40.000 AM +10:00';
    dbms_scheduler.create_schedule (schedule_name => 'TIM_SCHED_2_3',
    start_date => start_datetime__w,
    repeat_interval => null,
    end_date => null,
    comments => 'schedule created at '||to_char(sysdate,'DD-MON-YYYY HH24:MI:SS'));
    -- create jobs
    dbms_scheduler.create_job (job_name => 'TIM_JOB_2_1',
    schedule_name => 'TIM_SCHED_2_1',
    job_type => 'PLSQL_BLOCK',
    job_action => 'begin '||
    'insert into tim values (''TIM_JOB_2_1'', sysdate); '||
    'commit; '||
    'end;',
    number_of_arguments => 0,
    enabled => TRUE,
    comments => 'job created at '||to_char(sysdate,'DD-MON-YY HH24:MI:SS'));
    dbms_scheduler.create_job (job_name => 'TIM_JOB_2_2',
    schedule_name => 'TIM_SCHED_2_2',
    job_type => 'PLSQL_BLOCK',
    job_action => 'begin '||
    'insert into tim values (''TIM_JOB_2_2'', sysdate); '||
    'commit; '||
    'end;',
    number_of_arguments => 0,
    enabled => TRUE,
    comments => 'job created at '||to_char(sysdate,'DD-MON-YY HH24:MI:SS'));
    dbms_scheduler.create_job (job_name => 'TIM_JOB_2_3',
    schedule_name => 'TIM_SCHED_2_3',
    job_type => 'PLSQL_BLOCK',
    job_action => 'begin '||
    'insert into tim values (''TIM_JOB_2_3'', sysdate); '||
    'commit; '||
    'end;',
    number_of_arguments => 0,
    enabled => TRUE,
    comments => 'job created at '||to_char(sysdate,'DD-MON-YY HH24:MI:SS'));
    end;
    Cheers,
    Tim.

  • Creating a service to run tftpboot

    Hey guys,
    I've been asked to create a service to run tftpboot. That's pretty much all the instruction I've been given. I know how to create a service...but the tftpboot is confusing me.
    I am running Solaris 10.8 on SPARC as the sys. admin. I am starting to think that they sent me snipe hunting because there exists no man pages for TFTPBOOT
    root# man tftpboot
    No manual entry for TFTPBOOT
    root#no services exist for it:
    root#svcs -a | grep tftp
    root#Google searches haven't been helpful....most webpages either have no information or talk about jumpstarting a system.
    Does anyone have any ideas??? Where should I look for this? I've referenced my books and have exhausted my resources already. Like I said...I think I might be on a fool's errand. (which is really silly considering how much other work I still have to do)
    Edited by: mandarbshadar on Apr 29, 2010 11:12 AM

    mandarbshadar wrote:
    Thanks alan!! i have that exact line in inetd.conf, and it's commented out. Now I am convinced that this tftpboot service actually exists...hahahaIt doesn't exist just yet.
    I suppose uncommenting the line should enable the service...however I'm going to teach myself to use the inetdadm commands for SMF. Uncommenting it won't do anything immediately. You also need to run inetconv to have it create a service from that line. See the man page for inetconv.
    Thanks again! And if anyone knows where I might find documentation on tftpboot....please post a link or tell me where I might look. man pages and reference books don't have it :-(.The name of the daemon is in.tftpd. There is a man page on it. Not sure what type of information you're looking for.
    Darren

  • Photoshop droplet created in CC calls CS6 ?!?

    Hi,
    I created a droplet in PS CC 2014 but when it is called (from LR), it launches PS CS6, not CC.
    What did I miss?
    Thanks in advance.

    Hi,
    I have checked all file associations and everything points to PS CC 2014.
    If I launch the droplet from LR while PS CC is already running, the actions are executed in PS CC. But if PS is not running (either CS6 or CC), CS6 seems to have priority. Which I can't explain...
    Ooooops! Got it! Big programming bug here!
    The following is for power users or people having a developer background.
    When a droplet is run, it launches photoshop.exe as an automation server and passes it commands through OLE Automation. Obviously, the automation server is invoked via its ProgID : Photoshop.Application. Other OLE objects are involved and invoked through their own ProgID.
    The problem : PS CC and PS CS6 have different implementations of their OLE Automation objects registered under different CLSIDs and implemented in different DLLs. However, they still have the same ProgID (the same alias). I just discovered this by examining the CLSID section of the registry. So the registry contains references to Photoshop OLE/COM objects having the same ProgID but pointing to different implementations registered under different CLSIDs. This is a big programming mistake and demonstrates a deep misunderstanding about how COM/OLE is working.
    A droplet created in PS CC should invoke PS CC and a droplet created in CS6 should invoke CS6 by using different ProgIDs. But since all Photoshop OLE/COM objects have the same ProgID, Windows launches the first object that matches that ProgID even if it is not the correct one.
    As long as both PS CS6 and PS CC are installed, the problem can't be solved. The only possible fix is to launch the version of PS corresponding to the droplet that you want to use before launching the droplet (or before running the export using that droplet in Lightroom).

  • Trying to use Parallels to create a virtual PC running Windows 7

    I am trying to help a friend with this problem but I am woefully inadequate to assist on this one!  Here is a brief description of what's going on – by the way I am using a MacBook Pro, Lion OS X.  I use Parallels to create a virtual PC running Windows 7.  I have installed Office 2010 on the PC side and Office 2011 on the Mac.  All VBA works fine on the PC side, but bombs on the Mac.  It was my understanding (directly from Apple) that with the release of Office 2011 for the Mac that all code was now conforming with the PC version.  This is probably true for new code written under Office 2010 (PC), however, most all of my applications have been developed over time through many versions of Windows based software (probably the last 10 years)…to date I have never had an issue with compatibility (on the Windows side).  I have done some online research into the errors that I receive, however I am really an novice/intermediate programmer and am unable to find adequate solutions to the initial problems (as shown below). 
    Once I receive the run-time error 1004 I use the debug feature, etc. and end with "Can't find project or library.  The initial error is probably just the beginning, but I am unable to go forward from this point.
    Any help would be much appreciated…thanks.

    Well your topic is about virtual machines and the body of your post is about Visual Basic. So what exactly do you want help with.
    One has nothing to do with the other.
    As to the error you posted that VBA program you are trying to run is looking for files in a specific place. Which would not be the same on a Mac as it is on a PC. For one reason PCs use Drive Letters for that path to folders. Mac's use Volume names.
    Although I don't do a lot, if any, VBA programing you might be able to run those VBA Apps through the Mac side VBA to convert them to work on Office for Mac. You would also need to copy over whatever it is looking for that gives you that error.

  • Is there a way to create a playlist from the now playing screen on ios7?

    Is there a way to create a playlist from the now playing screen on ios7? I want to be able to hear a song in my collection and immediately add it to an existing playlist or create a new playlist.
    Thank you in advance

    Hi Cornellius,
    From the now playing screen there's a Create button at the bottom that allows you to create a
    Genius Playlist
    New Station form Artist
    New Station from Song
    IPhone Help, Browse and play
    http://help.apple.com/iphone/7/#/iph3cf21a82
    The Now Playing screen provides playback controls and shows you what’s playing.
    For information on Genius Playlists, see
    Archived - Genius for iPod and iPhone
    http://support.apple.com/kb/HT2978
    I don't see an option to add it to an existing playlist.
    Best Regards,
    Nubz

  • I have a packardbell laptop with photoshop elements 8 installed from new. I have used it on several occasions but I cannot get it to run now.  When I open a photo using elements the Adobe box pops up saying that the programme has unexpectedley quit? can a

    I have a packardbell laptop with photoshop elements 8 installed from new. I have used it on several occasions but I cannot get it to run now.  When I open a photo using elements the Adobe box pops up saying that the programme has unexpectedley quit? can anyone help me please as I have several photos to edit before the end of this month. Many thanks for any help

    The "restore disk" is built into the Mac. See About Recovery.
    Need more specifics about what error messages you got while installing Adobe Flash.
    However, you can almost avoid Flash altogether by setting YouTube to play the HTML5 version instead.
    Click the Try something new! link at the bottom of the YouTube page.
    I don't know about the sound issue. Might be hardware as you think. Try other headphones to check.

  • Can someone plz confirm me that how i can change or update the security questions related to my apple id? as i have been never put them since i create my apple id but now due to some security reasons its asking me again and again the answers. i am unable

    can someone plz confirm me that how i can change or update the security questions related to my apple id? as i have been never put them since i create my apple id but now due to some security reasons its asking me again and again the answers. i am unable to go through the process. thanks.

    Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities

  • The delivery schedule lines don't get created automatically on MRP run.

    Hi All,
    The delivery schedule lines don't get created automatically on MRP run for subcontracting material.  I have maintained source list as follow eg.
    Valid from | Valid to | Vendor | Porg | PPI | Agreement | Item | Fix | MRP | MRP area
    02.11.2009 | 31.12.2999| XYZ | XY01|     |AA0000XYZE |10 | X |2 | ABC
    Could you please help me about this issue
    Thanks in advance.

    Hi Amit,
    Please ensure the value of Special procurement key in the MRP2 view for the material. It should be maintained as 30 - subcontracting.
    Thanks and Regards,

  • Using Windows Server 2012 Essentials - Creating a virtual PC running Windows 7

    I have a lot to my question, but I am hoping someone out there will be able to answer it, or at least part of it for me. 
    My situation is I have a Centon InfiniTV 6 turner card, which means that the computer would need to be running 24x7 to record TV shows. 
    Which is ok, I have no problem with that.  I also have a home network with all computers are able to access the recordings. 
    I would really like to have some server software running to help keep things better organized and also be able to access the files and stuff remotely if needed.
     This is why I purchased Windows Server 2012R2 Essentials. 
    I have not tried to install the tuner card software on the operating system; because it is only for Windows 7 and 8, so I would think it would not work. 
    What I want to do is have my Windows Server 2012R2 Essentials running as the primary operating system. 
    Then create a virtual PC to run my copy of Windows 7, and have it use the turner card that I have installed on the computer. 
    This is the first question, is there any way of doing this? 
    From what I have read online is that Essentials does not support virtual PC’s because it does not come with hyper-v. 
    Is that something that can be downloaded or purchased separately from Microsoft? 
    I have installed the free copy of Oracle Virtual Box, but for some reason that does not show any operating system over 32 bit. 
    All of my software is running at 64 bit.  If I can get Virtual Box working, would that fix all my issues?
    Next question, is there any easy way to make a copy of my current running Windows 7 and use that to create a virtual PC running on the server? 
    Or will I have to reinstall it, and everything associated with it to make it work correctly?
    I guess the last question would be, is there any way of using a free SSL certificate with the server operating system? 
    I have tried a few things that I found online, even followed all the steps from a YouTube video but none seem to work. 
    I am not sure if it is worth the $70 per year just to access my computer remotely once or twice a month. 
    Any help would be great!  Thanks in advance

    Hi,
    For license related questions we recommend you contact Microsoft licensing specialist.
    http://support.microsoft.com/kb/141850/en-us
    Regards.
    Vivian Wang

  • Creating a job that runs a Tcl script

    Hi,
    We currently have a scheduled job running a Tcl script on a 8.1.7 DB. My question is, can I still use the same setup in 10g DB (i.e. creating a job that runs Tcl script)? If I can, how am I gonna do it?
    Thanks,
    howie

    It depends on how you scheduled the job in 8.1.7 DB.
    By Cronjob? Yes you can do the same to connect to 10g
    By DBMS_JOB?. Yes you can do it in 10g and in addition, can improve it with DBMS_SCHEDULER
    Via OEM? Yes in can use Enterprise Manager to create a Job that runs the Script.

  • I was wondering how the advertised 10G multiple line plan that is running now is different from my current plan. Basically, why am I paying more now for 4G of data when Verizon is saying I can get 10 for the same price basically.

    NM

    Most of the advertisements running now are for Edge. You get discounts for having a smart phone on Edge based on the data package you have. What sucks is that most of the time they advertise a certain price for the monthly service and that is true but what they don't say is you add the Edge payments to that and most of the time it is around the same price as without Edge.
    If you think about this though, say you get a phone that is $24.99/month with Edge and you share 10GB which gives you a $25 discount, the phone is basically free and nothing is due at checkout. If you get a 2 year contract with that phone you pay the 2 year price of the phone and pay the same amount monthly.

  • I've tried to set up a new user on a mac book pro and i restarted it to create the new account but now all i can get is a white screen with the apple logo and the loading symbol what can i do ?

    i've tried to set up a new user on a mac book pro and i restarted it to create the new account but now all i can get is a white screen with the apple logo and the loading symbol what can i do ?

    Look at this support article:
    http://support.apple.com/kb/ts2570
    Ciao.

  • How to create transparent image at run-time?

    How to create transparent image at run-time? I mean I want to create a (new) transparent image1, then show other (loaded) transparent image2 to image1, then show image1 to a DC. The problem is - image1 has non-transparent background...

    i'm not sure, but you can set the alpha value to 0 in all pixels which are 'in' the background..
    greetz
    chris

  • Is it possible to create a thread and run it in background in nokia ??

    Is it possible to create a thread and run it in background in nokia series 40 mobile phones using j2me ??

    Probably a good question for ForumNokia. If you mean start up a thread and run in the background while your MIDlet UI does other things, then sure, why not. If you mean that you want to exit your MIDlet, but leave a thread running in the background, then I don't believe you can do this on series 40. S60 is another story since it supports multiple tasks.

Maybe you are looking for

  • Keynote will not open in Powerpoint for Mac 2011

    I followed all the instructions for saving the Keynote presentation for Powerpoint. But, when Powerpoint for Mac 2011 tries to open it, it will not open and gives me an error message indicating it needs repair; I click repair, it says there is someth

  • MRP Net Requirements calculation in External procurement Vs STO

    Hi gurus, Lets say I have a FG 1234 which has raw component 9999. Case1: Setting for 9999 is externally procured. I have a stock of 50 pc for 9999. I got order for 60 pc for FG 1234. so system will only create purchase reks for 10 pc of 9999 as it al

  • Prevent Jabber account from going idle

    I have a Jabber account that automatically goes Idle (yellow dot) after a certain amount of time. Is there a way to prevent this from happening? I've checked up and down in Messages > Preferences and can't seem to find an option to change this. Thank

  • De-activate AD user

    Hello All, Is there a setting (on shared services) to "Deactivate or Remove user" if User does not log on to any Hyperion products since specific period of time? Lets say, if User1 do not log on to Hyperion Financial Reports more than 30 or 60 days,

  • 2003 Service Pack/ I tunes

    I am not able to uninstall programs, or to update I tunes, am unable to change screen resolution and unable to download 2003 service pack 3(SP3). HELP. I am a teacher and have no money to fix this.