Would anyone be so kind to help me breakdown this VFX? NSFW

http://www.youtube.com/watch?v=PQ5DX_3F42c
I am guessing he uses Trapcode Particular for the meteor smoke trail.
But I cannot figure out, no matter how much tweaking and experimenting, how he got a red glow throughout the smoke
and the sheer realism of the smoke. Would anyone please help me figure it out step by step?

It's not that hard if you think multiple layers. I'd say a minimum of 5
Background
Black particles
Red Particles
Roto of actor
Flair
The project could easily require twice that f you start adding in the fine smoke and color correction.
The higher the number of particles and the smaller they are the more realistic the smoke. It just takes some tweaking and a bunch of experimentation with the physics. Don't expect to have someone give you a single setting for particular that will duplicate this effect on a single layer. It just isn't going to happen.

Similar Messages

  • The sound in my IPad is not working after I downloaded the new iOS 7. I tried to reset the IPad to no avail. Could anyone be so kind to help me?

    The sound in my IPad is not working after I downloaded the new iOS 7. I tried to reset the IPad to no avail. Could anyone be so kind to help me?

    I"m going to make the presumption that you've checked the volume and that you don't have it muted. One thing some have suggested is to go into the settings and reset all settings.
    It is kind of a drag because you wil have to retweak everything but it's helped for some.

  • Would Anyone Mind Giving A Few Tips To Make This Script More Robust?

    Hello. I haven't done any scripting before but I've written this script to run as a post-recording process in Audio Hijack Pro:
    on process(theArgs)
    -- This part of the script will disable any timers that are set to repeat exactly 7 days (±1 minute) after the recording started
    -- Dates have the format "Monday 1 January 2007 12:00:00"
    tell application "Audio Hijack Pro"
    set allSessions to every session
    repeat with eachSession in allSessions
    set allTimers to every timer in eachSession
    repeat with eachTimer in allTimers
    try -- The try protects against empty values of "next run date"
    set nextDate to word 1 of ((next run date of eachTimer) as string)
    set nextDay to word 2 of ((next run date of eachTimer) as string)
    set nextMonth to word 3 of ((next run date of eachTimer) as string)
    set nextYear to word 4 of ((next run date of eachTimer) as string)
    set nextHour to word 5 of ((next run date of eachTimer) as string)
    set nextMin to word 6 of ((next run date of eachTimer) as string) as number
    set weekOn to ((current date) + (60 * 60 * 24 * 7) - (duration of eachTimer)) -- This calculates the date in 7 days, less the duration of the timer
    set weekOnDate to word 1 of (weekOn as string)
    set weekOnDay to word 2 of (weekOn as string)
    set weekOnMonth to word 3 of (weekOn as string)
    set weekOnYear to word 4 of (weekOn as string)
    set weekOnHour to word 5 of (weekOn as string)
    set weekOnMin to word 6 of (weekOn as string) as number
    if nextDate is equal to weekOnDate and nextDay is equal to weekOnDay and nextMonth is equal to weekOnMonth and nextYear is equal to weekOnYear and nextHour is equal to weekOnHour and nextMin is greater than (weekOnMin - 60) and nextMin is less than (weekOnMin + 60) then
    set enabled of eachTimer to false
    end if
    end try
    end repeat
    end repeat
    end tell
    -- The script then goes on to import the recordings into iTunes (as wavs), set tags and copy the wavs up to the server
    if class of theArgs is not list then -- This is a standard Audio Hijack Pro routine
    set theArgs to {theArgs}
    end if
    set recordedFiles to {} -- This will protect against theArgs being changed by Audio Hijack Pro whilst this script is still running
    set recordedFiles to theArgs
    set convertedFileList to {} -- This will keep track of the paths to the imported files
    tell application "iTunes"
    set current encoder to encoder "WAV Encoder"
    copy (convert recordedFiles) to trackList -- Do the conversion
    if class of trackList is not list then
    set trackList to {trackList}
    end if
    repeat with eachTrack in trackList -- Set the tags
    set artist of eachTrack to "Theatre Archive"
    set album of eachTrack to word 1 of ((name of eachTrack) as string)
    set convertedFileList to convertedFileList & (location of eachTrack as alias)
    end repeat
    end tell
    tell application "Finder"
    repeat with eachFile in convertedFileList
    -- This section (down to HERE) is a subroutine to delay the file copy until iTunes has finished creating the files
    set currentSize to size of (info for eachFile)
    delay 1
    set latestSize to size of (info for eachFile)
    repeat until currentSize is equal to latestSize -- Keep checking the size every second to see if it's stopped changing
    set currentSize to size of (info for eachFile)
    delay 1
    set latestSize to size of (info for eachFile)
    end repeat
    -- ...HERE
    duplicate eachFile to "Server HD:" as alias -- Copy the files up to the server
    end repeat
    end tell
    end process
    The idea is that it disables the repeating timer that created the recording (as I don't necessarily want it to repeat every week), converts the recording to wav in iTunes and then copies the wav up to our server. If I run it too many times in quick succession some files don't get converted, and then some wavs don't get copied to the server. I'd like to know a way of getting it to tell me why not!
    Thanks for any advice you can give.
    Rich

    Since you specifically ask if people can make it 'more robust', it would help if you indicated which areas, if any, were of particular concern.
    For example, does the script frequently fail in one particular area?
    That would help narrow it down significantly. There's little point in people deeply analyzing code that works just fine.
    If, on the other hand, you're looking for optimizations, there are several that come to mind.
    Firstly, you're making repeated coercions of a date to a string in order to compare them. String comparisons for dates are inherently dangerous for many reasons.
    For one, different users might have different settings for their date format.
    Both "Monday May 28th 2007 1:02:03am" and "28th May 2007 1:02:03am" are valid coercions of a date to a string, depending on the user's preferences.
    You might expect the former format whereas the current system settings use the latter so now 'word 1" returns "28th" rather than "Monday" as you expect.
    The problem is exascerbated by the fact that since you're coercing to strings you're now using alphabetical sorting, not numeric sorting. This is critical because in an alpha sort "3rd" comes AFTER "20th" because the character '3' comes after the character '2'. However I'm guessing you'd want events on the 3rd of the month to be sorted before events on the 20th.
    So the solution here is to throw away the entire block of code that does the date-to-string coercions. If my reading of the code and the expected values is correct it can all be reduced from:
    <pre class=command>set nextDate to word 1 of ((next run date of eachTimer) as string)
    set nextDay to word 2 of ((next run date of eachTimer) as string)
    set nextMonth to word 3 of ((next run date of eachTimer) as string)
    set nextYear to word 4 of ((next run date of eachTimer) as string)
    set nextHour to word 5 of ((next run date of eachTimer) as string)
    set nextMin to word 6 of ((next run date of eachTimer) as string) as number
    set weekOn to ((current date) + (60 * 60 * 24 * 7) - (duration of eachTimer)) -- This calculates the date in 7 days, less the duration of the timer
    set weekOnDate to word 1 of (weekOn as string)
    set weekOnDay to word 2 of (weekOn as string)
    set weekOnMonth to word 3 of (weekOn as string)
    set weekOnYear to word 4 of (weekOn as string)
    set weekOnHour to word 5 of (weekOn as string)
    set weekOnMin to word 6 of (weekOn as string) as number
    if nextDate is equal to weekOnDate and nextDay is equal to weekOnDay and nextMonth is equal to weekOnMonth and nextYear is equal to weekOnYear and nextHour is equal to weekOnHour and nextMin is greater than (weekOnMin - 60) and nextMin is less than (weekOnMin + 60) then
    set enabled of eachTimer to false
    end if</pre>
    to:
    <pre class=command>set nextDate next run date of eachTimer
    set weekOn to ((current date) + (60 * 60 * 24 * 7) - (duration of eachTimer)) -- This calculates the date in 7 days, less the duration of the timer
    if nextDate is greater than (weekOn - 60) and nextDate is less than (weekOn + 60) then
    set enabled of eachTimer to false
    end if</pre>
    The next area of concern is your copying of the files to the server. I don't understand why you have all the delays and file size comparisons.
    Given a list of aliases convertedFileList, you can simply:
    <pre class=command>tell application "Finder"
    duplicate convertedFileList to "Server HD" as alias
    end tell</pre>
    The Finder will copy all the files in one go and you don't need the repeat loop or the delays.

  • HT1338 My system is up to date - I've been at this all day - why can't my gmail account send mail and keep it in the sent folder is all I want to know - I would appreciate it if someone can help me fix this bcs no one I have called is able to figure it ou

    I've been asking everyone I can think and no one seems to know the answer - very frustrating but my god, it's only a gmail account - why can't i send mail from the laptop? someone told me I would have to pay $90 for an application that's missing on my macbook air, I say gmail is free, why do I have to pay for it and they hang up on me - guy at apple store doesn't know what the problem is, it guys at work are being snobby about the type of phone i have - i only want to send mail from my gmail account and i am unable to do so from the laptop - i don't know why i'm bothering to put this here because no one has an answer

    Have you tried contacting Gmail tech support?

  • TS1468 I am having trouble with two cover flows duplicating themselves more than once, is there anyone out there that can help me with this, they are not duplicated in my itunes library, just the ipod.

    I am having trouble with two cover flows on my IPOD, duplicating themselves more than once, they haven't duplicated themselves in my Itunes library, just the ipod, could anyone have any ideas on how I could fix this problem. I have tried so many times, even if I restore the ipod, it still does the same thing. Please if possible email me at [email protected] with any suggestions.

    Aha! I have sorted it.
    For those with similar problems, the solution is this:
    Macintosh HD > Library > Audio > MIDI Drivers
    Then delete DigiDioMidiDriver.plugin

  • In the last two months when I turn my iPhone horizontal the screen still remains vertical??? Can anyone share a tip to help me fix this ?

    I cannot figure out how to get my screen to turn horizontally when I turn the phone. It still remains vertical.

    I am pretty sure that using pre-paid SIM cards is not an officially supported feature, so you may have been automatically switched to an iPhone plan, which is the standard for all iPhone devices on AT&T/GSM carrier.

  • Please help me with this "2012 R2" PS Script

    Please be kind to help me with this Script. Thank you.....
    Import-Csv C:\Scripts\NewADUsers.csv | foreach-object { $userprinicpalname = $_.SamAccountName + "@{loona}.com"; New-ADUser -SamAccountName $_.SamAccountName -UserPrincipalName $userprinicpalname -Name $_.name -DisplayName $_.name -GivenName
    $_.cn -SurName $_.sn -Description $_.Description -Department $_.Department -Path $_.path -AccountPassword (ConvertTo-SecureString "Loona123" -AsPlainText -force) -Enable $True -PasswordNeverExpires $Ture -PassThru }
    New-ADUser : Directory object not found
    At line:1 char:114
    + Import-Csv C:\Scripts\NewADUsers.csv | foreach-object { $userprinicpalname = $_. ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (CN=Student01,OU...DC=loona,DC=com:String) [New-ADUser], ADIdentityNotFoundException
        + FullyQualifiedErrorId : ActiveDirectoryCmdlet:Microsoft.ActiveDirectory.Management.ADIdentityNotFoundException,Microsoft.Activ 
       eDirectory.Management.Commands.NewADUser

    Please check it the caractors - + =. i have no idea about PowerShell
    ImportCsv C:\Scripts\NewADUsers.csv |
    ForEach-Object{
    $props=@{
    SamAccountName=$_.SamAccountName
    UserPrincipalName=$_.SamAccountName + '@loona.com'
    Name=$_.name
    DisplayName=$_.name
    GivenName=$_.cn
    SurName=$_.sn
    Description=$_.Description
    Department=$_.Department
    Path=$_.path
    AccountPassword=(ConvertTo-SecureString "Loona123" -AsPlainText -force)
    Enabled=$True
    PasswordNeverExpires=$true
    NewObject @orops -PassThru

  • Hi, Firefox keeps crashing, the crash signature is ProcessBoundaryCells. I tried searching Mozilla, but there are no supporting articles. If anyone can please help me fix this issue, that would be great. Thanks

    Hi, Firefox on my desktop keeps crashing at just random moments. Sometimes not very often at all, but other times it can happen a few times within an hour.
    My Desktop Window Manager also crashes regularly and the dialogue box always pops up saying its stopped working. However, this doesn't seem to effect anything.
    It could be realated though, as I just had this desktop built a few weeks ago and a few times it's crashed as well as programs.
    If anyone can help me fix this issue with Firefox, that would be great. Thanks in advance.

    Hi,
    I updated the Flash plugin, but I still keep getting crashes.
    I will try to disable the hardware acceleration in the Flash Player as you recommended and hopefully this will work.
    Although the last crash report I got has a different problem then before,
    https://crash-stats.mozilla.com/report/index/6c5d8c66-6789-4b52-94e4-61cdf2110530
    Signature: BuildArgArray
    If you can please offer any more advice that would be great, thanks.

  • I am trying to open some *.avi files in quicktime, they are from my security camera at home.  It will not open them, would anyone be able to help me?  It says I need a plugin but it does not tell me which one.

    I am trying to open some *.avi files in quicktime, they are from my security camera at home.  It will not open them, would anyone be able to help me?  It says I need a plugin but it does not tell me which one.

    I am trying to open some *.avi files in quicktime, they are from my security camera at home.  It will not open them, would anyone be able to help me?  It says I need a plugin but it does not tell me which one.
    Basically your player is telling you that you need to install the codecs that will play the compressed data within the AVI file.
    AVI is a legacy file container in which the tracks of data are interleaved to maintain synchronization. This data can be encoded using many different audio and video codecs. Your problem is to determine which codecs you need for the player you are trying to use and install them if they are available. Failing that, your will either have to play the files in a different player which has the codec support your require built into the app or convert the content to a compression format that is natively compatible with the player you wish to use.
    Since you have not stated what platform, operating system, and particular player you are targeting for playback, it is difficult to provide precise instructions for fixing your specific problem at this point. Suggest you try alternative players compatible with your system and platform to see if they will play the files, use a dedicated media information utility to determine the codecs needed for playback, or post a sample file for analysis.

  • I would like to remove a short gray edge from two images. I need help in that I am not yet able to use PhotoShop. Could somebody kindly help me with this?

    I would like to remove a short gray edge from two images. I need help in that I am not yet able to use PhotoShop. Could somebody kindly help me with this?

    I doubt it Doc Maik, but I am certainly happy to learn The image is this one (and a similar one). They would be beautiful portraits if not for the "extra mouth". The grey edge that I would like to remove is the excess of (grey) mouth that is actually my horse's chin, but that in the pictures looks like a wider, looping mouth. Practically, looking at the picture, the "extra mouth" to the left. What I would love it to be able correct that to look like a normal mouth, which means that half of the protruding edge should be removed. I am not sure I was able to explain myself, but here is one of the two pictures. I thank you for you kindness in being available to advise me.

  • Would anyone be able to help me setup Ubuntu??

    Hello All,
    I finally got my new Mac Book Pro and am dying to install Ubuntu on it mainly for 3D graphics. Would anyone be willing to give me step by step instructions on how to dual boot Snow Leopard with a copy of Ubuntu that I've burned to cd. Any help on this would be greatly appreciated.
    Best Regards,

    Hi freesparks,
    have a look at Ubuntus community here: https://help.ubuntu.com/community/MacBookPro
    They provide excellent help.
    Regards
    Stefan

  • HT4009 I can not buy in-app purchase in application name clash of clan My balance in Apple ID is sufficient to buy that item. Please kindly help me on this issue.Your help would be appreciated.

    I can not buy in-app purchase in application name clash of clan My balance in Apple ID is sufficient to buy that item. Please kindly help me on this issue.Your help would be appreciated.

    What happens when you tru buy items in it ?
    If you are getting a message to contact iTunes support then you can do so via this page and ask them why the message is appearing (we won't know why) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    If it's a different problem ... ?

  • No sound for incoming calls but it works using speaker and earpiece. I can't hear anything but the other party can hear me clearly. I was told it's hardware problem. Would anyone please help? Thanks

    No sound for incoming calls but it works using speaker and earpiece. I can't hear anything but the other party can hear me clearly. I was told it's hardware problem. Would anyone please help me? Thanks

    This is an annoying problem for many people. Most likely your dock connector (on the bottom where you plug in your phone) is dirty or screwed up and is probably just coincidence that it happened after you updated. Some people have had success cleaning the port with a dry clean tooth brush. There is a long discussion going on at the thread I linked below. Good luck...
    https://discussions.apple.com/thread/2475631

  • HT4967 "In the ICLOUD section of iCal" - I don't have this on my Mac iCal. How would I get it? I currently have an empty iCal on iCloud. I urgently need to back up my iCal, Could anyone help please? This is SO frustrating.

    Sorry. This is where my question should be....
    "In the ICLOUD section of iCal" - I don't have this on my Mac iCal. How would I get it? I currently have an empty iCal on iCloud. I urgently need to back up my iCal, Could anyone help please? This is SO frustrating.

    Have you enabled iCloud syncing for calendars on your mac, which requires OS X Lion (10.7.2)? See http://www.apple.com/icloud/setup/mac.html.

  • Hello, I have accidentially deleted files in root folder of my iPad(1). Now iPad is dead completely. I would really appreciate if anyone could help me fix this. Thanks in advance.

    Hello,
    I have accidentially deleted files in root folder of my iPad(1). Now iPad is dead completely. I would really appreciate if anyone could help me fix this.
    Thanks in advance.

    Support for jailbroken devices cannot be given here. Go to the website that helped you get root access in the first place.

Maybe you are looking for

  • Call Button Greyed Out After A Third Participant Is Added to The Conversation in Office Communicator 2007 R2

    Hi there, I have a problem with the office communicator. I'm able to make a call to one party without any problems. The issue occurs when I add two or more parties into the conversation. The call button will be greyed out and Im unable to make a call

  • Howto sync between alsb console and the Oracle Workshop

    I was wondering if it's possible to sync between my project in Oracle Workshop for WebLogic and the project which is deployed on the server. When i do some changes in the alsb-console i want to see/sync/import them in my project in the workshop too.

  • Placing ActionScript

    Basically I'm trying to make back and forwards buttons in my flash document. I've gotten to the part of writing the actionscripting and for some reason I'm having problems placing the code on the individual frames. What happens is say I go to frame o

  • RFx email recipient

    Hi, We noticed that when we send RFx to vendors, it refers to the email address assigned in the relationship between the vendor business partner and the contact person business partner. We'd like the program that sends email to vendors to refer to th

  • Skinned scrollbar thumb does not reach the bottom of the track

    I have an application in Flex 4.1 where there is a vertical List, bound to an array. As long as the List scrollbar is not skinned, everything is ok, the thumb oscillates from top to bottom of the track. But after adding a skin it works bad. The thumb