Need Transparent background for video created from Photoshop Imageready

I created a
a man in imageready walking across the screen with a transparent background. I exported as an .mov like I normally do and converted to a
n F4v. But when placed in ID, the video displays with a black BG. Can anyone help? thanks

to get the transparent effect, you actually code it into the
surrounding .html using "wmode=transparent" Google that and you
should fine a tutorial. Remember that when you actually put in
wmode and its value that you need to paste it in there twice (just
like all the other tags that are already there).

Similar Messages

  • Want to create an oval vignette in photoshop elements 10 with transparent background for printing w

    I am fairly new to PSE and I want to create an oval vignette in Photoshop Elements 10 with transparent background for printing on white paper using MS Publisher. Using the white background on inverse selection makes a slight line impression and either it should have a defined "frame" or nothing.
    Appreciate any guidance.

    Try with the Elliptical marquee tool:
    On the tool's option bar set feather 25-40 px (experiment)
    Drag out the Ellipse to embrace the object
    Go to Layer>new>layer via copy, or CTRL+J
    Your selection should fade out as a vignette and be surrounded by transparency
    Save this layer via File>save for web, select PNG-24, and tick "Transparency"

  • How to make a transparent background for logo

    I've tried creating a transparent backgound for a logo in Photoshop CS4 in numerous ways such as saving the file as a png and using the magic wand (text resolution was very poor) but neither worked. My logo has text and an image.
    Any ideas?
    Thanks.

    I saved the file as a png and the background was not transparent--that is, it retained the white background. Please see the attached image for the pgn settings. In additon to a low resolution web version, I need to save a high resolution version for print.

  • Transparent background for an accordion in Captivate 6

    How do I remove the background and the shadow from an accordion on interactions? I need a transparent background for an accordion.
    P.S.: I'm not interested in purchasing the version 7, I believe that such a basic thing as this must have been provided for version 6.

    It is not possible, neither in Captivate 7. You take or leave the interactions as they are.

  • FramePosicioningControl for processor created from list of images

    Hi,
    I need to create a FramePositioningControl for processor created from a list of bufferedimages.
    I 've followed the instructions in the next code:
    http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/JpegImagesToMovie.html and
    http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/Cut.html
    First thing i do is create a source stream for the list of bufferedimage: SourceStream class.
    Then i created a data source that contains an instance of SourceStream: ListImageDataSource class
    Finally i created a processor using an instance of ListImageDataSource.
    I get the next error when i try to create FramePositioningControl control for that processor:
    The processor does not support FramePositioningControl.
    The example program is the next. Its a little long but easily understandable.
    I test my program with a video file and it works but when i try test it from a list of images i get the error.
    Can it be because format chosen of every image? i use RGB but i dont know if that is correct
    I need to have a method called getFrame(int index) that returns the frame at the specified index.
    If a processor doesnt support framepositioningcontrol when it is created from a list of image, can i use a interface (seekable or other) to do that?
    import java.awt.Dimension;
    import java.awt.image.BufferedImage;
    import java.io.IOException;
    import java.util.Vector;
    import java.net.*;
    import java.io.*;
    import javax.imageio.*;
    import com.sun.image.codec.jpeg.JPEGCodec;
    import com.sun.image.codec.jpeg.JPEGImageEncoder;
    import javax.media.Buffer;
    import javax.media.ConfigureCompleteEvent;
    import javax.media.ControllerEvent;
    import javax.media.ControllerListener;
    import javax.media.EndOfMediaEvent;
    import javax.media.Format;
    import javax.media.Manager;
    import javax.media.PrefetchCompleteEvent;
    import javax.media.Processor;
    import javax.media.RealizeCompleteEvent;
    import javax.media.ResourceUnavailableEvent;
    import javax.media.Time;
    import javax.media.control.FrameGrabbingControl;
    import javax.media.control.FramePositioningControl;
    import javax.media.control.TrackControl;
    import javax.media.format.VideoFormat;
    import javax.media.protocol.ContentDescriptor;
    import javax.media.protocol.PullBufferDataSource;
    import javax.media.protocol.PullBufferStream;
    public class PositionableVideo implements ControllerListener{
         Processor p = null;
         Object waitSync = new Object();
        boolean stateTransitionOK = true;
        int width = 0;
        int height = 0;
        FramePositioningControl fpc = null;
        FrameGrabbingControl fgc = null;
        int totalFrames = 0;
        ListImageDataSource ids = null;
        public static void main(String args[]){
             String [] images = {"http://farm3.static.flickr.com/2084/2068533005_87b8b15914_m.jpg",
                       "http://farm1.static.flickr.com/158/336360357_3a183e2e61_m.jpg"};
             Vector<BufferedImage> bivector = new Vector<BufferedImage>(images.length);
             for(int i = 0; i < images.length; i++){
                  System.out.println("Reading image: "+(i+1)+"/"+images.length);
                  try{
                       URL url = new URL(images);
                   bivector.add(ImageIO.read(url));
              }catch(Exception e){
                   System.err.println("Error loading images: "+e);
         System.out.println("Images read");
         PositionableVideo pv = new PositionableVideo(bivector, 25);
         pv.getClass();
    public PositionableVideo(Vector<BufferedImage> images, int frameRate) throws NullPointerException{
              if(images != null){
                   ids = new ListImageDataSource(images, frameRate);
              if(!open(ids)){ return; }
              System.out.println("JMFVideo created");
              else{
                   throw new NullPointerException();
         private boolean open(ListImageDataSource ids){
              try {
              p = Manager.createProcessor(ids);
              } catch (Exception e) {
              System.err.println("Cannot create a processor from the data source");
              return false;
              p.addControllerListener(this);
              p.configure();
              if (!waitForState(p.Configured)) {
              System.err.println("Failed to configure the processor");
              return false;
              // p.setContentDescriptor(null);
              // Query for the processor for supported formats.
              // Then set it on the processor.
              /*TrackControl tcs[] = p.getTrackControls();
              Format f[] = tcs[0].getSupportedFormats();
              for(int i = 0; i <tcs.length; i++){
                   Format fc[] = tcs[i].getSupportedFormats();
              if (f == null || f.length <= 0) {
              System.err.println("The mux does not support the input format: " + tcs[0].getFormat());
              return false;
              tcs[0].setFormat(f[0]);
              System.out.println("Setting the track format to: " + f[0]);
              // Put the Processor into realized state.
              p.realize();
              if (!waitForState(p.Realized)) {
              System.err.println("Failed to realize the processor");
              return false;
              // Prefetch the processor.
              p.prefetch();
              if (!waitForState(p.Prefetched)) {
              System.err.println("Failed to prefetch the processor");
              return false;
              System.out.println("start processing...");
              // OK, we can now start the actual transcoding.
              p.start();          
              //wait to images are ready: try{Thread.sleep(3000);}catch(Exception e){}
              // Create a frame positioner.
              fpc = (FramePositioningControl) p.getControl("javax.media.control.FramePositioningControl");
              if (fpc == null) {
              System.err.println("The processor does not support FramePositioningControl");
              return false;
              // Create a frame grabber.
              fgc = (FrameGrabbingControl) p.getControl("javax.media.control.FrameGrabbingControl");
              if (fgc == null) {
              System.err.println("The processor does not support FrameGrabbingControl");
              return false;
              return true;
         private boolean waitForState(int state) {
              synchronized (waitSync) {
              try {
                   while (p.getState() != state && stateTransitionOK)
                   waitSync.wait();
              } catch (Exception e) {}
              return stateTransitionOK;
         public void controllerUpdate(ControllerEvent evt) {
              if (evt instanceof ConfigureCompleteEvent ||
              evt instanceof RealizeCompleteEvent ||
              evt instanceof PrefetchCompleteEvent) {
              synchronized (waitSync) {
                   stateTransitionOK = true;
                   waitSync.notifyAll();
              } else if (evt instanceof ResourceUnavailableEvent) {
              synchronized (waitSync) {
                   stateTransitionOK = false;
                   waitSync.notifyAll();
              } else if (evt instanceof EndOfMediaEvent) {
              p.close();
              System.exit(0);
         class ListImageDataSource extends PullBufferDataSource{
    SourceStream streams[] = null;
    Time duration = null;
    public ListImageDataSource(Vector<BufferedImage> images, int frameRate) throws NullPointerException{
              if(images != null){
                   streams = new SourceStream[1];
              streams[0] = new SourceStream(images, frameRate);
              duration = new Time( ((double) images.size() / frameRate) ); //seconds
              else{
                   throw new NullPointerException();
         public PullBufferStream[] getStreams() { return streams; }
         public void connect(){}
         public void disconnect(){}
         public void start(){}
         public void stop(){}
         //Content type is of RAW since we are sending buffers of video frames without a container format
         public String getContentType() { return ContentDescriptor.RAW; }
         public Time getDuration(){ return duration; }
         public Object[] getControls() { return new Object[0]; }
         public Object getControl(String type) { return null; }
         class SourceStream implements PullBufferStream {
         Vector <BufferedImage> images;
              int width, height;
              VideoFormat format;
              int frameRate;
              int nextImage = 0;     // index of the next image to be read.
              boolean ended = false;
              public SourceStream(Vector <BufferedImage> images, int frameRate) {
              this.width = images.get(0).getWidth();
              this.height = images.get(0).getHeight();
              this.frameRate = frameRate;
              this.images = images;
              format = new VideoFormat(VideoFormat.RGB, new Dimension(width, height),
                        Format.NOT_SPECIFIED, Format.intArray, (float) frameRate);
              public boolean willReadBlock() { return false; }
              public int getFrameRate() { return frameRate; }
              public void read(Buffer buf) throws IOException {
              if (nextImage >= images.size()) { // Check if we've finished all the frames.
                   buf.setEOM(true);
                   buf.setOffset(0);
                   buf.setLength(0);
                   ended = true;
                   return;
              Object data = buf.getData();
              int maxDataLength = width * height * 3;
              // Check to see the given buffer is big enough for the frame.
              if (data == null || !(data.getClass() == Format.intArray) ||
    ((int[]) data).length < maxDataLength) {
                   data = new int[maxDataLength];
                   buf.setData(data);
              BufferedImage bi = images.get(nextImage);
              bi.getRGB(0, 0, width, height, (int[]) data, 0, width);          
              Save every image. It works
              try{
              OutputStream salida = new FileOutputStream( "frame"+data.toString()+".jpeg" );
              JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder( salida );
              encoder.encode(bi);
              salida.close();
              } catch(IOException e){}
              buf.setOffset(0);
              buf.setLength(maxDataLength);
              buf.setFormat(format);
              buf.setFlags(buf.getFlags() | buf.FLAG_KEY_FRAME);
    buf.setSequenceNumber(nextImage);
              buf.setTimeStamp( (long) (nextImage * (1000 / frameRate) * 1000000) );
              nextImage++;          
              public ContentDescriptor getContentDescriptor() {
              return new ContentDescriptor(ContentDescriptor.RAW);
              public Format getFormat() { return format; }
              public long getContentLength() { return 0; }
              public boolean endOfStream() { return ended; }
              public Object[] getControls() { return new Object[0]; }
              public Object getControl(String type) { return null; }
    Thanks so much                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Thanks.
    I found a way of doing it by creating a view and calling it recursively everytime a user swipes

  • Transparent background for png sequences

    I have a 30 sec cube rotating with transparent background in After effect cs 5-5.. But I am getting png sequence with Black ground. How to get Transparent background in png sequence ?

    Thank you Barsik.. In after effect cs 4 I was geeting Transparent background for png sequence but in after effect cs 5-5 I was geeting Black Background and this was creating problem in premiere..

  • Use Videos Created in Photoshop within After Effects - Possible?

    Hello, newbie here. Can i use create video files in Photoshop CC and then import them in After Effects CC as video files?
    I create video files in Photoshop CC using Photoshop CC's timeline* and save the video project in Photoshop as TIFF or PSD.
    When i import these TIFFs oder PSDs to After Effects, they will only appear as still images, whatever settings i use on import (footage vs. layers). I don't see how to have the TIFFs or PSDs playing in After Effects as a video.
    Is it even possible to bring a video project from Photoshop to AE as video and not as a still image?
    I understand that the alternative would be to render the Photoshop video as MP4 and bring that MP4 into After Effects. I would prefer to avoid the MP4 route though.
    Thanks!

    Dave, thanks - i import now the PSD file as "Sequence" and as "Composition - Retain Layer Size" and then i click "Create new Composition from Selection".
    Then i get a timeline which shows the correct running time of the video created in Photoshop. All the layers and tracks are there. I also see either an image from the video or a black screen.
    But i cannot play it. I can't see different frames of the video - neither by dragging the timeline marker nor by clicking "Play/Pause".
    That's certainly an awkward newbie problem - seeing your video, but not able to even play it. But i even watched through the full length of three extremely detailed Adobe/Lynda video tutorials (on the official Adobe site) and didn't get closer to an answer why the video doesn't play in AE.
    I have to admit that on importing i get a Quicktime error message. I also studied the official Adobe page regarding that error message and didn't understand it. But i know that when i 'had* Quicktime installed previously, it ruined my system and my mood.
    So if you have any quick hint, that would be great. Thanks!

  • Importing a video layer from photoshop cs5 to after effects cs5

    hi - you guys were so brilliant and prompt on answering my last question. thankyou
    i did have another i needed help with -
    is it possible to bring in a video layer from photoshop cs5 to after effects cs5 - i tried but it said "the photoshop library operation failed because the file is not compatible with this version of photoshop"
    thanks again

    In the import dialog box, uncheck the Photoshop Sequence option.
    The problem is the number on the end of your file name.  When After Effects sees a number there, and there are other files in that directory with the same name and a number, it thinks the images are part of a sequence and will enable that checkbox.
    More info here: Import a single still image or a still-image sequence

  • BADI BBP_CREATE_BE_PO_NEW  for PO created from Bid.

    Hi gurus.
    Iu2019m working in classic scenario, and I need to change PO data before to create the PO in ECC.
    When we create a PO form SC we can change data in BADI BBP_CREATE_BE_PO_NEW (methods FILL_PO_INTERFACE and FILL_PO_INTERFACE1) without problem. But when we create a PO from a BID the BADI doesnu2019t work.
    If we fix a break-point the system stop for PO created from SC, but doesnu2019t stop for PO from Bid.
    Any suggest?
    Thanks and regards.
    Raúl.

    What you can try is to use the BBP_DOC_CHANGE_BADI for BID: when price is 0: clear IR_IND (invoice expected) and GR_IND (goods receipt expected) on item level. Be prepared for SRM putting back those indicators though (SRM gets these from the vendor details).
    The badi you mentioned in your first post should be the one you have to use as you are in classic mode. I would raise an OSS note because the way you use the badi is correct - it should be called and if it doesn't SAP has to provide a solution.
    Maybe there is a user-exit in ECC in the function module that creates the order (BAPI_PO_CREATE1) as a (hopefully temporary) work around.
    Regards,
    Robin

  • Incorrect and Un-Changeable 'Video Kind' for Videos Purchased From iTMS

    Since I can't seem to find any other way to contact Apple except through paid support channels, their suggestion is to post something here. Hopefully this re-wording of other posts I've read will shed more light on the problem.
    To Apple:
    Some videos purchased from the iTunes music store have an incorrect 'Video Kind' which means they are sorted incorrectly in iTunes using Apple's new interface in version 7.
    Old Battlestar Galactica episodes have a 'Video Kind' of 'Movie' instead of 'TV Show', so they don't appear in the iTunes smart category as TV shows. They appear in 'Movies', and they shouldn't.
    The field for these files is locked/ghosted/unchangeable, I'm assuming because of ridiculous DRM requirements or an oversight. But you are enforcing rules which cause your program to incorrectly sort files, and not allowing your customers to fix the problem.
    I want all my TV shows to list in your 'TV Shows' top category, but I can't change the 'Video Kind' for those files (bought via the iTunes music store). I have expected this problem to work itself out in the last few iTunes updates, but it hasn't yet. And there are many threads about this in your discussion forums.
    Please unlock the 'Video Kind' field in iTunes for videos downloaded from the iTunes music store (Prison Break Season 1, Battlestar Galactica, The Office Season 1, Surface, etc), or give us some kind of utility that will allow us to correct the mis-categorization.
    Thank you!
    -Tony

    I quite agree. I'm not sure how much attention, if any, the iTunes dev. team pay to these groups however. The formal feedback route is via iTunes Feedback, where sadly, I suspect, not much attention is paid either.
    tt2

  • Turn off transparent background for reading in Adobe Reader X 10.1

    Up until yesterday, I did not see a transparent background for all things in Adobe Reader X 10.1.  This makes for very annoying reading.  How do I turn off the transparent background?  Any help is greatly appreciated. Thanks!

    If you're talking about the transparency grid, check the following user preference: Edit > Preferences > Page Display > Page Content and Information > Show transparency grid

  • Transparent Background for Icon Titles in panel2

    right now I use XFCE4 and I read this section
    https://wiki.archlinux.org/index.php/Xf … con_Titles
    this way for desktop icons ,but  i want Transparent Background for Icon Titles in panel 2
    my icons in panel 2 has white backkground and border ,I want have only icons without white background and border

    henk wrote:According to this topic it is something that can be
    adjusted within the used theme itself.
    Check your /home/<your username>/.themes/<theme>/gtk-*/gtkrc
    thanks,
    I check above link before ,but that post in xfce formus do not solve my problem,
    Last edited by mfaridi (2013-07-21 10:32:02)

  • What are the naming conventions used for aggregates created from Query?

    What are the naming conventions used for aggregates created from Query?

    Hi Reddy,
    As you know aggregates are baby cubes right.
    Aggregate names by default system has given as 6 digit number like 100831 but write the description by yourself.
    Here you have to remember fact table is created with the name
    like for ex: /BIC/F100831.
    while creating aggregates you can observe all options carefully till complete the creation process then after I am sure about
    your can get idea .
    If problem still persists with you let me know the same until
    get out of that.
    else assign points if this is sufficient.
    Thanks,
    Ramki

  • How do I create a transparent watermark for video from a white background logo in AI CC?

    If I have a .PNG logo with a white background, how do I create a transparent watermark to use in video and photo content using Illustrator CC? Whenever I import the logo, it opens a new window without a transparent background. Thank you!

    It's fairly easy if you know Ai. (Image trace is okay, but I'd recommend making your own (the right way), then use any Adobe pro video app to composite on your video, no need to export, just use the .Ai file)
    But an easier way might be to use the .png by itself if it carries an alpha channel.
    After Effects, PremierePro, and possibly AME will let you do this.
    QT7 will also allow you to do it.
    You could create a logo in Draw, then send it to Illustrator or Photoshop (it carries an alpha channel - bonus!)

  • Rendering transparent background for website video

    I have a comp for a website that I'm doing.
    I have a transparent background and some fading in WHITE text with a light ray animated behind it.
    I have followed instructions on how to render with the transparency intact (Quicktime, PNG, RGB+Alpha, Millions of Colors+).  When I render it out and watch it in Quicktime, the light ray isn't correct and there's no transparency.  Same thing with Final Cut Pro. 
    When I bring the footage back into AE, the transparency is there so I'm assuming that the transparency is there but QT & FC just don't play transparency files.
    I need the transparency bc I want the text to reveal over a background picture I have in my webpage design.
    Is there anyway to get this done right?  I need the file to NOT be 300+ megabytes and when I drag the clip into COMPRESSOR to make it smaller, nothing is showing on the preview screen.  I've been doing some research but haven't found anything to make it work correctly.
    Can someone help me with this?
    In the end, what I'm attempting to do is add the QT video into my iWeb page and have it play. I'm not a coder so I don't know how to make this happen any other way than making a QT movie and then adding it iWeb.
    thanks in advance.

    The only video format that supports transparency in a web browser is a flash player. That really doesn't fully support transparency either. The QuickTime player or any other video player will never ever support transparency in a web browser. Your project design is flawed from the outset. Another words you cannot do what you are trying to do using QuickTime. You will have to redesign for flash. If you redesign with flash, then you will not have a mobile compatible application.
    I don't have much of an explanation of what you are trying to accomplish with your project so I can't give you more pointers than that. Point us to a website that has the features you are trying to implement on your webpage and maybe we can give you some ideas but After Effects is not where you should be looking.

Maybe you are looking for