Looking for real world effects site

Hi everybody
This is the first time ever using this forum, so please don't let me down.
I'm using FCS3 and doing some small jobs for a while now, and recently, I've been asked to film a music video, and the guy wants some professional effects, and i got scared since then.
here comes my request; I need a website or ... that show me then explain to me some real world effects that i can use it in the music video,
I'm really tired of looking and searching.
Thanks very much
Salah

Oho...so you want to go from dabbling in video with some small jobs, to doing high end effects like you see in THE MATRIX? Quite a leap. And you want to learn how to do this via online tutorials and the like?
Sigh.
like how to freeze frame while sweeping the camera about 180 degree around the objects (people).
Rent THE MATRIX and watch the EXTRA called BULLET TIME. See how they use 150 still cameras linked together to go off mere milliseconds apart. HIgh end visual effects guys with years of training figured that out.
i need someone to say this is a new tool in motion and you can use it to create this kind of effects ( real world, with people )
Not gonna happen because it doesn't exist. YOu want to have some application or plugin somehow be able to freeze someone, and spin them around, somehow seeing the OTHER SIDE of them, even though the one camera is on one side. Or, you can use 5-10 cameras all shooting that person, and use something like After Effects or other 3D program that stitches together that footage to make it do just that. Not simple...not by a longshot.
that's what I'm searching for. new professional stuff.
Professionals don't usually put their trade secrets online. Otherwise any old person could do what they did, and they wouldn't get paid the big bucks to figure it out, and do it on music videos and movies. That's why you don't find anything online.
Sorry to be snarky here...but I still wish you luck in figuring this out.
Shane

Similar Messages

  • While using Firefox, a site popped up and said it was Firefox scanning for viruses. It then said I had dangerous viruses and should download a security program. Is this for real? The site was update32.escmce.ce.ms

    While using Firefox, a site popped up and said it was Firefox scanning for viruses. It then said I had dangerous viruses and should download a security program. Is this for real? The site was update32.escmce.ce.ms I googled this site and it does not exist. Now, I am worried about the security on my computer.

    If you're running under Windows, I suggest you download and install Microsoft's Security Essentials. It protects against these types of attacks and tends to find stuff that other anti-virus scanners don't find. You're system could be infected because of that bogus, evil anti-virus scan. Install and run the software while in safe mode.

  • Looking for a similar effect

    I am looking for an effect similar to the one which comes after this site: http://www.nisgia.com/ is loaded. The coming and scattering of items. Any resource or tutorial to something similar?

    Here is if you want to use it as doc class:
    package
         import com.greensock.easing.Cubic;
         import com.greensock.TweenMax;
         import flash.display.Graphics;
         import flash.display.Shape;
         import flash.display.Sprite;
         import flash.events.Event;
         public class Scatter extends Sprite
              // array of pages
              private var pages:Array;
              // number of pages
              private var numPages:int = 100;
              public function Scatter()
                   if (stage) init();
                   else addEventListener(Event.ADDED_TO_STAGE, init);
              private function init(e:Event = null):void
                   removeEventListener(Event.ADDED_TO_STAGE, init);
                   createPages();
              private function onEnterFrame(e:Event):void
                   // random to select from array
                   var index:int = (pages.length - 1) * Math.random();
                   //trace(index);
                   var pageObj:Object = pages[index];
                   var page:Sprite = pageObj.page;
                   // intermadiate scale
                   var interScale:Number = 1.1;
                   page.x = pageObj.xs;
                   page.y = pageObj.ys;
                   page.scaleX = page.scaleY = 3;
                   page.rotation = pageObj.rs;
                   addChild(page);
                   // animate the page
                   TweenMax.to(page, 1, { x: pageObj.xe, y: pageObj.ye, scaleY: interScale, scaleX: interScale, ease: Cubic.easeOut, onComplete: onTweenComplete,onCompleteParams:[pageObj] } );
                   pages.splice(index, 1);
                   if(pages.length == 0) removeEventListener(Event.ENTER_FRAME, onEnterFrame);
               * Rotates target into final position
               * @param     obj
              private function onTweenComplete(obj:Object):void {
                   TweenMax.to(obj.page, 1, {scaleY: 1, scaleX: 1, rotation: Math.random() > .5 ? obj.rs + 10 :  obj.rs - 10} );
              private function createPages():void {
                   pages = [];
                   // random number
                   var r:Number;
                   // start positions
                   var xs:Number;
                   var ys:Number;
                   // padding from edges
                   var padding:Number = 20;
                   // inner boundaries
                   var bx:Number = stage.stageWidth - padding;
                   var by:Number = stage.stageHeight - padding;
                   for (var i:int = 0; i < numPages; i++)
                        // randomize for initial x and y
                        r = Math.random();
                        // position in different qarters around stage
                        if (r < .25) {// top
                             xs = - 100 + Math.random() * (stage.stageWidth + 100);
                             ys = -100;
                        else if (r > .25 && r < .5) {// right
                             xs = stage.stageWidth + 100;
                             ys = - 100 + Math.random() * (stage.stageHeight + 100);
                        else if (r > .5 && r < .75) {// bottom
                             xs = - 100 + Math.random() * (stage.stageWidth + 100);
                             ys = stage.stageHeight + 100;
                        else {// left
                             xs = -100;
                             ys = - 100 + Math.random() * (stage.stageHeight + 100);
                        pages.push( {
                             page: page,
                             xs: xs,
                             ys: ys,
                             xe: padding + Math.random() * bx,// end x
                             ye: padding + Math.random() * by,// end y
                             rs: Math.random() > .5 ? Math.random() * 45 : Math.random() * -45// rotation start
                   // start animation
                   addEventListener(Event.ENTER_FRAME, onEnterFrame);
              private function get page():Sprite {
                   // page dimensions
                   var w:Number = 40;
                   var h:Number = 52;
                   // dimensions halves
                   var wh:Number = w * .5;
                   var hh:Number = h * .5;
                   var foldWidth:Number = 10;
                   var s:Sprite = new Sprite();
                   var g:Graphics = s.graphics;
                   g.lineStyle(1, 0xBCBCBC);
                   g.beginFill(0xF0F0F0);
                   g.moveTo( -wh, -hh);
                   g.lineTo(wh - foldWidth, -hh);
                   g.lineTo(wh, -hh + foldWidth);
                   g.lineTo(wh, hh);
                   g.lineTo( -wh, hh);
                   g.endFill();
                   g.beginFill(0xFFFFFF);
                   g.moveTo(wh - foldWidth, -hh);
                   g.lineTo(wh, -hh + foldWidth);
                   g.lineTo(wh - foldWidth, -hh + foldWidth);
                   g.lineTo(wh - foldWidth, -hh);
                   g.endFill();
                   s.addChild(icon);
                   s.cacheAsBitmap = true;
                   return s;
              private function get icon():Shape {
                   var s:Shape = new Shape();
                   var g:Graphics = s.graphics;
                   g.beginFill(Math.random() * 0xFFFFFF);
                   g.drawEllipse(-13, -20, 26, 40);
                   g.endFill();
                   return s;

  • Looking for a specific effect

    Does anyone have a quick answer to this:
    I'm looking for an effect of subtle shaking text
    as if you are reading the text on a subway.
    I'm putting subway sounds in the background.
    Thanks,
    D

    Yet another method:
    hit the record, press play, and jiggle your text dragging it with the mouse, that should create a more random motion.

  • Looking for Wedding Special Effects for FCP!!!

    Hi guys,
    Help me out here! Can someone tell me where I can find wedding effects/ plugins and transitions for FCP.
    I have seen things like firework plugins on tv or flowers making the transitions and so forth.
    I looking for something similar or better.
    Thanks a bunch in advance everyone,
    Zia

    Hi Dave,
    I am reffering to stuff like Digital Juice Toolkit7 Wedding Tools II.
    I am also looking for plugins or matte like Sparkles, Flowers, Fireworks and others to work as animated mattes on top of a clip.
    Thanks,
    Zia

  • Looking for good magic effect plug in

    Hi-
    Was looking for a good magic effects plug in, things like aura, energy beams, force fields, ect...I am willing to pay $$$...
    Thanks in advance,
    Matt

    Best advice as Mylenium says is to look at as many tutorials as you can - I'd start with the excellent and fully featured tutorials from www.videocopilot.net and also http://library.creativecow.net/tutorials/adobeaftereffects
    Getting to grips with particular will also give you some creative options with particles.
    Paul.

  • Looking for url´s of  sites (for an introduction to APEX)

    Hi,
    Next thursday I will present APEX to a lot of students. I would like to show some sites (to impress them).
    DG Tournament I know already, but I remember a site to download music. I "googled" but I can´t find it anymore.
    Does anyone know the url of it ? Or has other examples ?
    Any reaction will be appreciated.
    Leo

    Hi Leo,
    The only thing I could suggest, perhaps, would be to google for sites using:
    inurl:pls/APEX OR inurl:pls/htmldb
    as the search expression. Or have a look at:
    Re: Nominate APEX Site for a Design Award
    Regards
    Andy

  • Looking for a photo effect

    I have been looking, unsuccessfully, for a photo effect in AS3. I am a noob so I don't know how to programme complex effects. I could do it in after effects but I would prefer it in AS3.
    How can I achieve an effects like this one
    http://www.flasheff.com/patternsshowcase/?pattern=FESBlurSquare
    Thank you

    hi
    its been a while since i used AS2 but i think AS3 has more effects (filters) - although some of them cant be set via the IDE (see http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/filters/package-d etail.html for the list)
    if we were restricted to 'non-coded' effects, the possibilities would be much reduced...

  • Looking for FREE World Time Clock

    Hi ALL,
    As the title say's is that I'm looking for a FREE in use World Time Clock as a Witgets ore as a APP.
    In this case I like to have more than 1 clock to see the TIME in different countries, continents.
    I seen many already on the Internet ... but any help here I would appreciated.
    Thank you for your time ...
    Dimaxum

    Hi,
    Any one has a idea?
    Thank you for your time.
    Dimaxum

  • Looking for Helicopter sound effect

    Ive come close to creating it by altering a synth basic sound, but its still off a little. Any ideas?

    Are you looking for a helicopter sample, or an AU that makes your pre-existing sound into a helicopter effect?
    If it is the former, Hang and Christoph gave you some nice examples, and you can do a google search for "Helicopter Sound Effects."
    If it is the latter, this free au plug in does a nice job of simulating it.
    http://www.twofloorsrecords.com/?page_id=49
    X

  • Looking for a cost effect headset for my QS 2002....

    Afternoon all
    I'm in the market for a cost effect headset kit for my QS 2002.... so I can tune into my MLB games quietly... any ideas?
    Any links to a workable solution?
    Thanks
    Rich

    I picked up a "Studio Monitor" headset by Sony for $19.95 and a audio extension cable for $3.95 at Best Buy and they work great with my QS 2002!

  • Looking for "kidnaped" letters effect tutorial

    Hi everyone. I was looking for a tutorial on how to make letters appear like are cut out from a paper and assembled in a "kidnaped" message. Like in old movies. Here is an example:
    Much like this but maybe a litle more serious and realistic. I searched on google with different keywords...but with no help. Maybe you guys could help me and tell where I could find a tutorial on how to make it on photoshop (CS6 is what I have). Thanks

    You could try these free fonts: http://urbanartz.deviantart.com/art/Kidnapped-font-346486247, http://www.fontsaddict.com/font/erpressung-normal.html. And search for other similar fonts so that you can get some variation in the style of the letters - https://www.google.co.uk/search?q=kidnapped+font&client=firefox-a&hs=OXe&rls=org.mozilla:e n-GB:official&source=lnms&tbm=isch&sa=X&ei=Fm2CUuCDD5GA7QaxsYBI&ved=0CAkQ_AUoAQ&biw=1770&b ih=982.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Calculators and  Searches for Real Estate Web Site

    I have a friend who has asked if I can make a real estate page for them them using my iWeb '08 program.
    I've never done anything like mortgage calculators and home/msl searches. Does anyone know how to do these things, web sites that help with this, or is it even possible?
    Any advise, tutorials, links, anything would be greatly appreciated. Thanks all.

    There are plenty of free mortgage calculators you can add to a website....
    http://www.widgetbox.com/search?q=loan+calculator
    http://www.calculators4mortgages.com/calculators/loan/amortization_schedule.html
    Your friend should have access to the MLS through their Realtor Association.
    When my wife was involved in real estate in Northern California acting as a buyers agent for investors I used this site for research....
    http://www.greathomes.org/
    I'm sure you'll find other sites like this for other areas.
    A realtor doesn't allow clients to search for homes - that's their job.
    The best thing to have on a site like this is a form that potential clients can fill in with all the details of their requirements.
    Wufoo has a mortgage application form which I modified for collecting home buyer information. Don't ask me how I did it because it was about two years ago!
    As long as you are publishing to a hosting company that allows you to run scripts, you can build your own forms. Tutorial....
    http://www.w3schools.com/html/html_forms.asp

  • Looking for real screen magnification

    I have a friend who just bought a 27" iMac. Part of his reason to choose the large screen was to allow him to magnify windows on the screen. The problem is that he wants to magnify the complete window, not just the contents. For instance, he wants to magnify the commands at the top of a browser window so he can see them better and navigate more easily, not just expand the contents.
    Is there a way to magnify EVERYTHING on the screen, even at the cost of decreasing the effective real estate to make EVERYTHING more readable?

    He/she could set the display to a lower resolution in +System Preferences > Displays.+ This will have the effect of 'magnifying' the entire screen.
    He/she could instead use the Zoom feature. Turn this on in +System Preferences > Universal Access > Seeing.+ Then you can zoom in or out anytime by using these key combinations:
    Zoom in: Option Command =
    Zoom out: Option Command -

  • Looking for real good software for iMac to encrypt all key strokes. Online a lot ! Thanks

    Hi. Can anyone recommend software, free or not, that will encrypt all of my keystrokes for better protection while online?
    User friendly, easy setup &amp; maintenance.
    Need ASAP
    Thanks so much!

    Was the friend, perchance, on a PC?  "To understand how KeyScrambler works, it helps to look briefly at how an operating system like Windows actually processes keystroke data." - http://www.techrepublic.com/blog/security/keyscrambler-how-keystroke-encryption- works-to-thwart-keylogging-threats/4648
    Do you have reason to suspect you have keylogging software running on your computer?  If you do, you have a bigger general computer security issue because your security would be so lax you could have all kinds of things on it.  I mean, we're talking you downloading malware left, right, and center from unscrupulous web sites and allowing them to install it on your computer.  Basically a Mac equivalent of a PC user running their computer for the past 5 years without any virus protection.  If things are that bad then you're famous because I have never heard of a Mac user who has things going to that extent.  I'm not sure if I could do that to my computer if I even tried. 

Maybe you are looking for

  • Unable to receive email consistently from AOL

    Trying to track down a MAJOR problem, I have a client that I support that runs 10.6 server and it is the mail server etc..  What is occuring is that AOL cannot consistently deliver email to our server... I get various types of messages in mail.log (p

  • What Thunderbolt Adaptor Best Suited???

    What thunderbolt to hdmi adapter is best suited for (imac 10.7.5 mid 2011) to (LG TV 3D Model No. 42LWS700-TA) And the proper HDMI Cable as well.

  • Scripting Bookmarks & Hyperlinks in iWorks Pages

    Am I correct in assuming the AppleScript dictionary for iWorks Pages has no hooks for scripting either bookmarks or hyperlinks? Tell me I'm senile, unobservant, need another latte and have missed something obvious... Please. Regards, Bryan

  • SMS memory

    Hello, Can anyone help me with the following question. How using the SIM card memory instead of the phone memory for incoming and outgoing SMS messages. Device: Nokia C1-01 Solved! Go to Solution.

  • App Tabs stopped working

    On FF 16.0.1, I set 4 app tabs, as I had done in another version. (I had tried to reset FF, but it hung during the process and wouldn't finish, so I uninstalled and then installed 16.0.1). Initially they worked. But in the same session, they froze. I