Alpha channel basics from Canon 7D video

Maybe I'm missing something basic here, as I am pretty new to messing with alpha layers/channels on VIDEO. I otherwise have a pretty good understanding of alpha when it comes to animations, photos, etc.ffects
I am trying to make the black in a video of some flames into an alpha layer so I can use them as particles in After Effects.
( like in this video http://www.videocopilot.net/tutorial/green_smoke/ )
I understand the codec/format restrictions for alpha channels, but the problem is I can't seem to get the black to come out as an alpha layer at all.
I've tried Quicktime with the None codec and FLV and the other formats that are supposed to support alpha channels.
I THINK what's wrong is that the format that the Canon shoots in doesn't have an alpha channel natively so exporting the video into different formats is not having an effect. If this is the case, how does one go about making the black parts of a video into an alpha channel.
I know there are ways to make green into an alpha channel (greenscreening). I can't for the life of me figure out how to get premier OR aftereffects to recognize the straight black as an alpha layer though.
I've looked at some 30 tutorials trying to figure this out, but it would appear I am incapable of asking the right question to get the answer I want.
There's the export settings.
Perhaps someone can point out my gross missunderstanding of what I'm trying to do, or otherwise set me on the right track.
Below is a clip from within aftereffects... the arrow shows that the clip SHOULD have alpha properties... i think, but when I turn off the alpha channel EVERYTHING dissapears.
Do I need to d something in aftereffects?  I dunno, I'm lost.
If someone thinks they can help I am willing to make a youtube video showing what I'm doing.

awesome... exactly what I was looking for
you'd think when spending an hour or more asking the question "how do you add an alpha channel to a video" this would think this would come up
having a weird issue now with it rendering a box in the lower right hand corner though... it bugs me that I don't know why it's there... but i'll just crop it out
again... thank you!

Similar Messages

  • Alpha Channel Export from FCP?

    Hi all,
    I need to export video with the alpha channel embedded. The video is going to be used for Flash (.FLV). Is this possible to do from FCP6?

    Avid Codecs from their website, they are freely available for both Mac and PC and can work very well as an alpha channel capable compressed interchange format
    all of their codecs except Avid 1:1x support embedded alpha data, even their DV codec<
    Andy, having never used Avid (what's that?) I had no idea there was a DV codec that could carry an alpha. According to ancient writings by the ancient and venerable Philip Hodgetts (IIRC), "DV" has no capacity to do so, simply can't be done.
    Back to the OP, the Animation codec is universal on any NLE system but the issue of going to Flash is a bit more complicated by where you're going to be building the Flash. Further, no knowing what you know about Flash, creating alpha effects shots in FCP/Motion/LiveType won't gain you anything you can't do in some Flash assembly systems. Lots of posters we get about Flash innocently expect Animation to deliver compact files. It doesn't. And your flv won't be compact either once the video has been rasterized.
    bogiesan

  • Alpha Channel Problem from After Effects into FCP

    Hello
    Using After Effects I've masked out a figure in some footage so I can composite it into a timeline. When I import the new .mov I render out (using RGB + Alpha channels and Millions of Colours +) into FCP the figure is surrounded by a solid black background.
    I've repeated the process a few times and then tried importing the .mov into FCP on another computer. This actually worked, the channel became transparent and the mask was there. So this should mean there's something wrong with my version of FCP?
    I'm using After Effects 6.5 and FCP 5.0.1 on my Mac and FCP Studio 2 on the computer it worked on.
    Any help is greatly appreciated.

    Wait a second, there was a huge thread here a few weeks ago about bad alphas. The victims eventually (IIRCC) were forced to do a complete reinstall of EVERYTHING Tiger/Leopard and FCS2. It was an ugly shouting match and reinstalling/reverting to an earlier version of QT did not solve it for them. Check the revs of software on the two machines and compare them carefully.
    bogiesan

  • NSBitmapImageRep - how can I remove or reverse an alpha channel from tiff?

    Below is some code I cobbled together to save a square preview of an image. I am looking to figure out how to remove or inverse an alpha channel mask from a tiff image, and could really use some help....
    // I have been using 256.0 and 0.4 for the last 2 arguments, though feel free test with whatever.
    - (NSString *)savePreview: (NSString *)filePath: (NSString *)saveFilePath: (NSString *)previewSize: (NSString *)compressionRatio {
    NS_DURING
    NSAutoreleasePool *memoryPool = [[NSAutoreleasePool alloc] init];
    NSImage *myImage = [[NSImage alloc] initWithContentsOfFile: filePath];
    if (myImage == nil) {
    [myImage release];
    NSLog(@"! Error loading image");
    return @"! Error loading image";
    NSImageRep *myRep = [[myImage representations] objectAtIndex: 0];
    float hres = [myRep pixelsWide]/[myImage size].width;
    float vres = [myRep pixelsHigh]/[myImage size].height;
    float newWidth = [previewSize floatValue];
    float newHeight = newWidth;
    NSImage *thumbImage = [[NSImage alloc] initWithSize: NSMakeSize(newWidth, newHeight)];
    NSAffineTransform *at = [NSAffineTransform transform];
    [myImage setScalesWhenResized: YES];
    float heightFactor = newHeight/[myImage size].height;
    float widthFactor = newWidth/[myImage size].width;
    float scale;
    if(heightFactor > widthFactor) {
    scale = widthFactor;
    } else {
    scale = heightFactor;
    [at scaleBy: scale];
    [thumbImage lockFocus];
    [[NSGraphicsContext currentContext] setImageInterpolation: NSImageInterpolationHigh]; // NSImageInterpolationNone, NSImageInterpolationLow, NSImageInterpolationHigh
    [myImage setSize: [at transformSize: [myImage size]]];
    [myImage compositeToPoint: NSMakePoint((newWidth-[myImage size].width)/2 , (newHeight-[myImage size].height)/2) operation: NSCompositeCopy];
    NSBitmapImageRep *bitmapImageRep = [[NSBitmapImageRep alloc] initWithFocusedViewRect: NSMakeRect(0, 0, [thumbImage size].width, [thumbImage size].height)];
    [thumbImage unlockFocus];
    [myImage release];
    [thumbImage release];
    NSData *bitmapData = nil;
    NSNumber *factor = [NSNumber numberWithFloat: [compressionRatio floatValue]]; // The compression factor. Used only for JPEG files. The value is a float between 0.0 and 1.0, with 0.0 being the lowest and 1.0 being the highest. It’s set when reading in and used when writing out.
    NSDictionary *props = [NSDictionary dictionaryWithObject: factor forKey: NSImageCompressionFactor];
    bitmapData = [bitmapImageRep representationUsingType: NSJPEGFileType properties: props];
    [bitmapData writeToFile: saveFilePath atomically: YES];
    [bitmapImageRep release];
    [memoryPool release];
    return @"YES";
    NS_HANDLER
    NSLog(@"Exception occured : %@", localException);
    return @"NO";
    NS_ENDHANDLER
    }

    <bump>

  • How to assign a layer as a output (Encode) alpha channel

    Hi
    In Adobe Premier or After Effects is there a way to assign a layer to be seen as a alpha channel on outputting (encoding) the completed project?
    for examples.... I have about 6 video files all built up on top of each other (video 1, Video 2... and so on). The final layer (Video 7) I then import a PNG file with alpha to show the videos below where I want exactly. The black area (non transparent) area of my layer 7 I want to be seen as my alpha channel in my 3rd party video software after I have outputted (encoded) my video file.
    Hope that makes thanks
    Thanks
    Craig

    Hi
    In Adobe Premier or After Effects is there a way to assign a layer to be seen as a alpha channel on outputting (encoding) the completed project?
    for examples.... I have about 6 video files all built up on top of each other (video 1, Video 2... and so on). The final layer (Video 7) I then import a PNG file with alpha to show the videos below where I want exactly. The black area (non transparent) area of my layer 7 I want to be seen as my alpha channel in my 3rd party video software after I have outputted (encoded) my video file.
    Hope that makes thanks
    Thanks
    Craig

  • Clipping Path vs Alpha Channel

    Not sure if this is the right place to ask, but wondering which is better for outlined images (no soft transitions, just hard outline.)
    I've used both and don't see an advantage to either EXCEPT when converting an InDesign file to PDF. Files with PSDs with clipping paths seem to make much larger pdfs than same file using PSD with alpha channel. Not important for a final press file, but when I have to email screen proofs, then it's a big deal.
    Anyone care to weigh in? Thanks.
    Ringo

    Hi, there,
    I found this discussion during a search for alpha channels vs. clipping paths for clipping (for a job I'm working on), and thought I'd offer my own feedback based on my own experiences w/ similar files. I can't really offer a printer perspective, however, although we do work closely with many and also print film fairly regularly for local printers who are not yet Direct-To-Plate.
    For what it's worth, I use paths, myself, and save the file as a TIFF. Then I use the Object: Clipping Path menu in InDesign to select the path (I don't specifically designate a path as an actual clipping path in Photoshop anymore, as sometimes an image will have more than one path to isolate different elements).
    I find that alpha channels don't look very good when used in InDesign. They're just not that smooth/precise, in my admittedly limited use.
    I've uploaded a quick sample to http://i486.photobucket.com/albums/rr222/Xiebinrui/Alpha_vs_Clipping.jpg -- it's pretty self-explanatory, but the left side shows the bottom of an image using an alpha channel created from the original clipping path (cmd-click on the path to create a selection and then click the "create channel" button in the Channels tab, which automatically creates an "Alpha 1" channel), with the original clipped version on the right. I've tried adjusting the threshold and tolerance in InDesign, but it just always looks bad.
    I also haven't used the behemoth Photoshop EPS format since my QuarkXPress/Mac OS 9 days (even then, it eventually became possible to use TIFFs w/ clipping paths -- I could finally see my photo correctly instead of with the horrible Quark EPS preview).
    Anyway, re: alpha channels, maybe it's just that I don't know the right way to use them, but they don't seem to be very smooth when importing into InDesign (I was working on a job yesterday and today for which I had to download hi-res images from the client -- many of which used alpha channels instead of actual paths, but they're used on white backgrounds in InDesign, so I just didn't use the channels).
    So, anyway, I personally use and recommend paths (vector masks, as Artdirectorringo mentioned, seem to work fine, too) as opposed to standard pixel-based alpha channels, in general, if you're going to be placing the file into InDesign.

  • Using video with alpha channel

    I purchased a video clip from istock, the video clip is an .mov and has a alpha channel included.  The video clip is santa clause over a black background and tagged at the end is a white solid of the video (I assume this is the alpha channel)  How do I use the alpha channel to help key out the vidoe clip that I need.  here is a link to the actual video clip I purchased. http://www.istockphoto.com/stock-video-11011749-santa-claus-with-alpha-channel-ntsc.php
    Thanks Ja

    As Szalam said, the b/w image can be used as a luma matte.
    Also check if the actual piece of footage has an embedded alpha channel, i.e when you import it AE should know there is an alpha channel and let you know in the top of the project window when you select the element (or "interpret footage").
    Alternatively just drag the footage to a comp and enable the checkerboard background to see if there is transparency.  These three approaches are the same...just different ways of finding out about the alpha channel.

  • Copying an alpha channel from one comp to another?

    I've created a green screen key using Primatte in one comp, and I want to use that same key in another comp, but where the background has since been replaced and rendered out with an effect I want to keep on the foreground subject. I bet it's something simple...
    Actually I bet that explanantion's confusing.
    Subject X is against green in a video in comp A.
    X was extracted using a key and rendered with an effect and a new background to creat video B.
    I want to extract subject X from B (and keep the new effect) using the alpha channel created in comp A.
    So how do I copy and paste the alpha channel from comp A to a new comp with video B in it?
    Cheers! 

    Pre-compose, use as a matte layer.
    Mylenium

  • Best Codec for exporting animations with alpha channel from FCP timeline

    Whats the best codec for exporting animations (hopefully using loseless compression) that will retain alpha channel, and use the current sequence settings for fps and size?
    Currently Im exporting image sequences, but I'd prefer a wrapper.. I don't know much about the 'Animation' export codec.. I did notice that set to current size had some funky value of 753x450 or something.. instead of my current project size of 1920x1080...
    Anyhow.. Just seeing what others are doing..
    basically Im reading out some titles that I'll end up dropping over video later.. but since they render out so slowly (**** lower 3rds is slow) Im trying to get a jump on the process..
    Tx..

    PNG should do it. I think PNG is lossless (that's what they say, anyway). But realistically, if you use PNG, Animation, or JPG2000 set on highest quality, I'd dare you to tell a difference.
    I use PNG because it's supposedly lossless, renders twice as fast as Animation in a FCP timeline, and is usually about half the size.
    If you use "Export Using Quicktime Conversion", you will need to check all of the settings manually to make sure they match your sequence settings. This is always true, no matter what codec you use.
    If that sounds risky, your other option is to go into your sequence settings and change the codec to the one you want to render to (this will probably turn your whole timeline red), and then choose Export -> Quicktime movie.

  • Video with alpha channel causing frame size distortion

    I have a lower-third which I built in AE. The content only occupies about 2/3 the width of the frame however I made sure I exported it at the full frame size as the rest of the video in my Premiere project. Also, I exported it as a quicktime movie with PNG settings to incl. the alpha channel.
    When I import it into Premiere CS4, I drop it in on the Video 2 layer over Video 1 which is the main VT and in the preview, it all seems to be appearing as you'd expect. If I hit enter to start rendering, when it finishes I find that the lower third has been stretched the full width of the frame and additionally, Video 1 has been stretched too. I know there's an option in Preferences > General to default everything to the frame size of the sequence but having that tickbox on or off doesn't make any difference.
    Does anyone have any ideas what's causing it?

    Windows. Alas neither of those options worked. In the end, it was terribly convoluted but I had to export the footage from Premiere without a graphics, then import the video into After Effects and layer my comp over it - then export the final version from AE rather than Premiere. It seemed a very back-to-front way of doing things but if it works...

  • Alpha channel video makes for a larger-than-target bitrate flv

    I'm looking for some information regarding the final bitrate of alpha channel encoded video. We are producing transparent flvs. When targeting a number, say 200kbps, in Adobe Media Encoder, the final encoded flvs has a bitrate of sometimes as high as 350kbps or 400kbps. And that's just the video.
    When I encode without the alpha channel with final flv video bitrate is basically exactly what I targeted.
    I'm assuming GSpot and MediaInfo to look at the final flvs. 
    Why doesn't Media Encoder produce and flv at the target bitrate? Why the higher bitrate? Is there a way to set the final target for an flv? Is there better software?
    Thanks,

    Since the lounge is for non-technical discussions, you need to start at
    http://forums.adobe.com/community/premiere and select the forum for the product you are using
    I will GUESS you are using some flavor of Premiere Pro, so that is most likely where you should post

  • How come AE cannot interpret Alpha Channel from ProRes4444 ?

    Hi there,
    I exported a video clip using Final Cut Pro X with alpha channel using the ProRes4444 codec.
    I have tested his alpha channel works & it works in FInal Cut Pro X when I import it back to Final Cut Pro X to test it.
    However, when I bring this file to After Effects CS5, it cannot recognize the alpha channel because the transparent part are all in solid black.
    How do I make AE interpret the ProRes4444 file as transparent with alpha channel ?
    Thanks

    Rick Gerard wrote:
    ryan_khoo wrote:
    Q1. But how do I check the file interpretation in AE ?
    Q2. I am using AE CS5. Is it bcos you are using AE CS5.5 that you never have problem with ProRes4444 ?
    Q1. This is part of the basics. Select the file you want to interpret in the Project Panel then either right click or go to the menu File>Interpret Footage>Main or use the keyboard shortcut Alt/Option + Ctrl/Cmnd + G
    Q2. Nope... It's always worked. There were some gamma problems for a while, and a few other bugs here and there with ProRez, but if you're Mac is up to date you should have no problems with the alpha channel.
    Thanks Rick for your help, I really appreciate it as I am not quite familiar with AE.
    Q1. I did the steps you taught me & a new screen pop out. But under the "Main Options" tab, the section under Alpha, there are 4 choices (Ignore, Straight-Unmatted, Premutliplied-Matted with color, Invert Alpha). But all these was all greyed out. Any idea why ?
    Q2. I am using Mac & I just checked my AE CS5 is Version 10.0. I am a student and i bought the Student Edition. Student Edition not allowed to update, right ?
    Thanks

  • Motion tile a video with an alpha channel

    Hi!
    I'm trying to use the motion tile effect to fill transparent edges that are the result of stabilization with the prodad mercalli plugin. The problem is however that because the stabilization hasn't been done using keyframe movement in AE, it sees the transparent edges as part of the frame and applies the motion tile so that the transparent areas stay intact. In other words the motion tile effect doesn't see that the image is moving around because only the alpha channel is changing.
    Is there any smart ways to solve this problem in AE so that I can apply the motion tile effect to get rid of the alpha transparency around the edges of the stabilized footage?
    Any help will be appreciated!

    Hi and thank you for helping out!
    Unfortunately I didn't get this to work with shift channels. I'm not sure what you meant by separating the components? I put shift channels on the videoclip and told it to use alpha from the video of the alpha.
    Actually I'm a bit confused on why shift channels should help. The way I see it, the problem is that the "motion tile" effect is seeing the "whole" pixel dimension of the video that also includes the alpha channel and is applying itself to the whole frame instead of just the opaque area (the actual stabilized  video). Because of that the motion tile effect is tiling the whole frame, including the alpha of it which leaves transparent gaps between the two tiles.
    Maybe there was a miscommunication between us or should I just try the shift channels effect again? If that's the case, then could you explain what you mean by separating components?
    Thank you very much!

  • Captivate and Alpha channel video insertion black background

    I have been trying in vain to insert a green screen video into a Captivate presentation. I used Serif MovieMaker5 to export the video as a ".mov" with the chroma key as a transparency. It works great if I want to overlay the .mov format file over another video in other SW platforms, but when I run it through the "Adobe Media Encoder" (AME), the background ends up black. Importing it into Captivate just ends up with a black box containing the subject of the video on top of the slide.
    I think I've tried every setting in the AME with no luck.
    I've seen this problem elswhere on Adobe forums, but I haven't seen a solution. Why the black background after encoding with the AME, and is there a setting I have missed? Do I need to start from a different format...say .AVI, but the output doesn't give me an option for a transparent or alpha output. The problem seens to be with the AME, but I don't know for sure.
    Any ideas? I'm using Captivate 5 and the Serif, MovieMaker 5 editing SW. The output seems to work everywhere in the ".mov" format, but not when converted to .f4v by the AME

    I actually solved the problem by trying to use the Adobe Media Encoder (AME) on CS3. CS3 only codes in ".flv." It worked fine! I also noticed in CS3 that there was a check box for including an "alpha channel." I could not find one in AME CS5, but there was an "exclude Alpha" box. So I looked, and I see that the AME CS5 was exporting the file as ".f4V." For some reason, my installation defaults to .f4v, and it never occured to me to change to a ".FLV" output. When I did, a box to "include Alpha" appeared, and the video works just fine.
    One of the issues was that the format was listed as "FLV/F4V" on the "Source" screen. I just assumed that, since FLV was first, that would be the default output. I never looked at the suffix of the converted file. Shame on me! I was also surprised that the default was F4V, since FLV is more common, and F4V is supposed to be an improved version.
    CP GURU Wrote: I don't know "Serif MoveMaker", but isn't it possible to export to FLV / F4V directly instead of .mov? I normally use Adobe Premier or Adobe After Effects and here I can export an FLV/F4V with an alpha channel that works well in Captivate.
    Unfortunately, the Serif MovieMaker SW does not output to "Flash." It's one of the better of the "inexpensive" video editing SW offerings. Since I am only making short training courses, quality isn't a big concern. The big thing is that it be easy, and have chroma key capabilities. It is, and does, and I'm happy with it. I would love to have "Adobe After Effects" (AAE), but the cost can't be justified. I am seriously thinking about a cloud subscription, but the eLearning suite is not included, and I'd rather spend my limited budget on upgrading to eLearning CS6.
    Thanks for everyones help!!!!!!!!!!
    Bob

  • Drop Zones: Video and Alpha Channels

    Is it possible to create a drop zone where the asset is a video clip that contains transparency by way of an alpha channel such that portions of the video allow for the background image to show through?
    I am familiar with setting up drop zones and custom shapes and I have used static images with transparency, but I've never done the same with video.
    I am away from my system right now or I could test this myself. Thanks in advance for the help!

    hi
    depending on how complicated your shot is, you may be able to get away with simply placing the image within the frame on top of the background shot. Then resize down to fit. You may then need to tweak its corners using the corner pin tool to get it to sit in the right perspective plane. You may find you need to soften the edges of the top layer image so its not so sharp and hard. For this you probably would need to add a mask and soften its edges. Then you might need to add some noise and/or colour correction to make it sit naturally with the background image. and finally if there are any shadows cast over the picture frame you will need to add them back over the new image. You can use a black shape, with its opacity cranked down with a blur filter on it.
    The manual describes all of these process pretty well.
    hth
    adam

Maybe you are looking for

  • First time user of Time Machine.  Have some questions....

    To All, Sorry for starting another thread as I could not find the answers I was looking for in other threads. Basically I have been on a Mac (iMac) for about a year, and I wanted to start using the Time Machine utility to back up my iMac to my extern

  • Video podcast is showing in the store; downloading but not playing

    Dear Podcast Owner The podcast located at the URL shown below has been blocked or removed from the iTunes directory as a result of technical problems with the feed. If you wish to reactivate your podcast in the iTunes directory, please troubleshoot y

  • Office 365 directory sync disable stuck on pending

    I have a situation where I have setup directory sync with the on premise AD and Office 365. I have now tried to disable directory sync and is has been a week and it still says: Active Directory synchronization is being deactivated. This process may t

  • M10 - sharing files in network

    is there a setting I need to change in the valet system or is this a windows setting change only ?  I am wanting to share files between the 2 pc on the valet network AND  a wired printer connected to the main pc with the 2nd pc . Possible ? yes/ no T

  • Customizing of a WD application

    Hi experts, I am offering an application containing a power list (POWL) which displays some data and offers a set of actions to be executed on each selected table row. The action execution can be in a synchronous or asynchronous mode. We want to offe