How to do a spinning heads effect with a single footage? (link to a video for clarification)

hi.
Could anybody give me a hint how to create this spinning heads effect demonstrated in this video (starting from 0:08):
https://www.youtube.com/watch?v=05ZvII57p_M
The biggest mystery for me is how the spinning heads maintain their 3-dimensionality throughout the cycle. I attempted to do something similar with my own head's footage by applying CC Cylinder, but with only this effect the face becomes flat when it turns to 90 degrees. 
The author of this video claimed in multiple interviews that he uses only After Effects for all of his videos, so i'm pretty sure AE was used in this one too.

Go buy a lazy suzan bearing at Home Depot, Set a chair on it. Center your head on the turning axis and put a green screen behind you. Shoot your head as you spin around.
(edit: or sit on a stool with a seat that will spin as Dave suggested)
Shoot a clean plate (the actor is not in the scene) then have the actor walk in. Roto out the head so the clean plate is in the background. Key out your spinning head green screen footage and put it between the clean plate and the rooted actor.

Similar Messages

  • How to download versions of apps compatible with OSX 10.7 not the ones updated for 10.9

    how to download versions of apps compatible with OSX 10.7 not the ones updated for 10.9?
    I'm trying to download iLife and iWork apps for my MacBook. For example: The GarageBand app will not download because it says it is compatible with 10.9. I have 10.7 and cannot update to 10.9 because I'm on a 13in. Late 2007 MacBook. Any suggestions?

    Click here and follow the instructions. If they’re not applicable, you can’t download them and need to install them from a DVD.
    (108988)

  • How to encrypt column of some table with the single method  on oracle7/814?

    How to encrypt column of some table with the single method on oracle7/814?

    How to encrypt column of some table with the single method on oracle7/814?

  • How to encrypt column of some table with the single method ?

    How to encrypt column of some table with the single method ?

    How to encrypt column of some table with the single
    method ?How to encrypt column of some table with the single
    method ?
    using dbms_crypto package
    Assumption: TE is a user in oracle 10g
    we have a table need encrypt a column, this column SYSDBA can not look at, it's credit card number.
    tha table is
    SQL> desc TE.temp_sales
    Name Null? Type
    CUST_CREDIT_ID NOT NULL NUMBER
    CARD_TYPE VARCHAR2(10)
    CARD_NUMBER NUMBER
    EXPIRY_DATE DATE
    CUST_ID NUMBER
    1. grant execute on dbms_crypto to te;
    2. Create a table with a encrypted columns
    SQL> CREATE TABLE te.customer_credit_info(
    2 cust_credit_id number
    3      CONSTRAINT pk_te_cust_cred PRIMARY KEY
    4      USING INDEX TABLESPACE indx
    5      enable validate,
    6 card_type varchar2(10)
    7      constraint te_cust_cred_type_chk check ( upper(card_type) in ('DINERS','AMEX','VISA','MC') ),
    8 card_number blob,
    9 expiry_date date,
    10 cust_id number
    11      constraint fk_te_cust_credit_to_cust references te.customer(cust_id) deferrable
    12 )
    13 storage (initial 50k next 50k pctincrease 0 minextents 1 maxextents 50)
    14 tablespace userdata_Lm;
    Table created.
    SQL> CREATE SEQUENCE te.customers_cred_info_id
    2 START WITH 1
    3 INCREMENT BY 1
    4 NOCACHE
    5 NOCYCLE;
    Sequence created.
    Note: Credit card number is blob data type. It will be encrypted.
    3. Loading data encrypt the credit card number
    truncate table TE.customer_credit_info;
    DECLARE
    input_string VARCHAR2(16) := '';
    raw_input RAW(128) := UTL_RAW.CAST_TO_RAW(CONVERT(input_string,'AL32UTF8','US7ASCII'));
    key_string VARCHAR2(8) := 'AsDf!2#4';
    raw_key RAW(128) := UTL_RAW.CAST_TO_RAW(CONVERT(key_string,'AL32UTF8','US7ASCII'));
    encrypted_raw RAW(2048);
    encrypted_string VARCHAR2(2048);
    BEGIN
    for cred_record in (select upper(CREDIT_CARD) as CREDIT_CARD,
    CREDIT_CARD_EXP_DATE,
    to_char(CREDIT_CARD_NUMBER) as CREDIT_CARD_NUMBER,
    CUST_ID
    from TE.temp_sales) loop
    dbms_output.put_line('type:' || cred_record.credit_card || 'exp_date:' || cred_record.CREDIT_CARD_EXP_DATE);
    dbms_output.put_line('number:' || cred_record.CREDIT_CARD_NUMBER);
    input_string := cred_record.CREDIT_CARD_NUMBER;
    raw_input := UTL_RAW.CAST_TO_RAW(CONVERT(input_string,'AL32UTF8','US7ASCII'));
    dbms_output.put_line('> Input String: ' || CONVERT(UTL_RAW.CAST_TO_VARCHAR2(raw_input),'US7ASCII','AL32UTF8'));
    encrypted_raw := dbms_crypto.Encrypt(
    src => raw_input,
    typ => DBMS_CRYPTO.DES_CBC_PKCS5,
    key => raw_key);
    encrypted_string := rawtohex(UTL_RAW.CAST_TO_RAW(encrypted_raw)) ;
    dbms_output.put_line('> Encrypted hex value : ' || encrypted_string );
    insert into TE.customer_credit_info values
    (TE.customers_cred_info_id.nextval,
    cred_record.credit_card,
    encrypted_raw,
    cred_record.CREDIT_CARD_EXP_DATE,
    cred_record.CUST_ID);
    end loop;
    commit;
    end;
    4. Check credit card number script
    DECLARE
    input_string VARCHAR2(16) := '';
    raw_input RAW(128) := UTL_RAW.CAST_TO_RAW(CONVERT(input_string,'AL32UTF8','US7ASCII'));
    key_string VARCHAR2(8) := 'AsDf!2#4';
    raw_key RAW(128) := UTL_RAW.CAST_TO_RAW(CONVERT(key_string,'AL32UTF8','US7ASCII'));
    encrypted_raw RAW(2048);
    encrypted_string VARCHAR2(2048);
    decrypted_raw RAW(2048);
    decrypted_string VARCHAR2(2048);
    cursor cursor_cust_cred is select CUST_CREDIT_ID, CARD_TYPE, CARD_NUMBER, EXPIRY_DATE, CUST_ID
    from TE.customer_credit_info order by CUST_CREDIT_ID;
    v_id customer_credit_info.CUST_CREDIT_ID%type;
    v_type customer_credit_info.CARD_TYPE%type;
    v_EXPIRY_DATE customer_credit_info.EXPIRY_DATE%type;
    v_CUST_ID customer_credit_info.CUST_ID%type;
    BEGIN
    dbms_output.put_line('ID Type Number Expiry_date cust_id');
    dbms_output.put_line('-----------------------------------------------------');
    open cursor_cust_cred;
    loop
         fetch cursor_cust_cred into v_id, v_type, encrypted_raw, v_expiry_date, v_cust_id;
    exit when cursor_cust_cred%notfound;
    decrypted_raw := dbms_crypto.Decrypt(
    src => encrypted_raw,
    typ => DBMS_CRYPTO.DES_CBC_PKCS5,
    key => raw_key);
    decrypted_string := CONVERT(UTL_RAW.CAST_TO_VARCHAR2(decrypted_raw),'US7ASCII','AL32UTF8');
    dbms_output.put_line(V_ID ||' ' ||
    V_TYPE ||' ' ||
    decrypted_string || ' ' ||
    v_EXPIRY_DATE || ' ' ||
    v_CUST_ID);
    end loop;
    close cursor_cust_cred;
    commit;
    end;
    /

  • How can I get a parallax effect with Hub Control or change the background image scroll rate?

    Like the title says, I'm trying to get more of a parallax effect with a Hub Control in Windows Phone. In my current hub app, the picture has to be as wide as the entire hub, and it scrolls through the picture quickly. I'd like a way to make the background
    image scroll slower than the content on top of is.
    I've looked everywhere in the API docs, but I can't find anything saying how to do this. :(

    Hi PTK7,
    Yes, currently there is no documentation for this effect, however we can manually control the image scroll speed:
    http://stackoverflow.com/questions/10589192/windows-8-gridview-parallax-background-image
    Also I found a sample from code center:
    https://code.msdn.microsoft.com/windowsapps/ParallaxBackground-A-Metro-f929e558, take a look to see if these helps.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How do I create an unordered list with three items and link to id's

    How do I create an ordered list with three items and linl to id's on my page

    Thanks, I guess what I was really asking, Is there a n option in the insert menu or somewhere where Dreamweaver does it for you.
    I am not clear on what you are wanting DW to do for you?  Is it that you want it to insert a three item unordered list?  No - there's no such function.  You would need to click in Design view where you want the list to go, click on the bulleted list icon on the Property inspector, and then enter the three items separated by carriage returns.  Then you'd have to link each item specifically.
    To enter the named anchors to element ID values, CS5 has no way to do this.  You'd have to enter those links manually.

  • How to split numbers in a string with a single SQL on 10.2?

    Is it possible to to below action with a single SQL on 10.2?
    input > '3abc4de5f'
    output > '3,abc,4,de,5,f'
    Thank you.

    It might be a NLS issue. Follow the suggestion of Karthick_Arp and use [[:alpha:]] instead:Is is
    SQL> with t as (select 'a' l from dual union all
               select 'b' l from dual union all
               select 'A' l from dual)
    select * from t
    order by nlssort(l, 'NLS_SORT=GERMAN')
    L
    a
    A
    b
    3 rows selected.
    SQL> with t as (select 'a' l from dual union all
               select 'b' l from dual union all
               select 'A' l from dual)
    select * from t
    order by nlssort(l, 'NLS_SORT=DANISH')
    L
    A
    a
    b
    3 rows selected.You could also do a case insensitive match (As in TXT3)
    SQL> alter session set NLS_SORT=DANISH
    Session altered.
    SQL> with t as (select 'aADSFF3332abc4342de5Df' txt from dual
               union all
               select '3abc4de5f' from dual)
    select txt, regexp_replace(txt, '([0-9]{1,}|[a-z]{1,})', '\1,') txt2
               ,regexp_replace(txt, '([0-9]{1,}|[a-z]{1,})', '\1,', 1, 0, 'i') txt3
      from t
    TXT                            TXT2                           TXT3                         
    aADSFF3332abc4342de5Df         a,ADSFF,3332,abc,4342,de,5,Df, aADSFF,3332,abc,4342,de,5,Df,
    3abc4de5f                      3,abc,4,de,5,f,                3,abc,4,de,5,f,              
    2 rows selected.
    SQL> alter session set NLS_SORT=GERMAN
    Session altered.
    SQL> with t as (select 'aADSFF3332abc4342de5Df' txt from dual
               union all
               select '3abc4de5f' from dual)
    select txt, regexp_replace(txt, '([0-9]{1,}|[a-z]{1,})', '\1,') txt2
      from t
    TXT                            TXT2                         
    aADSFF3332abc4342de5Df         aADSFF,3332,abc,4342,de,5,Df,
    3abc4de5f                      3,abc,4,de,5,f,              
    2 rows selected.Regards
    Peter

  • HT1495 how to use multiple apple id's with a single itunes account

    I am looking to set up two iphones and a two ipads (one for me and one for my fiance) to a single itunes account to allow us to load music and apps from the same itunes account but be able to have seperate accounts for facetime on our phones and ipads.  Any recommendations on the best way to do this?

    You cannot do that. Each Apple ID needs to be tied to each separate account. Each of you must purchase your own copies of music and apps and sync to separate iTunes Libraries on the computer. The computer must have to user accounts set up - one for you and one for your fiance.
    Sharing Stuff From Different iTunes Accounts (or Computers)
    Here's how to do so using different computers:
    Transfer what content you want to the separate iTunes library on each computer. To transfer content from your library to another library do the following. We'll assume this is between husband and wife separate accounts and different Apple IDs.
    Launch iTunes under your wife's login;
    Sign her out of iTunes, then you sign in;
    Select iTunes -> Preferences -> Devices -> Disable auto-sync when an iPod/iPhone is connected;
    Connect your phone, DO NOT SYNC;
    Select Store -> Authorize this Computer (only have to do this once);
    Select File -> Transfer Purchases (all of the purchased content on your phone will be transferred to your wife's library);
    When complete eject your phone, sign out of iTunes, sign your wife back in.
    You can now sync whatever content you want to your wife's phone. Just remember all updates to apps obtained using your account must be done while signed in using your account: sign wife out, you sign in, update apps, you sign out, sign wife in, sync her phone.
    This way you can share content (permitted under the EUSLA) and still maintain your separate logins. Do the same on your computer if you want to share content from your wife's library.
    Just load whatever content you want to share on each others phones, transfer the content, then delete it from the respective phone if you don't want to keep it there.
    Contributed by user wjosten and modified by me.
    iTunes- How to share music between different accounts on a single computer

  • How to share and Access DB (.accdb) with global tables that link to SQL Server tables without having to define ODBC connections on each client PC?

    I have an Access DB with quite a few Linked Tables that point to a SQL Server backend db.  Currently I am using an ODBC connection defined on my pc, but I want other users to be able to download the .accdb file from a share and run.  Will I have
    to define this odbc connection on each client's pc?  Is there a better way to do this without having to have each client manually set this up on their PC?

    I have an Access DB with quite a few Linked Tables that point to a SQL Server backend db.  Currently I am using an ODBC connection defined on my pc, but I want other users to be able to download the .accdb file from a share and run.  Will
    I have to define this odbc connection on each client's pc?  Is there a better way to do this without having to have each client manually set this up on their PC?
    Hi Jason,
    I think you can automate that process. In each application I use a one-record-table in the FE with a field Connected. Connected is default False.
    Starting a database in the development mode ignores this flag. Starting a database in production mode starts, if Not Connected, a procedure to RefreshLink the tables to the BE, and makes Connected = TRUE, so a next startup does not
    result in a new RefreshLink.
    Instead of a Boolean you could also use a string containing the path, or whatever you want.
    Imb.

  • How do you separate tracks using effects with patch mix

    I step record using a oxygen 8 for my midi stuff and then I use a few tracks of real time audio .I just purchased a e-mu 0404 heard good and bad about it but it seems once you get past all the software issues then, its a quality sound.so far I have a great sound coming out. but cant figure out alot of things so I'll just ask one more. patch mix dsp has alot of cool effects. how do i get those and keep them separate in my recording.using mutiple tracks so if i want to put reverb on drums ,and phaze tyhe guitar, and have the ability to mix down using the separate tracks recorded with different effects.

    What software was used to produce the .tiff images?
    If it came from Photoshop on a Windows computer, open it again in Photoshop on a Mac.
    Save a copy using the Mac compression settings.

  • How can i make my header move with the page so it always shows

    I reseached the muse guides online but i could not find the answer. Maybe I missed it, butim tired of looking for it.

    maybe try pinning it?

  • How many different iPods can I sync with my single iMac user/iTunes account?

    Good Day to All,
    Can anyone tell me how many different iPods & iPhones can I successfully consistently sync/integrate using my one "user account" in iTunes on my iMac? This ist situation:
    I have always (and only) synced etc. my iPhone with my one iTunes UID which is under my ONE "User Account" on my  iMac. Recently, my elderly folks gave me 2 iPods they have never used. One is a little silver 4GB shuffle (the little guy with a built on "belt clip" & it verbally tells you what song and artist is playing. The other is also an iPod shuffle ( only 1GB), also has the metal "pinch to open; belt clip"; also no display, however it came with a little USB Dock and THIS ONE has all of the user controls on the face of it in a circular patter of course..
    To have COMPLETE successful "interaction/integration/syncing" etc (with no issues/complications etc) with my iTunes currently and previously only used with my iPhone, do I have to create two new additional "User Login/accounts" on my iMac (one for each iPod) to have all three if my devices work perfectly fine, or can I just use my same iMac login (UID) & iTunes that I use with my iPhone and have no worries?
    (ie: I created my girlfriend her own iMac login UID which she has always used for backing up/syncing etc her iPhone with HER iTunes library etc)
    In short, does iTunes have the ability to have multiple iPods & my iPhone under my one existing iTunes account AND using the same single iMac login/UID I've always used with my iPhone?
    Obviously, I know I could create an iMac login for my mom's, another for my dad's & create them both their individual iTunes accounts, but they really don't want to have to worry about dealing with all that. I'm teetering between just treating them as my iPods and mixing/adding their limited CD's into my library (again, if iTunes allows multiple iPods etc as explained above..
    OR; my other thought would be (again, if one iTunes account can integrate the two iPods as seperate devices and to just create ONE iMac UID login and ONE iTunes account under my dad's name, and use that one account for both of their music, both of their iPods, importing their CD's into the same iTunes library, then when syncing etc. just doing selective transfers/sync's of the specific music for each iPod... Even then, will iTunes be able to differentiate the two as far as backups/restored etc? I think  answering my own question as I type due to the cloud... For completely individual cloud interaction/integration, I would def need to create each of them their own iTunes accounts, otherwise they will have all of each other's songs on their devices.. (ie: And my dad def doesn't want to worry about skipping over my mom's Journey or Aerosmith tunes to get to his Willie Nelson and vice versa for example.
    (Sorry sooooo drawn out; thinking outloud) I guess it seems obvious that since all their digital music has to be on my iMac, I really should create them each their own iMac UID login as well as their own individual iTunes Acounts to insure cloud services work easily for restores/backups etc...
    Thanks for stumbling thru my thought processes here (if I didn't lose ya long ago); I'm exhausted and throwing thoughts at the classroom board to see what sticks.... The best easiest way that is.. (The two aren't always the same obviously!)
    Thank you all for your precious time and consideration and most if all; YOUR PATIENCE!! Any confirmation if the options and suggestions are greatly appreciated. You know, gotta take care of the folks & what is the simplest for them as just end users is the most important or they'll NEVER bother with them in the end...
    Respectfully appreciative,
    DB

    You can use as many iPods with one iTunes library as you want.
    (108420)

  • How do I populate my "onmicrosoft" calendar with my events from "on mycomputer" in outlook for mac 2011

    I have seen Robert Twellman's answer about a microsoft exchange account workaround for sync outlook for mac with iphone but . . . . I cannot figure out how to get my "on mycomputer" calendar events (about 1800) onto the "onmicrosoft" calendar.  I tried import but that just creates an archive on my computer.  Help please.

    Hi Francorosso,
    Welcome to the Apple Support Communities!
    I understand that you have downloaded the iCloud Control Panel on your Windows computer and would like to sync your contacts and calendars between your iPhone and computer. There are two different resources I would recommend reading over and working through in this situation. 
    The first article I wold recommend using as a resource is the one linked below. This article will help you isolate and troubleshoot the syncing disconnect between your iPhone and Outlook calendars. 
    Troubleshooting Sync Services on Windows with Microsoft Outlook 2003, Outlook 2007, or Outlook 2010 - Apple Support
    To further troubleshoot calendar syncing issues, please review the Troubleshooting on Microsoft Windows (Microsoft Outlook) section of the next attached article. 
    iCloud: Troubleshooting iCloud Calendar - Apple Support
    Best regards,
    Joe

  • FBZP: How to allow ALL currencies be piad with a single payment method

    Hello Gurus,
    can you advise on this query please? We are configuring the Auto SAP Payment Run. We would like to allow our Payment Methods in each company code to be able to handle ALL currencies. These payment methods are for overseas/non-domestic payments.
    Is there a way to tell the system that a payment method can handle ALL currencies? We tried to leave the currency specification for CURRENCY for the particular payment method BLANK under:
    FBZP -> Bank Determination -> Ranking Order -> leave CRCYwith BLANK for the payment method
    FBZP -> Bank Determination -> Bank Accounts -> leave CURRENCY with BLANK for the payment method
    FBZP -> Bank Determination -> Available Amounts -> specify an Available Amount for the Currency of the particular House bank Account
    This seemd to work OK for any local (Domestic) payment methods. The system is then able to pay out ANY currency through the House Bank Account when using the local payment method.
    But it does not work for the Overseas payment methods. The Payment Proposal says it cannot find an entry for Available Amount (ie under FBZP -> Bank Determination -> Available Amounts ) for the particular currency.
    The Local payment Method and the Overseas Payment Method are setup exactly the same. They both 'ALLOW FOREIGN CURRENCY' and they are not limited to any specific currency under FBZP -> Setup Payment Methods Per Currency.
    The only difference we can see is that for the local payment method it goes through a House bank Account that is in the currency of the company code in question. This seems to then allow the paymnet method to handle any foreign currecny.
    For the non-local payment method, it will route payments through a House bank that is in a different currency to that of the company code in question.
    Can you advise please:
    1) is it possible to allow a payment method to cater for ALL possible currencies by making ONE entry for currency. Or must you explicitly define all the possible currencies that a payment method can be allowed for?
    2) if it is possible to make one entry to cater for all currencies, can you provide the steps to do this please?
    3) is there a difference between how the system will handle a payment method for local payments which routes through a House bank Account in the Company Code currency as opposed to a payment method that is for non-local payments and therefore routes through a House bank that is not in the company code currency?
    Thank you for any guidance you can provide on any of these queries.
    Regards
    Michael Ryan.

    Hi,
    We have already maintained that the currency is BLANK at country level on the payment method.
    Just to confirm the situation again:
    - we have 2 payment methods in Sweden; 1 for local payment and 1 for overseas.
    - each payment method has been left BLANK for currency at the Country level and has the flag 'Foreign Currency Allowed' ticked. Also ecah payment method has been left BLANK for currency under FBZP -> Bank Determination -> Ranking Order and under FBZP -> Bank Determination -> Bank Accounts.
    - the system will not allow a BLANK entry to be maintained for Currency under FBZP -> Bank Determination -> Available Amounts for any payment method; the currency must be specified.
    - the local payment method goes through a House Bank/Account ID with the home country Sweden (SE) on the House Bank and with the home currency (SEK) specified on the Account ID
    - the overseas payment method goes through a House bank/Account ID with the country GB on the House bank and with the currency EUR on the Account ID
    - the system allows the local payment method to accomodate any currency via the SEK account.
    - the system will not allow any currency through the EUR account. It only allows EUR via the EUR account and not any other currency.
    If I want to pay another currency via the EUR account I need to explicitly specify for each currency the Days Life in the system under FBZP -> Bank Determination -> Available Amounts. This is not good because I then will have to specify all possible currencies under FBZP -> Bank Determination -> Available Amounts that can go through the EUR account, which will be many.
    Is there a 'block' on the system that limits the currency that can be paid through a House Bank/AccounttID when that House bank/AccountID is not in the home country/home currency? Or how can we get around tghis?
    Thanks for you further help on this.
    Regards
    Michael

  • How can I open multiple email messages with a single click?

    On the Mac mini I use at work, I can select several email messages at a time and open them all up by double-clicking the mouse pointer on any of the selected messages. My MacBook Pro at home seems to lack that functionality, even though both are running the same version of Yosemite. In order to open up multiple messages (each, in its own window) on my MacBook Pro, I need to double-click on each individual message, even though I have multiple messages selected on my MacBook Pro, using Yosemite's Mail app. I assume there is an optional setting that can enable multiple messages to be opened by double-clicking on a single selected message, but I have looked through the Mail app's preferences and I come up empty handed. Can someone please clue me in on how to get this functionality on my MacBook Pro?

    Hi,
    There is another similar icon named Bookmarks in the '''Customize''' window which provides the said functionality. You have to add that.

Maybe you are looking for

  • Date in MDX Script

    Hi, I am trying to write in mdx editor the following query which will give me previous month date. SELECT +{(DateRoll(today(),DP_Month,-1),jan)} on COLUMNS+ +from [sample.basic]+ But it gives syntax error. I checked DateRoll function and Today() func

  • Postgresql installed but not working due to missing socket

    So I installed Postgresql onto my Mac and whenever I run anything like psql or createdb cool_database_name I get the following error. psql: could not connect to server: No such file or directory Is the server running locally and accepting connections

  • CALL PROCEDURE IN SQL STATEMENT

    Why we cant call a procedure inside SQL statement?

  • Query performance tuning beyond entity caching

    Hi, We have an extremely large read-only dataset stored using BDB-JE DPL. I'm seeking to tune our use of BDB while querying, and I'm wondering what options we have beyond simply attempting to cache more entities? Our expected cache hit rate is low. C

  • Premier elements 9 won let me do anything at all.

    I have reinstalled Premier  element 9 after my computer crashed and it loads the splash screen but if I click new project etc. the main window appears but it is a gray box with nothing in it. All the menus are greyed out apart from a couple of option