3d format - convert to fbx

Hi all,
has anyone had any sucess creating an after effects plugion which converts an after effects file (with 3d camera and other 3d elements) into filmbox (fbx) format?
I love animating with the puppet tool in AE, but need it to go into Unity (and sometimes through Blender or other 3D program) so converting the AE scene into filmbox format would be the ideal solution.
thanks
Matt

Hi Mike,
thanks for taking the time to respond.
My chum Bal Singh at Leeds Met uni came up with a potential solution that I haven't yet had a chance to download and try.
http://www.clintons3d.com/plugins/aftereffects/index.html
Will report back when I get chance to give it a go.
cheers
Matt

Similar Messages

  • When converting a PDF to an excel file, the format converts but none of the wording comes across

    When converting a PDF file to an excel file, the format converts but none of the wording comes across

    When converting a PDF file to an excel file, the format converts but none of the wording comes across

  • Date format convert error in XML interface based Adobe interactive forms

    Hi experts,
    I am using XML interface based Adobe interactive form in Web Dynpro ABAP. The form just contains some date fields and numeric fields.
    When I test the WD Application, the date fields appear like 0000-00-00 at the first time. And then I set the form input disable, and get the XML from the form, at the same time I get the warning message, 'date format convert error'. By the way, I have set the edit pattern, display pattern and data pattern  of the date field to YYYYMMDD, but there seems no effect.
    Could you tell me how to set the default date format in date field Or clear the 0000-00-00?
    And another question, all of the numeric fields in the form appear like 0.0, how can I set it to empty when the form initialize?
    Best Regards,
    Guo Guo Qing

    Hi Chintan,
    Thank you for your reply.
    I have tried every possible changes on the Date field, locale, pattern. But still no effect. When the PDF come up in the WDA program, the date field is still '0000-00-00', and then I export the XML date of the form, there is also '0000-00-00' in the interface field.
    I can't clear the '0000-00-00' in initializiation event using javascript because if I need to open the form again, if I do this, the value user input could be cleared.
    I also try using Javascrip like this
    if this.rawValue == "0000-00-00"
    { this.rawValue = ""; }
    The code above can't clear the initializiation zeros too.
    Have you used the XML interface based online Adobe Forms? I have used XML PDF forms for output before, that's perfect. But the input forms seems so strange.
    Best Regards,
    Guo Guo Qing

  • AVCHD Format Convert to DVD

    Can Compressor 4 convert an AVCHD format to DVD format?  Or is there another suggested program that will work?
    I have video of my wedding that I need to get off my camcorder and am looking into options of how to accomplish this on my iMac. 

    Yes.
    Russ

  • Problem with date format convertion

    Dear All, i want to convert the current system date to particular format that i have specified below in SimpleDateFormat but when ever i exceute my program it comes in different format
    could you help me to solve the problem
    DateFormat sdf = new SimpleDateFormat("yyyy.MM.dd hh:MM:ss");
    Date today = Calendar.getInstance().getTime();
    String rdate = sdf.format(today);
    Date date = sdf.parse(rdate);
    System.out.println("Current date and time is: "+date);i want my date to be like: *2008.09.11 05:00:17*
    but the program output is: Current date and time is: Thu Sep 11 05:00:17 EEST 2008
    thanks

    shamilsons wrote:
    Dear All, i want to convert the current system date to particular format that i have specified below in SimpleDateFormat but when ever i exceute my program it comes in different format
    could you help me to solve the problem
    DateFormat sdf = new SimpleDateFormat("yyyy.MM.dd hh:MM:ss");
    Date today = Calendar.getInstance().getTime();
    String rdate = sdf.format(today);
    Date date = sdf.parse(rdate);
    System.out.println("Current date and time is: "+date);i want my date to be like: *2008.09.11 05:00:17*
    but the program output is: Current date and time is: Thu Sep 11 05:00:17 EEST 2008
    thanksA java.util.Date is just a long. So when you said "System.out.println("Current date and time is: "+date);" you called the "toString()" method of java.util.Date, which formats it to a String the way you see. You have the date formatted the way you want in the "rdate" String, so try "System.out.println("Current date and time is: " + rdate);" and see if that works out for you.

  • Date Formatting, Converting from String to Timestamp

    I am trying to convert a string date to timestamp.
    I have tried a couple of different ways to arrive at the end result.
    I am basically trying to convert a date in the "dd-MM-yyyy" format to a timestamp.
    If I use the following code, I get a date like this "18-May-2004 12:00:00 AM".
    SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy);
    Date dContractDate = sdf.parse("18-05-2004");
    long dateInMilli = dContractDate.getTime();
    bHelp.bcontractdate = new Timestamp(dateInMilli);
    How can I make this code display the current time not midnight or some defaulted value?
    Thanks.

    I think a clever person would reuse their Date.classObject and call Date.setTime() as opposed to always
    rolling out a new Date()
    Not really a question of cleverness. Your code wins
    nothing. Objects are not magically created and garbage collected in the ether.
    The cost of creating a Date is nothing
    compared to the cost of a format() call. True, but not valid a valid statement pertaining to the issue which is
    "does always rolling dates suffer a performance hit?"
    Plus you lost clarity Maybe you loose track of your code if you don't make new Objects all the time,
    but I have never suffered from this.
    Why do you think Sun provided the setDate() method?
    and thread-safety.I have only had Thread issues when I didn't program them properly.
    Luckilly I always program the correctly ;) (Touch wood)
    The facts as I seem are thus:
    Rolling new dates on a 1.83 GHZ PC incurrs on average
    a 19% penalty. Here is the proof.
    Save this program and save it as DateTest.java
    If you don't want to waste the time here are the results of running it
    through the default 10 iterations.
    Running 10 iterations.
    Reuse of dates is 27% more efficient
    Reuse of dates is 17% more efficient
    Reuse of dates is 18% more efficient
    Reuse of dates is 20% more efficient
    Reuse of dates is 20% more efficient
    Reuse of dates is 17% more efficient
    Reuse of dates is 17% more efficient
    Reuse of dates is 20% more efficient
    Reuse of dates is 20% more efficient
    Reuse of dates is 18% more efficient
    Gaining "nothing " actually = 19% on average
    Low percent diff = 17 High percent diff = 27
    Run it 100 times and it should still be around 19%
    With the hi time being about 47% (Probably the result of garbage collecting)
    //////////////////////////////////// <PROOF> ///////////////////////////////////////
    import java.util.Date;
    public class DateTest
    DateTest()
    public int run()
    int percent = 0;
    int loopCount = 0;
    Date date = null;
    int z=0;
    long start1=0,end1=0,start2=0,end2=0,now=0;
    int time1 = 0,time2 = 0;
       now = System.currentTimeMillis();
       date = new Date(now);
       loopCount = 10000000;
       start1    = System.currentTimeMillis();
       for(z=0;z<loopCount;z++)
          now = System.currentTimeMillis();
          date.setTime(now);
       end1 = System.currentTimeMillis();
       start2    = System.currentTimeMillis();
       for(z=0;z<loopCount;z++)
          now   = System.currentTimeMillis();
          date  = new Date(now); // use 'now' so test loops are =.
       end2 = System.currentTimeMillis();
       time1 = (int)(end1 - start1);
       time2 = (int)(end2 - start2);
       percent = ((time2-time1)*100/time2);
       System.out.println("Reuse of dates is "+percent+"% more efficient");
       return percent;
    public static void main(String args[])
    int z=0;
    int lowP=100,hiP = 0;  // lowpercent/highpercent
    DateTest d = new DateTest();
    int loopCount = 0;
    long totals   = 0;
    int average   = 0;
    int values[];
    int retVal = 0;
       try // Yea olde Lazy person's command line handler :)
          loopCount = Integer.parseInt(args[0]);
       catch(Exception any)
          loopCount = 10;
       if(loopCount == 0)
          loopCount = 10;
       values = new int[loopCount];
       System.out.println("Running "+loopCount+" iterations.");
       for(z=0;z<loopCount;z++)  //
          retVal = d.run();
          if(lowP > retVal)
             lowP = retVal;
          if(hiP < retVal)
             hiP = retVal;
          values[z] = retVal;
       for(z=0;z<loopCount;z++)
          totals += (long)values[z];
       average = (int)(totals/loopCount);
       System.out.println(" Gaining \"nothing \" actually = "+average+"% on average");
       System.out.println("Low percent diff = "+lowP+" High percent diff = "+hiP);
    }////////////////////////////////// </PROOF> /////////////////////////////////////////
    Your "nothing" is in fact on average about a 19% performance hit. per call.
    These inefficiencies build up and java is infested with the,
    Was it not so the java would run much more efficiently than it now does.
    Ask yourself; why did Sun supply the setDate() method???
    (T)

  • Has anyone created a file format converter from "universal file format" uff, to another format?

    I need to find or create a file converter from the different Universal formats to another ASCII format. Does anyone know where I can get formating information about UFFs? Has anyone done this? Thanks in advance.

    The UFF file info can be found at http://www.sdrl.uc.edu/uff/uff.html
    The Sound and Vibration Toolkit 5.0 and the Sound and Vibration Measurement Suite 5.0 offers LabVIEW VIs to read and write UFF58 files. 
    Feroz

  • Flv video format converter code in c#?

    I have different types of video formats like(mp4,wmv,etc). I want to convert this video formats into .flv.
    Please help me by using c#,jquery ..
    Nothing is impossible...

    Hi,
    For you first question, Sharepoint does not provides any tool which could convert any video format to .flv so it is off topic here. But here is some good ref i have found:
    http://www.helpprogrammers.com/csharpsample.aspx
    http://forums.asp.net/t/1266336.aspx/1
    For your second issue, SharePoint will play all files that windows media player can play. See below links for your ref:
    http://www.c-sharpcorner.com/uploadfile/Ravish001/sharepoint-2010-new-feature-how-to-use-audio-and-video-webpart/
    http://sharepointconnoisseur.blogspot.in/2011/05/play-video-and-media-files-in.html
    Hope it could help
    Hemendra: "Yesterday is just a memory,Tomorrow we may never see"
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer
    Please feel free to unmark answer if does not solve your problem.

  • Avi (xvid) to AppleTV format converter

    Hello everyone,
    I hope someone can help me.
    I need a simple, free program that can convert basically any type of file to the AppleTV format. It needs to be for Windows also.
    Ive searched a lot on the net but I could not find any really. Also, I have Quicktime pro but it does not seem to convert any of my AVI files (in xvid)...

    I assume there are a whole number of alternatives for windows, some easier to use than others and some more effective than others, but being a mac user I am not familiar with them. I mentioned mpeg streamlip because it's relatively easy to use and does a good job, I also know it's available for windows.
    You will find that over a period of time, you use more than one converter for different situations, for example where I can I use QT tv preset, as you say it has its limitations but where it works it works pretty well and is a simple one click operation, mpeg streamclip usually does the rest for me, as it handles DV files much better than QT, then there is another bunch of software I use when it comes to DVD's.

  • PRST1 can not read some book in epub format converted by calibre

    I downloaded some books with fb2 format and converted them by calibre to epub format.
    I do not have problem to read these book on my PC but with my Reader I see only ??????
    Any idea how to fix this.
    Thank you.
    Max

    Hi Max,
    Welcome to Sony Community!
    This may be an issue due to the file being converted from another format. Check if original ePub format books are being recognized in the Reader.
    If my post answers your question, please mark it as an "Accepted Solution."
    Thank you for your post.

  • Apple TV Best Video Format & Converter

    Hi, I'm considering getting myself an AppleTV instead of building an HTPC type box just to stream TV & my movies.
    Basically I will have the always-on PC upstairs hardwired into my gigabit network, which will store all of my movies, TV shows, music etc. as well as hosting my printer. That PC is also the one I'll be using to sync my iPad & iPhones to.
    Currently I use VLC streamer to play videos on my iDevices; and I could just Airpay the stream through to an AppleTV, but this ties up a device (to a extent), slows it down & drains its battery. Plus it would mean that if I started something, then wanted to go out with my device, it would screw up playback for my wife. Therefore I plan to get all of my library into h.264 format & imported into iTunes so the AppleTV can play it via home sharing.
    So what I would like to know is what is my best option for conversion? Is there a format I would be best off downloading it in in the first place to make conversion easier/faster? I only have a 32" 720p TV, so full HD is unnecessary, but I would like to include the surround sound info so that in the future I can output the AppleTV's HDMI through a home theatre processor. Hopefully can keep the filesize up to around 1GB, maybe 1.5 max?

    Video formats supported
    H.264 video up to 1080p, 30 frames per second, High or Main Profile level 4.0 or lower, Baseline profile level 3.0 or lower with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats
    MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats
    Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format
    Audio formats supported
    HE-AAC (V1), AAC (16 to 320 Kbps), protected AAC (from iTunes Store), MP3 (16 to 320 Kbps), MP3 VBR, Audible (formats 2, 3, and 4), Apple Lossless, AIFF, and WAV; Dolby Digital 5.1 surround sound pass-through
    Photo formats
    JPEG, GIF, TIFF.
    It's impossible to suggest a converter without knowing the compression type used for audio and video in the source material, perhaps you can provide that information.
    We cannot provide information to help circumvent any copy protected content.

  • Looking for Java Image Format converter

    hi,
    I am looking for an open-source site or so, which has Java code on converting different Image types eg. gif/jpeg etc. to PNG. I am building an application which needs to display images. It would be great to have a tool which takes the image and converts it to the PNG format.
    Can anyone help me out?
    cheers :)
    cleoppatra

    hi cleo. there is no tool you can patch into your source. there are two posibilities that i know of.
    1. take a look at the algorith for gif and jepg and chang it to png.
    2. send the link to a server, which you have to program, as a servlet, which will get the html page just as the midp would do, have a normal converter jpg -> png or gif -> png, see if what type of image it is, choose the right converter and convert the pic. format the text the way you want and then send it to the mobile phone. this will make most of the work be much faster since the mobile phone is very slow, and wont be very evectif on converting stuff.
    think about it.
    jeliel

  • Scan and file format converting

    Hello all,
    I was given a challenge to find a way to scan documents (in PDF or JPG) from office's copy machine, then save them in a library and from that point, the user should be able to do the following:
    a. Crop the image
    b. Resize the image
    c. Convert PDF, JPG, BMP and TIFF, between these formats
    d. Merge images to one PDF file
    e. Split PDF pages to images
    Is there any ready 3rd party solution, or someone guide me how should I provide such solution, if possible? We would like to avoid outside the SharePoint 2013 solution.

    The cropping and resizing is probably better done on the scanner, and a lot of third party systems will allow you to do that. They also interface with SharePoint, including metadata etc.
    Likewise, merging and splitting of documents may also be better done outside of SharePoint unless you're prepared to use custom code as these aren't standard functionality in SharePoint.
    I'd take a look at Kofax (http://www.kofax.com/) as they may have the functionality you require.. (Fujitsu and Canon also have specific software for their owner Multi purpose machines, so I would speak to your hardware
    provider for your scanner and ask what SharePoint integration options they offer.)
    Paul.
    Please ensure that you mark a question as Answered once you receive a satisfactory response. This helps people in future when searching and helps prevent the same questions being asked multiple times.

  • LabVIEW formula to LaTeX format Converter

    Does anyone know if there is a VI available that will convert a LabVIEW formula to LaTeX format?
    e.g.
    (a1+a2)/2   ---->    \frac{a1+a2}{2}
    I wanted to check if something like this is available before venturing off and attempting to make my own.

    This shows the reverse direction, which might give you a push in the direction you want - http://decibel.ni.com/content/docs/DOC-13859
    Try to take over the world!

  • Problems with format converter

    I need help.
    I had to convert a movie that used my PC for 26 hours, so it can be played in Apple TV. It was in WMV format.
    But after been converted the Quick time does not recognize the movie.
    I saw the file information and has no information in the file format.
    Below is the log file of the converetd movie:
    Duration: 02:19:03.1, bitrate: 1949 kb/s
    Input:
    Stream #0.0: Audio: wma9, 44100 Hz, stereo, 1411 kb/s
    Stream #0.1: Video: wmv3x, 720x576, 25.00 fps, 1860 kb/s
    Output:
    Stream #0.0: Video: h264, 1280x720, 23.97 fps, q=2-31, 2500 kb/s
    Stream #0.1: Audio: mpeg4aac, 48000 Hz, stereo, 160 kb/s
    Stream mapping:
    Stream #0.1 -> #0.0
    Stream #0.0 -> #0.1
    no need for a SAR
    VBV buffer size too small, using 2920 kbit
    using cpu capabilities MMX MMXEXT SSE SSE2
    Video:2543079kB Audio:146413kB Global headers:0kB Muxing overhead -155.779698%
    slice I:876 Avg QP:20.64 Avg size: 29780
    slice P:199106 Avg QP:23.69 Avg size: 12948
    slice I Avg I4x4:30.0% I8x8:0.0% I16x16:70.0%
    slice P Avg I4x4:6.7% I8x8:0.0% I16x16:30.2% P:28.9% P8x8:0.0% PSKIP:34.2%
    kb/s:2497.0
    Message was edited by: Pedro Santos

    I'm afraid that stuff in the log is beyond me, but it seems either you or the decoder are trying to change the frame rate. I also believe that your target rate is too high given your source materials bitrate although I doubt this is causing you a problem.
    I'm also not sure why mpegstreamclip would be asking for mpeg2 playback components when you are trying to convert from a WMA, or if it is that you have converted your DVD's to WMA so as you can convert them to h264 in a second encoding then I'm not sure why you would do this.
    To be honest I'm not sure if it's your WMA's that have a problem or your conversion that's going wrong, if you have a small sample of your WMA and care to email it to me, I'll take a look at it for you.

Maybe you are looking for