New tutorials and export script

Hey All,
As much as I loves me .Mac account for its ridiculously easy iPhoto publishing, I've reached the point where I want to be able to have fun with server-side scripting (PHP, Ruby, etc.), so I've moved the tutorials and such to a new location:
http://www.motionsmarts.com
I've got a couple of new tutorials there, as well as an AE-to-Motion position keyframe export script, for those of you desperate to move that tracking data. It's no-frills, but it seems to work well enough.
Have fun, and please post if you find any errors or typos. Thanks!

Amazing, Specialcase!
Will try the AE position exporter as soon as possible!
Keep those great things coming
PS: Do you think it would be too hard for a non programmer like myself to customize the script? I would love to modify it to export Soundkeys or AE's built-in Convert audio to keyframes data to Motion! I mean, I could copy that data to AE's position and then export, but position has two dimensions and the audio level data is unidimensional....
Thanks again.

Similar Messages

  • Use of Import and Export script

    Hi,
    Can any one tel me what is the use of Import and Export script.
    After moving the pages from / into server what is the need of giving the import / export command.
    export /oracle/apps/ap/setup/webui/customizations/site/0/SetupPG -rootdir <destination path> -username <data base user name> -password <data base password> -dbconnection "(description = (address_list = (address = (community = tcp.world)(protocol = tcp)(host =<hostname> (port = <port id>)))(connect_data = (sid = <sid>)))".
    Thanks in Advance,
    Jegan

    And Export/Import is also used to move personalizations and substitutions from one system to another system.
    You can also use Functional administrator UI to export and import pages.
    Functional administrator in turn uses export/import internally.
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Import and Export Script

    Hello All Readers,
    Here I want to know all the parameters of Database Import and Export Command and all the possible methods of Imp/Exp. Please help me to find those.
    Thanks in Advance.......

    May be u can read this to get fair knowledge
    http://download-east.oracle.com/docs/cd/B10501_01/server.920/a96652/part1.htm#435787

  • New page in sap script

    hi all,
    my requirement is i want to display internal table items in new page when forst page is filled.
    ihve given the code like
    loop at it_table.
    write form
    given the text element inthe write form.
    endloop.
    how to trigger new-page when the first page is filled. in this code.ihve created new page and in script and first pages next page is new page.how to call this page.data is displayed in new page with out any format.
    regards,

    Hello everyone.
    I have a similar requirement. When printing a sales order, I need to always print a bitmap in the 2nd page. This means that:
    If the order's line items can fit in the first page's main window, I want to have a two pages output, one page with line items and one page with the bitmap.
    If the order's line items cannot fit in the first page's main window, I want to have three (or more) pages output, first page with line items, second page with the bitmap and the remaining pages with line items.
    I have defined three pages: "first", "second" and "next".
    "First" page has "second" page as next.
    "Second" page has "next" page as next.
    "Next" page has "next" page as next.
    The problem is that when all line items fit in the main window of the "first" page, the "second" page is not triggered. How can I figure out that there will be only one page printed in order to trigger a new one explicitly as soon as the loop in the line-items' internal table finishes?
    Can it be done with an 'IF &SAPSCRIPT-FORMPAGES& = 1' statement? If yes, where should I put it? I have tried it and it doesn't work.
    Thank you in advance.
    Edited by: George Serfiotis on Oct 30, 2009 10:52 AM

  • How do I import a video in mp4 and export in QuickTime H.264?

    Or is that even possible? Whenever I try I get a error "Incompatible codec..."

    It's one file that was produced in a different video software that I used before purchasing Premiere Pro.
    Most of it is composed of a series of stills, though there is a portion that is video (mp4 from the old software). I'm assuming I might have better luck creating a new video and exporting it in that format by importing the stills and video and working with them in Premiere Pro.

  • Export script for .jpg and/or .tif

    hi,
    i'm quite proficient with java script and action script - now also getting into scripting illustrator. i'd like to write a script to export each layer of an open document as a separate .jpg and/or .tif file.
    apparently though, there is no way to access the resolution depth property (i need 300dpi) or the format method property (i need baseline optimized).
    can that really be true? only 72dpi output possible? no full property access?
    thanks a lot for any hint, maybe there are some strange workarounds?

    // http://hicksdesign.co.uk/journal/illustrator-exporting-layers-to-png<br /><br />var document = app.activeDocument;<br />if(document)<br />{     <br />    folder = document.fullName;<br />     var options = new ExportOptionsPNG24();<br />     options.antiAliasing = true;<br />     options.transparency = false;<br />     options.artBoardClipping = false;<br />     <br />     var n = document.layers.length;<br />     for(var i=0; i<n; ++i)<br />     {<br />          hideAllLayers();<br />          var layer = document.layers[i];<br />          layer.visible = true;<br /><br />//          var file = new File(folder.fsName+"-"+layer.name+".png");<br />//          Truncated for MAC<br />          var file = new File(document.path+"/"+layer.name+".png");<br />          <br /><br />          document.exportFile(file,ExportType.PNG24,options);<br />          <br /><br />     }<br />     <br />     showAllLayers();<br />}<br /><br />function hideAllLayers()<br />{<br />     forEach(document.layers, function(layer) {<br />          layer.visible = false;<br />     });<br />}<br /><br />function showAllLayers()<br />{<br />     forEach(document.layers, function(layer) {<br />          layer.visible = true;<br />     });          <br />}<br /><br />function forEach(collection, fn)<br />{<br />     var n = collection.length;<br />     for(var i=0; i<n; ++i)<br />     {<br />          fn(collection[i]);<br />     }<br />}

  • Set up export script and how to run it. Oracle 10gR2

    Can someone help explain this script to a newbie. I need to write a script to export all data from our Oracle 10gR2 Tru64 Unix to another system. We need to test how long a 200GB tablespace export will take writing directly to nfs mount on SAN.
    1. The only option we have is to use a NFS Mount to the new SAN. ( there is no space on our existing system)
    2. What needs to be declared to describe the environment in both Oracle and/or in the script to make it run?
    3. Do I need to tell Oracle where the export directory is? (NFS Mount).
    4. how is exp run? Do dba run via a XXX.sh script or SQLPLUS XXX.sql script?
    5. how can I check the progress....
    I don't understand the set up of the oracle environment lines, can someone help me?
    Here is a sample script I found on our system....
    1 #!/bin/sh
    2 # /usr/users/oracle/nfsoraexpt_linux.sh
    3 # Export up the specified instance of the db tar it to an nfs mount point and log it
    4
    5 # Set up the oracle instance and environment
    6
    7 ORACLE_SID=pdsprod; export ORACLE_SID
    8
    9 ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1; export ORACLE_HOME
    10 PATH=/usr/bin:/u01/app/oracle/product/10.2.0/db_1/bin:/apg/0800/mercator:/usr/users/oracle/bin:.; export PATH
    11
    12 # Do logging and export the instance
    13 rm /nfs_dir/oraexpt.log
    14 echo `date` >> /nfs_dir/oraexpt.log
    15 exp user/password file='/nfs_dir/pdsprod.exp' log='/nfs_dir/pdsprodexp.log' full=y direct=y feedback=5000000
    16 #exp user/password file='/nfs_dir/pdsprod.exp' log='/nfs_dir/pdsprodexp.log' tablespace='ENC_DS_DATA' direct=y feedback=5000000
    17 cat /nfs_dir/pdsprodexp.log >> /nfs_dir/oraexpt.log; rm /nfs_dir/pdsprodexp.log
    18
    19 echo `date` >> /nfs_dir/oraexpt.log
    20 cd /nfs_dir
    21 # gzip -f pdsprod.exp
    22 ls -al pdsprod.exp >> oraexpt.log
    23 mail -r email email2 < /nfs_dir/oraexpt.log
    24
    Any help for this first time user would be appreciated. Thanks

    First it sets some environment variables in the shell.
    Then it removes a log file.
    Then it uses an obsolete tool to export some data.
    Then it displays the contents of the log file.
    Then it changes the present working directory.
    Then it lists the files in the directory.
    Then, presumably, it emails a copy of the log file somewhere.
    In 10gR2 I would suggest throwing it away and using a proper tool to do the job such as RMAN or DataPump.
    Additionally find someone to teach you how to navigate and perform basic tasks in Linux. This may help.
    http://www.psoug.org/reference/unix_vi.html
    as might Arup Nanda's excellent tutorial here:
    http://www.oracle.com/technology/pub/articles/advanced-linux-commands/part1.html

  • Using Powershell Script Run simple query in MS Access 2007 and export the results of query to Excel

    Hi Experts,
    I have a Access 2007 DB file and 2 Big tables inside that (bigger than the size that can be easily handled by MS Excel 2007).
    My requirement is automate using powershell scripts the below things.
    1. Create a SQL query in Access DB and save that in access DB
    2. Run the saved query and export the result in excel sheet where I can create the charts and Pivots. Thanks in advance
    Prajesh

    Do you have to use the Access query, couldn't you just recreate the query in Powershell?  Here's a link with good info that references an existing script for querying an Access database:
    http://blogs.technet.com/b/heyscriptingguy/archive/2009/08/13/hey-scripting-guy-can-i-query-a-microsoft-access-database-with-a-windows-powershell-script.aspx
    Once you have your dataset you can pipe it to
    Export-Csv -NoType c:\pathtofile\output.csv

  • How do I transfer my checked songs from one computer to another - tried exporting library playlist etc but no luck! Please help! I have 26,000 songs - 17,000 are selected and I can't run down the list on my new computer and re-check 17,000 songs! Thanks!

    How do I transfer my checked songs from one computer to another - tried exporting library playlist etc but no luck! Please help! I have 26,000 songs - 17,000 are selected and I can't run down the list on my new computer and re-check 17,000 songs! Thanks!

    Make a smart playlist of your whole library but only checked songs - #4 on  http://support.apple.com/kb/ht1801
    Highlight all files in that playlist, then drag to the other drive.  This isn't preserving any playlists or whatever, just copying files from one drive to another.
    You might want to delete the smart playlist this once you are done because it will probably gobble up resources with that many files.

  • After creating a new slideshow I export it with the  setting HD 1080p it is then saved as a .mov i then create a dvd in idvd and the quality is not  as good as the original photo's when viewed on the monitor or a TV, am i doing something wrong?

    After creating a new slideshow I export it with the  setting HD 1080p it is then saved as a .mov i then create a dvd in idvd and the quality is not  as good as the original photo's when viewed on the monitor or a TV, am i doing something wrong?

    DVD's are only 640 x 480 (interlaced), so yes, the quality is not nearly as good.  You should probably create your .mov in DV format to best match the DVD format

  • HT4236 I've run out of room on my hard drive. I bought an external drive and exported all my albums to the external drive then deleted the albums from iPhoto. I want to sync both from my ext drive and new albums in iPhoto. No dice. Help!

    I've run out of room on my hard drive. I bought an external drive and exported all my albums to the external drive then deleted the albums from iPhoto. I want to sync both from my ext drive and new albums in iPhoto. My photos on the devices get wiped out when I sync to iPhoto since I deleted all the albums. But when I sync to my hard drive (where I maintained the album structure) the photos are copied to my iPad but lose all the hierarchy and folder structure. Now I have to scroll through thousands of photos to try to find the one I'm looking for. Before I sync any more devices I want to know the following: 1) can I restore the album structure on my iPad by using the photo cache? 2) is there a way to sync both new iPhoto albums AND pictures in the folders in my hard drive? And 3) how can I keep the photo hierarchy structure from my hard drive intact on my devices?

    TigerMom28 wrote:
    I've run out of room on my hard drive. I bought an external drive and exported all my albums to the external drive then deleted the albums from iPhoto.
    Don't do that.
    Copy /Photos/Photo library/ to the external.
    Hold Option and launch iPhoto.
    Select Choose library and select the Photo library you copied to the external.

  • I duplicated a document created originally in new pages 5.1 and exported that copy to the older pages '09. I see the document listed in the old pages but my computer refuses to open it demanding I download the newer pages app... which I have. Now what?

    I am able to open the document through finder, but I can't with Pages '09.

    I have the latest operating system on my '09 macbook pro. My old pages is pages '09.
    When this document was created I didn't realize I did it under Pages 5.1, which I now realize is limited in capabilities so it can speak to iOS devices through iCloud.
    I duplicated that file, renamed it "Yardening copy" and exported to Pages '09. I see the file in the pages listing, but when I try to open it there I get a warning that I need to download the new Pages 5.1... which I have on my computer. I even tried to email it to myself hoping that might work on a lark, but the file is too larg being that it includes pictures.
    I can find the copy via finder, and yes, double click it and it opens... but I'm assuming it is using Pages 5.1 to do so.
    Do I really have to copy and past all the info on this document onto a new Pages '09 document where I want to maintain my  master library of documents?

  • How to i write a script that makes multiple selections in a pdf and exports them to excel?

    I have a large number of PDFs
    Not all the PDFs contain information we need. We want to be able to automate a script that extracts certain info from the PDFs and opens them in a certain format in excel.
    Acrobat allows me to make a single selection and export as excel.
    How do i export multiple parts to excel from the pdfs and ensure that the resulting excel is in a format that i can use without much fixing needed (e.g. merged cells)?

    This type of process can't really be done using JavaScript. You would need to read the contents of the file, word by word, decide (based on some logic) what data to extract, and then collect it and at the end export to a plain-text file. Not a simple process...

  • Any Complete Tutorials On How To Edit And Export MIDI Files In GB?

    Hi. A friend sent me about 25 nice standard MIDI files that all open fine in QT Pro. She wants me to drag and drop them into GarageBand 2, attempt to edit them, change sounds and then export them out as the edited versions, key changes, added bars, change instrument sounds, etc,. Although I'm a trained musician who understands form, I really don't have a clue on how to use GB to edit and export standard MIDI files. Can this be done effectively in GB ver 2 or 3?
    Basically what she then wants to do is take the edited MIDI tracks, put them into itunes I guess on her iBook G4 or Ipod and do a solo act playing her keyboard live and usibg the MIDI tracks as background.
    Are there any links to step by step tutorials on how I can lerarn this procedure? Please offer any advice and links if you can and thanks for your help
    steveb

    Not really practical, I'm afraid. Capturing screenshots and cutting them up is possible with Photoshop, but PDF editing is very limited (fix a typo, move a picture).

  • I recently bought my 1st IMac. I need to know how to back up and export my Outlook Contacts, Folders, and Saved Emails to the new Mac Mail

    I need to know how to back up my Outlook data from my PC (contacts, folders, saved emails) and export them to my new Mac Mail

    http://www.google.dk/search?source=ig&hl=da&rlz=1G1TSEH_ENDK367&q=import+outlook +mails+to+apple+&oq=import+outlook+mails+to+apple+&aq=f&aqi=&aql=&gs_sm=e&gs_upl =1308137l1317536l0l1317968l30l29l0l11l6l0l242l2780l2.10.5l17l0#hl=da&rlz=1G1TSEH _ENDK367&sa=X&ei=AlrFTsDBBZD64QTLvJm3DQ&ved=0CCEQBSgA&q=import+outlook+emails+to +apple&spell=1&bav=on.2,or.r_gc.r_pw.,cf.osb&fp=583a6dce352ae6fd&biw=1746&bih=75 5

Maybe you are looking for

  • Maximum file size of 2 GB exceeded please choose a shorter bounce time

    I have done a thorough search online (w/google) trying several combinations of words but I seem to be the only person on the planet with this error. I guess I will try to remake the project but I don't think it will fix the problem. I also will updat

  • Nagging questions regarding graphics

    I have recently left my trusted beige G3, 0.233GHz and reliable, transparent OS 9.2.2 and embarked on a Mac mini 1.33 GHz running OS X Tiger. While lots of improvements can be seen, it is regrettable that many practical features have been abandoned.

  • Aliases and Sending Mail

    I'm running iMS 5.1. I'm wanting to be able to allow webmail users to specify an alias address without the domain for sending mail. I.E... user zzUser is aliased to some.user. In the webmail client I want someone to be able to type in just "zzUser" i

  • How to validate an xml with a schema w/o specifying the schema in the xml

    I have done xml validation with xml schemas, where the xml points to the xsd to use. However, I would like to not have to specifiy the xml schema in the xml document (and can't ensure that the xml coming to us has that in it). How do I, in the java c

  • Reports in DMS

    Dear All, I wanted to know, what are all the reports (Std) available in SAP, For DMS, and related to it. Or where to find it. Regards Raghu