• home
  • forum
  • my
  • kt
  • download
  • Exporting Blender Animations (with additional Mac info)

    Author: 2009-02-24 13:23:43 From:

    This is a tutorial to help beginner Blender users like myself output their animations to either individual images or to an movie format such as a Quicktime file. Not every detail is gone over but hopefully enough is covered to get you started.

    Outputting Your Animations

    (Mac users: There is some additional information to be aware of, so read on after this before you try it.)



    Because you are inside the home folder of your particular user account, things outside of it are invisible so you will want a "path" (the path for the computer to follow in order to place your files in the right spot) that will put things where you can find them.



    Everything you do in it is command line (you type everything).

    When it opens it defaults to your home folder. You will need to go to the root level of your hard drive.

    To go to the root level of your hard drive type this:

    cd ../../

    (Make sure to hit return at the end of all commands to make them happen.)

    The command "cd" means change directory (a directory is the same thing as a folder). The "../" means back out of the folder you are in one level. What we told it to do was to back out of your home folder into the Users directory (where it sits) and then to back out onto the root (top level) of your hard drive.

    Type ls. The command "ls" means list files.

    You should now be able to see that missing tmp directory in amongst the other items.

    To be sure it is indeed the correct tmp directory (kind of a common directory name), we should go inside it and look.

    Type "cd tmp" (no quotations marks) to go inside it and "ls" to see what is there. You should see your files.

    Now to move them somewhere where you can see them. You can use the path I suggested above as the spot to move them to.

    Type this with adjustments for what is on your Mac:

    mv ../Users/username/Desktop/output/*.jpg

    The command mv means move. What we are doing is telling the computer to back out of our current directory back to the root level of the hard drive (../), to go inside the Users folder (Users/) into the home folder (whatever it is called, in my case "davidthrasher/"), into the Desktop folder (Desktop/), and finally move the files into a folder called "output" (output/). The asterisk is a wildcard character which I'm using here to tell it to move all files, no matter what the name is, that end in ".jpg". It beats typing this command in 250 times for each individual file. You can adjust this for other file types, such as using ".mov" to move Quicktime movie files.

    Hopefully you won't have to use this too often.

    discuss this topic to forum

    relation tutorial

    No information

    Category

      Materials (10)
      Basics (11)
      Modelling (10)
      Effects (7)

    New

    Hot