Animation with .png files - from Maya 3D

I need to import an 3-second animated sequence (created in Maya 3D by someone else) into FCP Studio sequence.
I have been given a folder with 90 .png files. Is there quick/easy way to do it?
The individual .png files open up fine.
They only have experience with premiere, and thought I should be able to import it as sequence?
Any suggestions? Do I force them to output as .mov file? They don't know if they can preserve alpha channel (we need to keep background transparent).
Thanks for any suggestions or help!

The iPad expects the photos to be in a folder named DCIM, and have names 8 characters long plus the extension. i.e. image001.png
Do your png files meet this criteria?

Similar Messages

  • Load picture control with png image from the web

    Hi guys,
    Is there an example anywhere for Labview 8.6 for loading a picture control with png image from the web?

    Hi lavalava,
    here you find a note on how to load pictures from the internet. After grabbing the data you could save them to a file, load the file with the picture file functions and then convert it into the image datatype to feed a picture indicator with the data...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Opening Fireworks .png file from Dreamweaver

    Anybody have problems with the connectivity between Fireworks
    and Dreamweaver? I have a Retail version of Macromedia Studio 8.
    I've been designing a new site and noticed that my fireworks .png
    file is not updating from my changes in Dreamweaver (probably
    because I cannot open from the edit button in Dreamweaver.) When I
    try to open the .png file from the Edit button at the bottom of the
    Properties Panel in Dreamweaver it gives me an Error Message :
    Unable to Launch. Please be sure that the application exists and
    that there is enough memory.
    Obviously the only benefit of Macromedia suite is the
    connectivity. Well, since I don't have it it is sucking. Was it a
    misinstallation on my part? Anybody know what's happening here or
    how to fix?
    Thanks,
    JP

    Copy the file off the server, then open it?
    And what version of Photoshop are you using?  On what OS version?
    Most likely this is a bug in the OS or server software that just shows up because of the asynchronous file IO used by Photoshop (to improve performance).

  • Taking the transparent png files from net into Photoshop. It coming as flat not transparent. How can i do ?

    Hi,
    i want to take some transparent png files from internet into photoshop. The files originally transpernt on internet.
    Im copying that image and paste into photoshop but it won't transparent. therefore im saving the files my mac and using like that.
    But i dont want do this. Because this isn't problem in illustrator. Can anybody help me how can i use transparent png files as transparent in photoshop without save file?
    hope could explain my problem.

    If you can right click on the image and copy its utl to the clipboard you may ne able to open that in Photoshop with this old  Photoshop script.
    // OpenImageFromWeb.jsx
    // Copyright 2006-2009
    // Written by Jeffrey Tranberry
    // Photoshop for Geeks Version 3.0
    // modified by MLH
    // modified by JJMACK 2010
    Description:
    This sample script shows how to download images from a web server using the
    Socket object.
    // Note: Socket.read() parameter & behavior
    // Socket.read() will read or time out. It may not read all data fromserver. <---------------
    // Socket.read(999999) will read 999999 bytes, or timeout, or socket will be
    // closed by the server.
    // enable double clicking from the
    // Macintosh Finder or the Windows Explorer
    #target photoshop
    // Make Photoshop the frontmost application
    app.bringToFront();
    // SETUP
    var html = "";
    var request = "";
    var url = "";
    var binary = "";
    var requesthtml = "";
    var socket = new Socket;
    var domain = "www.mouseprints.net" // the domain for the file we want
    var sImg = "/old/dpr/JJMack8btiSrgb.png"; // the rest of the url for the file we want
    var port = ":80"; // the port for the file we want
    // MAIN
    var url = prompt("Enter the image's full URL http://domain/full image path",url);   // prompt for domain name
    if (url != null && url != ""){
      if ( (url.indexOf("http://") != -1)  || (url.indexOf("HTTP://") != -1)  ) {
      domainPathLength = url.length - "http://".length;
      domainPath = url.substr(7, domainPathLength);
      pathOffset = domainPath.indexOf("/");
      domain = domainPath.substr(0, pathOffset);
      sImg = domainPath.substr(pathOffset, domainPath.length - pathOffset );
      // Isolate Image name
      var Name =  sImg
      var imagePath = "";
      while (Name.indexOf("/") != -1 ) { // Strip Path
      imagePath= imagePath + Name.substr(0, Name.indexOf("/") + 1);
      Name = Name.substr(Name.indexOf("/") + 1 ,);
      //alert("domain = " +  domain + " , Image = " + sImg + " Image File Name = " + Name);
      if ( domain != "" && sImg != "" && sImg != "/" && Name.indexOf(".") != -1 ) {
      var f = File("~/" + Name); // Image file name
      f.encoding = "binary"; // set binary mode
      f.open("w");
      if (socket.open(domain + port, "binary")){
      //alert("GET " + sImg +" HTTP/1.0\n\n");
      requesthtml ="\n\nDmain:" + domain + " Port" + port + " binary\n"
      //request ="GET " + sImg +" HTTP/1.0\n\n"
      request ="GET " + sImg +" HTTP/1.0\nHost: " + domain + "\nAccept: image/gif, image/x-xbitmap, image/png, image/jpeg, */*\n\n";
      socket.write(request); // get the file
      var binary = socket.read(99999999);
      binary = removeHeaders(binary);
      f.write(binary);
      socket.close();
      else { alert("Connection to Domain:" + domain + " Port" + port + " Failed   ");}
      f.close();
      if (binary.length != 0) {
      //alert ("file length = " + binary.length );
      if(app.documents.length == 0) {
      //app.documents.add([width] [, height] [, resolution] [, name] [, mode] [, initialFill] [,pixelAspectRatio] [, bitsPerChannel] [,colorProfileName])
      app.documents.add(new UnitValue(1600,'px'), new UnitValue(1200,'px'), 72, null, NewDocumentMode.RGB, DocumentFill.WHITE, 1,BitsPerChannelType.EIGHT, "sRGB IEC61966-2.1" );
      placeSmartObject( f );
      f.remove(); // Remove temporary downloaded files
      else { alert("Invalid Image URL: " + url ); }
      else { alert("Invalid URL: " + url ); }
    else { if ( url == "" ) alert("No URL Entered"); }
    // FUNCTIONS
    function placeSmartObject(fileRef){
      //create a new smart object  layer using a file
      try {
      var desc = new ActionDescriptor();
      desc.putPath( charIDToTypeID( "null" ), new File( fileRef ) );
      desc.putEnumerated( charIDToTypeID( "FTcs" ), charIDToTypeID( "QCSt" ),charIDToTypeID( "Qcsa" ));
      desc.putUnitDouble( charIDToTypeID( "Wdth" ),charIDToTypeID( "#Prc" ), 100 );
      desc.putUnitDouble( charIDToTypeID( "Hght" ), charIDToTypeID( "#Prc" ), 100 );
      desc.putUnitDouble( charIDToTypeID( "Angl" ), charIDToTypeID( "#Ang" ), 0 );
      desc.putBoolean( charIDToTypeID( "Lnkd" ), true );
      executeAction( charIDToTypeID( "Plc " ), desc, DialogModes.NO );
      activeDocument.activeLayer.resize(100 ,100,AnchorPosition.MIDDLECENTER);
      activeDocument.revealAll();
      } catch (e) { alert("Placeing file: '" + fileRef + "' failed"); }
    // Remove header lines from HTTP response
    function removeHeaders(binary){
      var bContinue = true ; // flag for finding end of header
      var line = "";
      var httpheader = "";
      var nFirst = 0;
      var count = 0;
      while (bContinue) {
      line = getLine(binary) ; // each header line
      httpheader = httpheader + line;
      bContinue = line.length >= 2 ; // blank header == end of header
      nFirst = line.length + 1 ;
      binary = binary.substr(nFirst) ;
      if (httpheader.indexOf("Bad Request") != -1 || httpheader.indexOf("Not Found") != -1) {
      alert (requesthtml + request + httpheader);
      var binary = "";
      //alert (requesthtml + request + httpheader + "\nFile length = " + binary.length);
      return binary;
    // Get a response line from the HTML
    function getLine(html){
      var line = "" ;
      for (var i = 0; html.charCodeAt(i) != 10; i++){ // finding line end
      line += html[i] ;
      return line ;

  • How can I create a array with all files from a directory

    How can I create a array of files or varchar with all files from a directory?

    I thought the example could be improved upon. I've posted a solution on my blog that doesn't require writing the directory list to a table. It simply returns it as a nested table of files as a SQL datatype. You can find it here:
    http://maclochlainn.wordpress.com/2008/06/05/how-you-can-read-an-external-directory-list-from-sql/

  • I'm using iphone 4S, and I can not open PDF file only from my husband email that using Mic outlook. It was very weird because I can received other email with pdf file from other people. can someone help.

    I'm using iphone 4S and ipad mini, and I can not open PDF file only from my husband email that using Mic outlook. It was very weird because I can received other email with pdf file from other people. Can someone help...
    Thanks in advance

    Hi Eidda,
    This may because the attachment is a winmail.dat file. I would recommend taking a look at the article below for more information. Note: the article is written for OS X mail, but does also apply to this situation.
    Mac OS X Mail: What is a winmail.dat attachment?
    http://support.apple.com/kb/HT2614
    -Griff W.

  • I can't restore 'library' with support files from Time Machine

    backup - I can't restore 'library' with support files from Time Machine - Ask Different
    Due to an accident, my entire applications folder with all the support files, including plists and caches got deleted.
    I tried restoring by files from the most recent Time Machine backups but I cannot retrieve my applications with the support files.
    I even tried it with migration assistant on a new image.
    Is this impossible?
    Must I start from scratch?
    Details of the ‘accident’
    I was using this app called ‘AppCleaner’ that also automatically deletes related support files which are normally left behind if one simply trashes an Application.
    In the search view, I typed the app name and I selected all the apps in the results using Command + A. Unfortunately, this selected every single Application in the Applications Folder in the background and I trashed and deleted all files.
    Anyway.
    I tried to restore the applications and library from my Time Machine Back-ups but failed to do so because I didn’t have enough space to restore. (I have a 11inch Macbook Air 2012 64GB SSD
    When I tried to restart in recovery mode, I had the same problem, I was disallowed the option to restore using my time capsule backups because my SSD didn’t have enough space for the backup.
    I then tried to restore it to a totally different but new image on a 64GB USB3.0 Sandisk USB Stick, but the process stopped after hours of being stuck around 30.4 percent and the computer was unable to boot, leaving me with a persistent verbose message suggesting it couldn’t identify the os, kernel or anything.
    I finally tried restoring the state using migration assistant on the very same SSD that had my files missing. This happened successfully and I have all my applications in the applications folder.
    But now I have 13GB free (I had 2GB before) and all my application support files, saved states, preferences, caches and customizations are gone.
    Basically, it feels like I just got a new macbook with my documents and itunes folder loaded on to it.
    How can I get my apps back to the pre-deletion state or is this impossible? Do I have to start from scratch? I thought my Time Machine Backups would restore it to exactly the same state, am I wrong?
    Screenshots:
    Message was edited by: Arsenenger

    Can you simply navigate to your Time Machine backup with the Finder? Treat it like an external hardrive and just look for your old Applications folder. /Applications/
    Also, quite a few apps put config and support files in ~/Library/Application\ Support/
    So you may be able to get the files from there as well.

  • Issues with RAW files from my 7D

    I have Aperture 1.5.6 on my computer and the software updater says that is the current version. I shoot with a 20D and a 7D. I upload my raw files to Aperture and edit them from there and then process for a jpeg. However, every time I upload a raw file from my 7D I get the following message when I click on it to edit it: Unsupported Image format.
    Any words of advice, other than just buy Aperture 3??

    I have Aperture 2.X and had zero issues with RAW files from a 7D, so I think the problem is you are on 1.X. Converting to DNG first was a good suggestion if you don't want to purchase 3.X. Yet another reason to hate proprietary raw image file formats.......

  • How can i run Lightroom 3.6 with RAW files from Canon 650D?

    How can i run Lightroom 3.6 with RAW files from Canon 650D?

    Download the newest DNG converter from Adobe, convert your RAW photos to DNG, and then Import into Lightroom.

  • Problem with NEF files from Nikon D4

    Hi everyone. I find a problem with nef files from my Nikon D4. When files are open in ViewNX2 (free viewer software from Nikon) they are perfect, as shooted... but in ACR they are very different... I use LR4 or CS5 with ACR 6.7 and the difference seems to be linked at D-Lighting function. My impression is that ACR dont read this option and picture are very very dark that original shootings. Anyone have this problem?

    This question used to be answered in the FAQ before they revised it.  So, here we go again.  ViewNX is capable of reading all of the in-camera settings such as, camera profile, saturation, sharpness and other settings.  It is capable of doing this because it is Nikon Software, and they have the ability to program it to read the settings from their raw images.  Lightroom does not read those settings from Nikon cameras or any other brand of camera.  Part of the reason is that different camera makers store those settings differently.
    When I first started using Lightroom I adjusted one of my images that represented what I normally shoot until it looked the way I wanted it.  Then I saved those adjustments as my default settings for the camera.  From that point onward, whenever I import images those settings are automatically applied, and it takes care of the vast majority of my images.  Of course, I still have to make individual adjustments.  But my default settings greatly reduce the amount of how they work that I have to do.
    Active D-lighting is is one of those features that Lightroom does not recognize.  You would be well advised not to use it, or else create a preset to simulate its effect.  It will provide no benefit to your Lightroom work.
    This is a fundamental difference with Lightroom, and something that must be understood and implemented if you are going to use the program effectively.
    I realize this question was asked in the ACR forum and I referenced Lightroom throughout.  But the principle is the same, and the recommended procedure is the same.

  • I just stared having problems with importing files from nikon D810 into LR 5.7 it pop a window saying it can not read files on working on a imac 27" running yosemite on my mac pro after a few times it finally was able to read files and import them into LR

    I just stared having problems with importing files from nikon D810 into LR 5.7 it pop a window saying it can not read files on working on a imac 27" running yosemite on my mac pro after a few times it finally was able to read files and import them into LR I never had this problem before was there some kind of update that could of cause this?

  • Do anybody know how to change a PNG file from 1760 width by 1369 height to 800 x 600?

    Do anybody know how to change a PNG file from 1760 width by 1369 height to 800 x 600?

    Crop to 4x3 aspect ratio, then resize to 800x600

  • Hey, its impossible to move jpeg or png files from my pc (w7) to my iphone (4g, latest firmware), tried everything, even 5,99 € app and 20 hrs of googling, pls help

    its impossible to move jpeg or png files from my pc (w7) to my iphone (4g, latest firmware), tried everything, even 5,99 € app and 20 hrs of googling, pls help

    20 hours of googling?  It's in the user guide on p.117 and 53..
    http://manuals.info.apple.com/en_US/iPhone_iOS4_User_Guide.pdf
    and here... http://support.apple.com/kb/HT1296

  • Extracting resourse like .ai & png files from a flash project

    Hi! I have been assined the task of extracting the images from old flash projects and am having a devil of a time doing so.
    There are lots of programs that you can extract info out of the swf files, but these don't give you the original .ai Ilustrator files that may have been used to create the presentation with, or png files with transparent backgrounds.
    Is there a plug-in in Flash that allows you to capture these items in the document?  when I drag the item from the library (lets say a .ai file) to the stage and right click and copy it, it only gives me part of the item when I paste it back into illustrator... and when I drag the PNG resource to photoshop I get it with a background I do not want.
    any help on this would be great!!!!
    I have both cs3 and cs4 so a solution in either one would be great!

    Well that is kinda what I've been doing, only its not quite that simple as doing it that way makes an image of what is on the entire stage.  What I have to do is create a new project copy over all my library items to the new project, and pull over each one individually and do it that way.... if you have a lot of items in your library (which I do a lot of times since these contain a lot of animation sequenced into individual frames) this process can be quite tedious.  Yes you can save out to .ai illustrator files this way as well.
    I was hoping for something a little more... automatic or at least where I don't have to drop each item individually on a stage, reposition, ect...
    But yes, the previous post is one way of doing it with some fooling around with.

  • Problems with .png files when printing

    Hi,
    When sending my InDesign document to print (from exported pdf's)
    some of my .png files are showing up with semi transparent boxes
    of a different shade than the surround. This reflects the size of the files.
    On screen these discrepancies are not apparrent.
    Where does this problem lie? In the way I have made the .png's?
    Or a setting in InDesign?
    Or with the printer?
    Any suggestions welcome,
    Thanks
    Nik

    InDesignSecrets » Blog Archive » Eliminating YDB (Yucky Discolored Box) Syndrome
    And .png isn't really a print format...

Maybe you are looking for

  • How can I print in black and white only directly from apps on hp screen?

    My printer preference from my pc is set to print in black and white from my computer. How do I set the same black and white settings from the HP Photosmart Plus printer, when printing directly from Apps on Home screen?

  • When closing my laptop's lid... how to avoid any ''sleep'' or any change...

    everytime i close my laptop lid ( i'm not sure if that's the right word ) but my notebook goes on sleep mode i think, and the connection is lost or something like that, and i like my notebook to only change the display, no more no less, i don't want

  • MFBF LINK TO COGI

    Dear Gurus, I am facing one problem in REM.10 planned orders are there ,I have done the production booking for 10 planned orders using MFBF.FG GR(131) has happened for 10 orders.So  10  material documents are created.The component is not there in sto

  • Install ldap server problems

    ok, maybe here its the right place to post my question: i am trying to install sun one directory server, and othe ldaps as well, on my windows xp home edition notebook that uses a dsl connection, with no domain name, and i am having trouble doing so.

  • ComboBox.name property

    I want a combo box to display a description of the information in the combo box. The name property is a good way to do this in my opinion "comboBox.name = This is what I named this Box". I have a text field ("textDescription") set to display the name