Forum Replies Created

  • Mats Jacobsson

    February 12, 2010 at 1:14 pm in reply to: Set transparency if color is white

    Ok, i figured out that the fourth array is the Alpha. I also tried [1,1,1,1] but still the same result

  • Mats Jacobsson

    June 30, 2009 at 9:06 pm in reply to: Add black head and tail on WMV

    I don’t think Episode is included anywhere either. With Avid you get Sorensen and With Adobe you get Adobe Media Encoder. Booth are good compression apps with batch-features. They do however miss the add head and tail-function I’d like to have. But to buy Episode just to get that function, when having two fully working compression apps might be a bit unnecessary, at least from my boss’s point of view. But I will try after his summer holiday.

    /M

  • Mats Jacobsson

    June 30, 2009 at 6:42 pm in reply to: Add black head and tail on WMV

    Oh, I missed the discount, and you’re right about the price. It’s just that I’m used to get one for free when we’re buying apps like Avid or an Adobe-package. I think I have to think about it and talk it over with my boss :).

    Thanks for your help!

    /M

  • Mats Jacobsson

    June 30, 2009 at 1:29 pm in reply to: Add black head and tail on WMV

    Thanks! The demo worked fine. It’s quite expensive, though.

    /M

  • Mats Jacobsson

    June 30, 2009 at 7:02 am in reply to: Recoginize file type with expressions?

    Wow, thanks a lot! Just what I needed.

    There was one small typo however, it should be (“.”) instead of [“.”] to work:

    mySplit = thisLayer.source.name.split(“.”); // split source name at “.” characters
    myExtension = mySplit[mySplit.length – 1]; // get everything to the right of the last “.”
    if (myExtension.toLowerCase() == “psd”){
    // it’s a psd file
    }else{
    // it’s not a psd file
    }

  • Mats Jacobsson

    May 30, 2008 at 5:34 pm in reply to: Replace footage –> Auto-scaling footage

    It’s been a while since this I posted my question, but here’s a solution that works fine for me. Hope it can help you too!

    /Mats

    ————————————-

    MaxWidth = 650; //Max width in pixels
    MaxHeight = 400; //Max height in pixels

    PixWidth = source.width;
    PixHeight = source.height;

    factor = MaxWidth / PixWidth;
    NewWidth = transform.scale[0] * factor;
    NewHeight = transform.scale[1] * factor;

    if(NewHeight >= MaxHeight) {
    faktor = MaxHeight / PixHeight;
    NewWidth = transform.scale[0] * factor;
    NewHeight = transform.scale[1] * factor;
    }

    [NewWidth,NewHeight]

    ——————————–

  • Mats Jacobsson

    May 30, 2008 at 5:23 pm in reply to: Get time from keyframe-position

    Thanks a lot! It worked just the way I wanted!

    /Mats

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy