How to make round curves when you are animatting with the Rec mode?

Hi! I am making a project in motion. I recored a freind writing words and stuff in the roof of my house with two flashlights. My plans was to follow the lights with motion traking: Analize move or match move. And then add a particle emmite for making something like this: http://www.youtube.com/watch?v=MZf2W3S7gV0&feature=fvw . When i tried to make the match move it was imposible. So i desided to make it manually with the REC button. And it work perfectly, the only problem is that it can's achive the round cruves (bezier like). I can only make squared like turns and it looks awful. I have also tried bezier as a path but i don't know how to make the particle emmiter follow it with different speeds, becouse the movement of the flashlight is inconstant.
What can i do to make a round curved path and make a particle emmiter follow it with the rec button with the different speeds of the flashlights? Please help me!!!! I have to deliver this work for tuesday!
Thanks for you time y hope you can help me out as soon as possible.
Juan Javier.
PD Sorry for my english! jajajaja.

Juan Javier Ibarra Pitts wrote:
When i tried to make the match move it was imposible.
Hi
Why was it impossible?
It sounds like tracking is the only way your going to achieve what your after given the way you've shot your footage and the spatial and temporal nuances therein.
You'll find comprehensive instructions on how to track particles to footage starting on page 49 of this document:
http://manuals.info.apple.com/en/MotionSupplementalDocumentation.pdf
Regards.

Similar Messages

  • HT5105 How can you do picture in picture when you are working with a Multicam clip?

    How can you do picture in picture when you are working with a Multicam clip?

    Im doing a drumming music video and with the multi cam clip all the angles are nicely sync'd top the audio.
    Problem is if i want to have 3 angles on top of the main shot, im gonna have to re-sync them all to get them to line up manually. If i could use the multi cam clip they will already be aligned
    Thanks for trying to help appreciate, hoping someone has some multiclip knowledge and will be able to tell me if yay or nay.

  • Detected use of SPRequest for previously closed SPWeb object. Please close SPWeb objects when you are done with all objects obtained from them, but not before.

    I have develop a custom solution for SharePoint Foundation 2010 that provide PDF documents filled with lists data and attachemnts.
    If the Customer run the solution to get the PDF we found in the ULS log following entry:
    03/07/2014 12:07:20.69  w3wp.exe (0x0B10) 0x18EC 
    SharePoint Foundation General                        90hv Unexpected 
    Detected use of SPRequest for previously closed SPWeb object.  Please close SPWeb objects when you are done with all objects obtained from them, but not before.  Stack trace:    at Microsoft.SharePoint.Utilities.SPUtility.GetLocalizedString(String
    source, String defaultResourceFile, UInt32 language)     at Microsoft.SharePoint.SPFieldCollection.get_DisplayNameDict()     at Microsoft.SharePoint.SPFieldCollection.GetFieldByDisplayName(String strDisplayName, Boolean
    bThrowException)     at Microsoft.SharePoint.SPFieldCollection.GetField(String strName, Boolean bThrowException)     at Microsoft.SharePoint.SPListItem.GetValue(String strName, Boolean bThrowException)    
    at Microsoft.SharePoint.SPListItem.get_Item(String fieldName)    
    at ECM_PDF_Excel.ListClicked.GetECOs(Dictionary`2 searchedEC... e918ecd4-7ed6-44bb-9e4f-d764586a2f79 ...RECONumber)    
    at ECM_PDF_Excel.PDF.Create()     at ECM_PDF_Excel.Layouts.ECM_PDF_Excel.ECMPDFExcel.ProcessRequest(HttpContext context)     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)     at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error)     at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext
    context, AsyncCallback cb)     at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr
    managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 f... e918ecd4-7ed6-44bb-9e4f-d764586a2f79
    03/07/2014 12:07:20.69* w3wp.exe (0x0B10)                        0x18EC SharePoint Foundation        
     General                        90hv Unexpected ...lags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr
    managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32
    flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)   e918ecd4-7ed6-44bb-9e4f-d764586a2f79
    We check the method
            /// <summary>
            /// Returns the ECOs in a Dictionary: ECO Number, Suffix
            /// </summary>
            /// <param name="searchedECRECONumber">Dictionary, with the search ECR/ECO Number</param>
            /// <returns>Dictionary ECO Number, Suffix</returns>
            public static Dictionary<string, string> GetECOs(Dictionary<String, String> searchedECRECONumber)
                SPSite siteContx = SPContext.Current.Site;
                SPWeb webContx = siteContx.RootWeb;
                Dictionary<string, string> listECOs = new Dictionary<string, string>();
                string ecoNumber = string.Empty;
                string ecoSuffix = string.Empty;
                if (searchedECRECONumber.ContainsKey(ConstantData.listClickedECONumberDictionary))
                    ecoNumber = searchedECRECONumber[ConstantData.listClickedECONumberDictionary];
                else
                    return listECOs;
                // Ich suche die ECO Nummber bei gegebener ECR Nummer
                // Ich brauche den Listen Namen der in den Spalten Realtion ECR Number & Realtion ECO Number einen Wert hat
                SPList dataList = webContx.Lists.TryGetList(ConstantData.listName_ECMExcelTemplateDataLists);
                if (dataList != null)
                    SPListItemCollection dataListItems = webContx.Lists.TryGetList(ConstantData.listName_ECMExcelTemplateDataLists).Items;
                    foreach (SPItem dataListItem in dataListItems)
                        Object relationECRColumnName = (String)dataListItem[ConstantData.listFieldName_ECMExcelTemplateDataLists_RelationECRNumber];
                        Object relationECOColumnName = (String)dataListItem[ConstantData.listFieldName_ECMExcelTemplateDataLists_RelationECONumber];
                        if (relationECRColumnName != null && relationECOColumnName != null)
                            // Ich habe den Listennamen gefunden in dem Spalten Realtion ECR Number & Realtion ECO Number einen Wert haben
                            string searchedListName = (String)dataListItem[ConstantData.listFieldName_ECMExcelTemplateDataLists_Title];
                            string searchedECOSuffixColumnName = (String)dataListItem[ConstantData.listFieldName_ECMExcelTemplateDataLists_RelationECONumber];
                            // Get the List from variable listName
                            listECOs = GetECOsDictionary(searchedListName, searchedECOSuffixColumnName, ecoNumber, relationECOColumnName);
                return listECOs;
    - What take we wrong?
    - How can we avoid this message?
    Regards
    Jonnyenglisch
    Ralf Happe - Christobal Colón N° 1 ES 07670 Portocolom Tel.: +34 6961 0375 7 @: [email protected] Skype: ralfhappe msm: [email protected] www.ralfhappe.com ralfhappe | soluciónes

    Here the code of GetECOsDictionary:
             /// <summary>
            /// Fill the dicionary with related ECO Numbers/Suffix
            /// </summary>
            /// <param name="searchedListName">String: the name of the list</param>
            /// <param name="ecoNumber">String: the ECO Number</param>
            /// <param name="relationECOColumnName"></param>
            /// <returns>Dictionary</returns>
            private static Dictionary<string, string> GetECOsDictionary(string searchedListName, string ecoNumber, Object relationECOColumnName)
                SPSite siteContx = SPContext.Current.Site;
                SPWeb webContx = siteContx.RootWeb;
                Dictionary<string, string> listECOs = new Dictionary<string, string>();
                SPQuery oQuery = new SPQuery();
                oQuery.Query = "<OrderBy>" +
                                    "<FieldRef Name='" + "Title" + "' Ascending='TRUE'></FieldRef>"
    +
                                "</OrderBy>" +
                                "<Where><BeginsWith>" +
                                    "<FieldRef Name='" + "Title" + "'/>" +
                                    "<Value Type='Text'>" + ecoNumber + "</Value>" +
                                "</BeginsWith></Where>";
                SPListItemCollection searchedListItems = webContx.Lists.TryGetList(searchedListName).GetItems(oQuery);
                foreach (SPItem searchedListItem in searchedListItems)
                    // Wenn die geclickte ECO Nummer gleich der Listen ECO Nummer ist dann setze die gefundene ECO Nummer
                    string foundECONumber = (String)searchedListItem[relationECOColumnName.ToString()];
                    string[] splitECONumber = foundECONumber.Split(ConstantData.splitBy_Slash);
                    if (ecoNumber == splitECONumber[0])
                        ecoNumber = splitECONumber[0];
                        if (splitECONumber.Count() == 1)
                            listECOs.Add(foundECONumber, "0");
                        if (splitECONumber.Count() > 1)
                            listECOs.Add(foundECONumber, splitECONumber[1]);
                return listECOs;
    Ralf Happe - Christobal Colón N° 1 ES 07670 Portocolom Tel.: +34 6961 0375 7 @: [email protected] Skype: ralfhappe msm: [email protected] www.ralfhappe.com ralfhappe | soluciónes

  • HT2589 what is a security code when you are registering at the iTunes after you have put in your credit number

    What is the security code when you are registering in the iTunes Store just after you have put in your credit card number?

    It's the 3 or 4 digit code that is on the credit card, it's on the front of some cards, or others it's on the signature strip on the back : http://support.apple.com/kb/HT3541

  • Detected use of SPRequest for previously closed SPWeb object. Please close SPWeb objects when you are done with all objects obtained from them

    HI
    i am keep seeing this message in ulsviewer of splogs in a webfront end server
    Detected use of SPRequest for previously closed SPWeb object.  Please close SPWeb objects when you are done with all objects obtained from them, but not before.  Stack trace:  
    at Microsoft.SharePoint.SPWeb.get_Exists()   
    at Microsoft.SharePoint.WebControls.CssLink.OnLoad(EventArgs e)   
    at System.Web.UI.Control.LoadRecursive()   
    at System.Web.UI.Control.LoadRecursive()   
    at System.Web.UI.Control.LoadRecursive()   
    at System.Web.UI.Control.LoadRecursive()   
    at System.Web.UI.Control.LoadRecursive()   
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)   
    at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)   
    at System.Web.UI.Page.ProcessRequest()   
    at System.Web.UI.Page.ProcessRequest(HttpContext context)   
    at ASP._layouts_icc_icc_scan_view_aspx.ProcessRequest(HttpContext context)   
    at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()   
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)   
    at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error)   
    at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb)   
    at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context)   
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)   
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)   
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)   
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)
    adil

    Hi,
    Your SPweb object is not disposed properly.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/3a25eb86-8415-4053-b319-9dd84a1fd71f/detected-use-of-sprequest-for-previously-closed-spweb-object-please-close-spweb-objects-when-you?forum=sharepointdevelopmentprevious
    http://sharepoint.stackexchange.com/questions/50793/detected-use-of-sprequest-for-previously-closed-spweb-object-after-spquery
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • I bought the iPhone 4 user and when you are upgrading to the new system  ios7 I have a problem activation lock note that I do not know what is the ID Apple and The password because the phone used?

    I bought the iPhone 4 user and when you are upgrading to the new system  ios7 I have a problem activation lock note that I do not know what is the ID Apple and The password because the phone used?
    please help my what can i do?
    IMEI : 012658006380001

    Welcome to the Apple community Kobra.
    Unfortunately, you cannot do very much with your phone unless you get assistance from the previous owner, they should either provide you with the password to unlock it or remove their account from the phone entirely remotely through iCloud.com > Find My Phone.

  • Is there a location aware wifi option (or app) that enables wifi at a specific location (home) and automatically disables it when you are away from the specified location?

    I manually turn off my wifi when leaving home for several reasons:
    1. I don't want my wifi to be on and constantly scanning wifi networks while I am away from home due to privacy reasons.  Many retail stores and airports are now tracking users based on their smartphone's wifi pings.  They can then store your phone's MAC address (the unique identifier of your phone) to determine how often you visit the store and where you go within the store.  It's just a matter of time before they match up your phone's MAC address with your credit card/payment info and then to your identity.  The only way to subvert this is to turn off your phone's wifi.
    2. For security reasons: Wifi access points can track devices that broadcast their wifi signal, even if they don't ever actually connect to the access point's network.  These access points can then store your device's details including your phone's MAC address.  Once your phone's MAC address is discovered, it can be targeted by a hacker.  In addition, there are multiple well known hacker tools that can be used to scan for smartphone wifi signals in order to detect and then hack your iphone.  Bottom line: if your wifi is discoverable, then your device is hackable.
    3. I believe it would save battery life if the iphone's wifi is not on and constantly scanning for networks all the time.
    There are other reasons as well, but the above are my 3 main reasons for asking about this.
    The reminders app is location aware - you can set reminders to alert you when you are at a specific location.  So, why not provide the option (or an app) to only enable wifi when you are at home - or any other location where you have an authorized or trusted wifi?
    As it is right now, the iphone's wifi is broadcasting 24/7 everywhere you go.  Not great for privacy & security.  When I turn off my wifi, the phone uses my 4G plan for data and GPS for location services... so wifi is not needed at all for data or location services while I am away from home (and no, wifi does not improve location accuracy, that is a fallacy... there is nothing within the wifi protocol that could ever improve location accuracy).  But the point is, wifi should have a location aware option.  Otherwise, it's just a matter of time before there is a headline story about how not having this feature is a huge security/privacy problem.

    Understood.  However, the point that I'm trying to make is that it's not the WiFi access point's security that's in question, it's having your phone's WiFi in an always-on mode that's in question.  It's simple: if your phone's WiFi is on, then it is both discoverable and hackable... even when it's not connected to a WiFi network or access point.  Here's an article about a drone in London that was created to hack smartphone WiFi signals (and hackers have been doing what this drone does for years):
    http://money.cnn.com/2014/03/20/technology/security/drone-phone/
    The point is that it's not  secure to have your phone's WiFi in an always-on mode.  It would be better for privacy and security if Apple made WiFi location aware so that it is only enabled when you are at a trusted location (e.g. your home or office).  Or, at least give us the option of location aware WiFi so that each user can determine the best mode for their phone:
    (1) Always-On (current default - not secure and many privacy issues).
    (2) Trusted mode (only on at trusted locations).
    (3) Off.

  • How to backup a rootenv when there are subfolders with DBs?

    Hello,
    Is there any way to hotbackup a rootenv with databases when there are subfolders with databases?
    When I run a hotbackup (with db_hotbackup) on my rootenv, it only backups databases from the root of my rootenv. But, in that root directory, I have some subdirectories with databases too.
    Thank you.

    Hi,
    If you have root directory as : */your/root/dir*
    and within that you have folders like : */your/root/dir/sub1* and */your/root/dir/sub2* and would want to backup the db files in */your/backup/dir* then, you should invoke db_hotbackup as
    db_hotbackup -cv -b /your/backup/dir -h /your/root/dir -d ../dir/sub1 -d ../dir/sub2
    Regards,
    Debsubhra Roy

  • How do you stop Lightroom from automatically making adjustemnts when you are looking at the images?

    There is some kind of auto adjustment happening when I look at my images for the first time.
    Any knowledge of this, I've looked in help and can't find anything.
    Anyone know how to make it stop?
    Usually it looks pretty good, but it would be nice to simply revert if you don't like what it did.
    If you could please e-mail me, I don't really like the format of this forum, so I'm don't know when I'll be back, or where my post will be!
    Thanks!
    jayme (@) jaymehalbritter.com

    Jayme, what you see first is the camera produced jpg (thumbnail) which is done by the camera at the time the shot is taken even if you have set the camera to save as raw. This thumbnail jpg, which is part of the raw file, is required for you to view the image on the camera lcd screen. If it were not produced you would not be able see the image either in the camera or on your computer. Raw files are not in a viewable format until they are processed by a raw converter.
    When you import the raw files into the LR library LR will first display the camera produced thumbnail as a preview until it has been able to convert the raw data. This is done at the LR default settings. Since the LR conversion engine is different from the camera firmware it is not able to produce an exact jpg image. LR does not have the info/ technology used by the camera and uses its own proprietary procedures to produce its own conversion.
    All the camera manufacturers have their own proprietary technology for processing the raw data which is not publicly shared for competitive reasons.
    Tools are provided in LR to allow you to make your own adjustments to the raw data and create an image to your liking. Hopefully even better than what your camera is able to produce. You now have your own "darkroom" to produce your images.
    There are lots of tutorials available to bring your skils up to mark. Have fun. There is a thread in the FAQ which deals with this issue. Every raw converter has its own taste which you can adjust.

  • How to install English version when you are Dutch

    I am Dutch but I am working for a English company in the Netherlands. Everything we do is in English. Is it possible to use an English version of FireFox?
    When I try to access the website and downloads I am auto redirected to Dutch content and downloads. Which is nice and smart but what to do if you want English? Should I take a trip to an English country to get access to the English bits?

    Download it from here. <br />
    http://www.mozilla.com/en-US/firefox/all.html

  • Is there a function on LabView so when you are done with a sub vi you can return back to the main vi while i tis running?

    I went to VI properties and selecting for the front panel to open when called and close when finished, but it still doesn't close when I'm running the program.  What else can I do?

    These options do exactly what they say - they cause the subVI's front panel to open when the subVI starts running and they close the front panel when the subVI stops. This can be used, for example, for pop-up dialogs.
    My guess would be that you are using the abort button to stop the VI. This is a big no-no and causes all the running VIs to stop. What you should do is use the code to end the VI's run. If this doesn't help you, I suggest you post your code (File>>Save with Options>>Development Distribution) and explain what you're trying to do.
    To learn more, I suggest you read the LabVIEW user manual. Also, try searching this site and google for LabVIEW tutorials. Here and here are a couple you can start with. You can also contact your local NI office and join one of their courses.
    In addition, I suggest you read the LabVIEW style guide.
    Try to take over the world!

  • HT5312 What do you do when you are not recieving the email to reset apple id security questions

    i forgot my security question answers and notrecieving the e-mail to reset them. what do I do

    Welcome to the Apple Community.
    If you don't receive a reset email or you don't have a rescue address, you should contact AppleCare who will initially try to assist you with a reset email or if unsuccessful will pass you to the security team to reset your security questions for you.
    If you are in a region that doesn't have international telephone support try contacting Apple throughiTunes Store Support.

  • Why does imovie not show the video when you are scrolling through the timeline

    why is it when using imovie when you scroll through the timeline it doesn't show in the movie window this is for imovie 11 when editing a large video composedof many small clips

    Do you have AuthenTec TrueSuite ?
    See:
    *[[/questions/937571]] Firefox address field hide the last part of the address when loaded

  • HT1657 Can I watch a rental movie in my iPad when in an airplane with the airplane mode on?

    I rented a couple of movies hoping to watch them in the plane and all it says is it can not open when I try to watch.... Is there a way to watch rented movies in airplane mode?

    Actually, I just called AppleCare and they told me that an Internet connection was required. I tried it anyways. Once the rented movie is fully downloaded onto your iPad, it will appear in the Videos app, in the Rentals section. From there, even if you turn the airplane mode on, you should be able to press the play button and watch the movie. Note that I rented the movie in HD format and that I use the iPad 3rd generation.
    Hope this helps,
    Cheers,

  • Upcoming notification service, how to make use of if you are small company?

    How does the upcoming notification service works? I would assume that apple does not host any code for you, but just an open service. In other words, you would need some sort of backend/server code and hosting for yourself. This is easy for companies like ebay or what not, but how bout small companies and individual developers?
    Say I'm developing an app that uses an online service and I would like to provide updates and alerts depending on the state of that service. There's no place to place that checking code. It cant be on the phone, because it cant be in the background. And it wont be on apple's server that's for sure. So I have to find a scalable hosting solution basically?
    Insights?

    Even if every iPhone user in the world bought a copy of your application you still wouldn't get the kind of traffic Google or Amazon sees. If your sales aren't enough to sustain the $50-$100/mo. a decent VPS account will run then scalability probably won't be that big of a problem for you. If they are, then this isn't really anything to complain about--every business has associated expenses, and in this case they'd likely be fully deductible.

Maybe you are looking for

  • ITunes wont Trasfer shared songs to my other PC

    Hi, I am trying to transfer songs from my desktop to my laptop. Both computers are authorized, both have home sharing on, both are logged into my iTunes account. Both are the latest version of iTunes. I can see and listen to the shared libraries of b

  • Cost of execution of a query

    Hi, I have two queries both give exactly the same result set , both the queries are identical just with one difference , in one query we have code = '51 2345' and in the other query we have text = 'impulse' , which is the text value for the code . Th

  • Restrict documents from being assigned to a BOM while status is not release

    Hi, I need certain documents to be restricted while they are still 'In preparation' status. Currently eventhough the status is not released, user can assign a document to a BOM. I am sure i am missing something. Let me know if anyone has done this. W

  • Firewire Drives not showing and no Target disk mode

    Strange problem. My two g4 450's one dual and one single will not start in Target disk mode, will not recognize Firewire drives and yet WILL recognize my iSight camera. What's going on? Have 6 different drives to choose from but none mount. They all

  • Creative cloud isn't seeing my CC apps

    I had previously installed the CC apps with the old application manager, but I've also kept a copy of CS6 installed just in case I needed them. Have just installed the new CC application manager or whatever it's called, but it's only seeing the CS6 s