SmoothCam Filter Missing

Since upgrading to Leopard and FCP 6.02 the SmoothCam video filter is missing from the pull down menu. Effects availability is selected to all. Does anyone have any suggestions?

Hi,
welcome to this forum!
We are reading several complains about this topic.
I did not upgrade to 6.0.2 because I sensed that it could bring some unpleasant anomalies, however, my theory is that Smoothcam is not showing up in the VIDEO filters folder because its FXscript has been modified.
In a nutshell, the filter is essentially a code which is written in a similar way like HTML or other scripts.
Just to give you an example, I show you what Colour corrector 3 way is based on:
scriptid "Color Corrector 3-way" //DO NOT LOCALIZE
filter "Color Corrector 3-way"
group "Color Correction"
// COLOR CORRECTION CONTROLS
input dispMode, "Display Mode", Popup, 1, "Final", "Matte", "Source"
input label1, "Blacks Controls", label, ""
input blacklevel, "Level", slider, 0, -196, 254 detent 0
input b_hue, "Angle", angle, -33, -180, 180
input b_mag, "Magnitude", slider, 0, 0, 200
input label2, "Midrange Controls", label, ""
input mids, "Level", slider, 100, 0, 200 detent 100
input m_hue, "Angle", angle, -33, -180, 180
input m_mag, "Magnitude", slider, 0, 0, 200
input label3, "Highlight Controls", label, ""
input highlights, "Level", slider, 255, 64, 509 detent 255
input h_hue, "Angle", angle, -33, -180, 180
input h_mag, "Magnitude", slider, 0, 0, 200
input label4, "Color Controls", label, ""
input chroma, "Saturation", slider, 100, 0, 200 detent 100
// LIMIT EFFECT CONTROLS
input label5, "Limit Effect Controls",label, ""
input doChroma, "Limit on Chroma", CheckBox,0
input centerAng, "Chroma Center", angle, -110, -760, 760
input chromaWidth, "Chroma Width", Slider, 15.0, 0, 360
input chromaSoft, "Chroma Softness", Slider, 10, 0, 180
input doSat, "Limit on Saturation", CheckBox, 0
input satMin, "Sat. Minimum", Slider, 35, 0, 125 detent 100
input satWidth, "Sat. Width", Slider, 40, 0, 125 detent 100
input satSoft, "Sat. Softness", Slider, 20, 0, 125
input doLuma, "Limit on Luma", CheckBox, 0
input lumaMin, "Luma Minimum", Slider, 0, 0, 120 detent 100
input lumaWidth, "Luma Width", Slider, 40, 0, 120 detent 100
input lumaSoft, "Luma Softness", Slider, 20, 0, 120
input label6, "Edge Control", label, ""
input edgeThin, "Thin/Spread", slider, 0, -100, 100 detent 0
input edgeFeather, "Softening", slider, 0, 0, 100 detent 50
input label7, "Mask Control", label, ""
input invertSel, "Invert", checkbox, 0
input debugShow, "Show Stats", checkbox, 0
InformationFlag("YUVaware")
InformationFlag("collapsed")
code
if previewing && dispMode == 3
dest = src1
else
float lumaMax, satMax, i
lumaMax = lumaMin + lumaWidth
satMax = satMin + satWidth
if ( lumaMax > 120 )
lumaMax = 120
end if
if ( satMax > 120 )
satMax = 120
end if
// assumptions:
// blacks is -254 - 254 (0 is default)
// highlights is 1 - 509 (255 is default)
// hue is an angle of the trackball
// magnitude is the offset of the trackball.
// saturation is a multiplier on the way out.
// First, build the luminance lookup table. This is an absolute lookup table for Y.
// This is very similar to building the R,G,B lookup tables found in the single-hue corrector.
point framesize
float ymap[256]
float magnitude
convertimage( src1, src1, kFormatYUV219 )
if ( doLuma || doChroma || doSat )
// IF we are doing a "Limit effect", make a copy of src1 as YUV data
dimensionsof( dest, framesize.h, framesize.v );
image tmpSrc[framesize.h][framesize.v]
setpixelformat( tmpSrc, getpixelformat( src1 ) )
channelcopy( src1, tmpSrc, kalpha, kred, kgreen, kblue );
if ( edgeThin != 0 || edgeFeather != 0 )
dimensionsof( dest, framesize.h, framesize.v)
image tmpbuf[framesize.h][framesize.v]
setpixelformat( tmpbuf, getpixelformat( src1 ) )
end if
end if
// Correct the Luminance
CreateBezMap(ymap, blacklevel, mids, highlights)
LevelMap( src1, dest, linearRamp, ymap, linearRamp, linearRamp )
// Now, adjust the color of the image based on the three "trackballs"
colorcorrect( dest, dest, b_hue, b_mag/100, m_hue, m_mag/100, h_hue, h_mag/100, chroma/100 );
if ( doLuma || doChroma || doSat )
float fillRGB
fillRGB = 0
ChromaAngleKey( tmpSrc, tmpSrc, doLuma, lumaMin/100, lumaMax/100, lumaSoft/100, doSat, satMin/100, satMax/100, satSoft/100, doChroma, centerAng, chromaWidth, chromaSoft, 0)
// get key into tmpSrc, invert tmp's alpha channel, then copy tmp's alpha into dest.
if ( edgeThin != 0 || edgeFeather != 0 )
doEdges( tmpSrc, tmpSrc, fillRGB )
end if
if !invertSel
invertchannel( tmpSrc, tmpSrc, 1, 0, 0, 0 )
end if
if (!previewing || dispMode == 1) // Final
doComposite( tmpSrc, dest )
else
// dispMode = 2 -- Matte
setpixelformat( tmpsrc, kformatrgb255 )
if ( !fieldprocessing || fieldNumber == 1 )
// set pixel format on the first field, or if we're not field processing.
setpixelformat( dest, kformatrgb255 )
else
// But on the second one, dest already contains data, so convert it
convertimage( dest, dest, kFormatrgb255 );
end if
channelcopy( tmpsrc, dest, kalpha, kalpha, kalpha, kalpha )
channelfill( tmpsrc, 255, -1, -1, -1 )
end if
end if
if ( previewing && debugShow && (!fieldProcessing || fieldnumber == 1 ))
point graphRect[4]
// Upper left: Luminance map
makerect( graphRect, -100, -100, 100, 100 )
FramePoly(graphRect, dest, kGray, 1)
drawgraph( dest, ymap, 0, 255, 0, 1, graphRect, kwhite, aspectof(dest))
end if
end if
Now if you look at the first three lines of this code it says:
*group "Color Correction"*
I beleive Smoothcam path has been changed, however it should appear in you internal FXplugins system folders somewhere:
See if you can find it and also see if it has been moved to a different FX folder.
I recently learnt that Vignette filter has moved from STYLIZE folder to COLOR CORRECTION one (thanks to other posters).
Please report your results.
G.

Similar Messages

  • Audio Filter missing:  Internal Volume Stereo - corrupt project?

    Hi,
    I am getting this error when I open my project. In addition, no media will play in the project either in the sequence window or the source window.
    It all appears and will scrub (with no audio), but will not play.
    I dug around a bit and I found that there is a known bug with audio from XML's and that is what I am using (convinced my client to migrate from FCP to Premiere - please don't tell me I made a mistake).
    Everything worked brilliantly for a week, including the addition of audio filters, and then all of a sudden - bang. No more.
    I have painstakingly deleted every audio filter and I am still getting this error. I have also tried a re-install.
    Another oddity is that when I try to quit Premiere, it will not quit all the way without a force quit!
    I'm running CC 2014 on a brand new mac pro.
    Desperate,
    dw

    Steve and Bill,
    I follow your advice, but it did not solve the problem. It is true  that  problems began when I used ZOOM recorder at 98kHz/24 bit in my current project (I already changed ZOOM mode to 48kHz/16 bit), but could this be just a coincidence?
    In the meantime I checked the rest of my 16 projects (.prel), which were fine before. To my surprise I found that although all of them were made using EXACTLY the same method, some of them are still OK, but most I can not Playback. The messages appearing are of three types:
    1. "Audio Filter missing: Internal Balance".
    2. "Audio Filter missing: Internal Volume Stereo".
    3. "This type of file is not supported or required codec is not installed".
    In one case, when I opened a project the first time, the message was "This type of file is not supported or required codec is not installed", but when I opened it second time it said " Audio Filter missing:Internal Volume Stereo". It seems to be random.
    Some projects can be opened, but when I try to Playback  there is no sound.
    I am completly lost. Please help.
    Andrew

  • Smoothcam filter

    Hi everyone. Im using fcp 7 and trying to use the smoothcam filter, my clip is only 5 seconds long and its saying that its going to take 16 hours to do its thing. I see on youtube tutorials on how to use it but no settings, and it only takes them a few seconds to analyze the clip. I'm using a macbook pro with 4 gigs of memory. Is my machine too slow for this filter or am I doing something wrong? the clip im using really isn't that bad at all, just trying to make it better.

    Hi Tony,
    simple, Smoothcam is attempting to analyze the entire media file the clip relies on.
    Set an in and out point in the timeline to export the clip you want to smoothcam as QT movie self-contained (this will produce an exact copy of the clip) then bring that in the timeline and apply Smoothcam on the newly created 5 seconds clip.
    Luca

  • Can't use Smoothcam filter

    I have an AVI file in Final Cut and want to use the smoothcam filter but when Iclick on it nothing happens. I get the same result when I thow it on to the timeline manually. Do I have to convert this file to an .MOV in order for smoothcam to work. and if so if when using Mpeg Steamclip for this conversion what is the best codec to use?
    Thanks
    Jeff

    Yes, I wouldn't use AVI files while editing with FCP.
    If your footage was originally shot on DV then convert it to DV, MPEGstreamclip can do that!

  • Video Filter missing: AE.keylight 906?

    Hi,
    I am a complete noob when it comes to editing video in Adobe. I've been looking for a solution to my problem in other places, but my attempts were futile.
    Here's what I did:
    I edited a video clip in Adobe After Effects, dealt with the green screen using Keylight, then exported my work as an Adobe Premiere Pro Project. Once that was done, I tried opening the project in Premiere and a window popped up saying "Video Filter missing: AE.keylight 906." I clicked OK and found that Premiere does not show my edited green screen. It merely shows the original - I think I'm right in saying that is because the video filter is missing, as the message stated. How do I fix this? Help please!
    Thank you for your time.
    MP

    My guess for the choppiness would be that you used the default uncompressed render settings from After Effects; this likely made a very large file that, unless you have a really stout and fast hard drive setup (e.g. RAID), you will not get real time playback. Uncompressed is good in that, well, it's uncompressed and therefore doesn't add any further image degradation, but it can make for a lousy editing experience, as you've found.
    Depending on what your source footage is (you didn't mention this originally), and what your intended destination/delivery format is, you might be able to use different render/export settings from After Effects for a more playable file in Premiere. Later, you could rerender the composition to the uncompressed version and replace the original; this will give you better performance for further editing in Premiere, and then later will give you higher quality output. This is often referred to as proxy editing, and there are a couple of ways you can go about this, if it's something you want to attempt.
    Regarding the loss of edits when moving from Premiere: there shouldn't be any loss of edit points, necessarily, but what you might be thinking of is the loss of transitions. Since Premiere Pro works with tracks and After Effects works with layers, the two programs have different methods of representing and creating transitions (e.g. dissolves). In Premiere, you can put two clips next to each other in the sequence on a single track, and add a dissolve between them; however, in After Effects, a layer can only contain one footage item, so to create a transition between two layers, they must overlap. There are analogs for certain transitions--a dissolve, for example, is just a change in opacity of one layer that is over another--but other more "fancy" transitions must be recreated more manually. In short, you shouldn't have to worry about the timing of your edit in Premiere changing when moving to After Effects, whether you use Dynamic Link or whether you simply copy and paste from Premiere into AE.
    Hope that helps a bit more. And Mr. Brougham is my dad's name

  • Audio Filter missing . . .

    I have experienced a number of crashes (iMac OS 10.75) in my Premiere Pro project + the warning "Audio Filter missing: Internal Volume Mono"  How do I resolve this?  It seems to be a 'project' problem.
    Thanks for your help.
    Nola
    Message was edited by: Nola Schiff

    I wish I could supply some help; I am having the same problem (newest version of Premiere Pro CC, just reinstalled in hopes of solving this problem, on a Macbook Pro i7 running 10.8.4 with 16GB RAM. It is rendering my project unusable. Help anyone?

  • Audio Filter missing:  Internal Volume Mono

    All of a sudden this error message started popping up
    Audio Filter missing:  4:1635083896 1278365011 1802721110  Audio Filter missing:  Internal Volume Mono
    Also now my timeline is not working, some tracks are missing volume envelopes and when I scroll up and down it's all messed up and I can't do anything.
    What's happening?
    I tried re-installing the latest update CC 2014.1 but no go...
    Help!!

    OH man, Im also having loads of other audio issues with this update. Clicks, pops, audio often mutes on it's own. No audio comes through and there's screeching huge noise...ng
    Really disappointed with this! Im paying good money for the CC and today alone Ive spent 4 hours trying to figure out these massive issues.
    Im using multiband compressor and EQ and the instant I add those to the timeline the troubles begin.

  • Audio Filter missing:Internal volume stereo

    I am unable to back play a Pre project I am working on in the moment. When I open it, there is a message as in the subject of this post (Audio Filter missing: Internal volume stereo). Can someone help please.
    Andrew

    Steve and Bill,
    I follow your advice, but it did not solve the problem. It is true  that  problems began when I used ZOOM recorder at 98kHz/24 bit in my current project (I already changed ZOOM mode to 48kHz/16 bit), but could this be just a coincidence?
    In the meantime I checked the rest of my 16 projects (.prel), which were fine before. To my surprise I found that although all of them were made using EXACTLY the same method, some of them are still OK, but most I can not Playback. The messages appearing are of three types:
    1. "Audio Filter missing: Internal Balance".
    2. "Audio Filter missing: Internal Volume Stereo".
    3. "This type of file is not supported or required codec is not installed".
    In one case, when I opened a project the first time, the message was "This type of file is not supported or required codec is not installed", but when I opened it second time it said " Audio Filter missing:Internal Volume Stereo". It seems to be random.
    Some projects can be opened, but when I try to Playback  there is no sound.
    I am completly lost. Please help.
    Andrew

  • SmoothCam Filter Disappeared

    Hi Everybody-
    My SmoothCam filter is no longer listed as an option with the other filters. I have not used this filter in a few months, but I did un-install and re-install my FCS2 package (about a month ago) in order to get Compressor working again. Maybe that has something to do with its disappearance. Any help would be greatly appreciated.
    Thanks
    Isaiah Smith

    Certain effects might be turned off by default, depending on the capabilities of your computer.
    but I did un-install and re-install my FCS2 package (about a month ago)
    Which would have set it to default values.
    From the menu bar: Effects > Effect Availabilty > All Effects will turn everything on regardless of whether your computer can process them in real-time or otherwise.

  • Video Filter missing:  PR.ADBE Camera View

    Hi, I get the following message when I load my premiere project:
    Video Filter missing:  PR.ADBE Camera View
    I know its a filter on windows what is not on a mac because I transferd some files to my mac. I only want to know how do I get rid of this message.
    Thanks

    Yes, but it will be manual labour. Just go through all your clips and remove each instance where you have used it. Maybe it is shown in the timeline in a different color or with diagonal stripes through it, I don't know.

  • Video Filter Missing: AE

    I keep getting a series of messages saying Video Filter Missing: AE.ADBE MagicBulletMojo as well as a string of various messages after "Video Filter Missing: AE...." I was wondering if the "AE" in that message meant that it was coming directly from a plugin within After Effects. I am trying to track down exactly why this is happening in my particular project if it was from something within After Effects or from Premiere.
    I know that I have seen similar error messages with "Video Filter Missing: PR...." in other forums. So my biggest question is:
    Does the AE or PR in the middle of the error correspond with the application that I was using the video filter in that is now missing?
    Thanks!

    Placed the afx cs4 Fast_Blur.plugin on /Applications/Adobe Premiere Pro CS4/Adobe Premiere Pro CS4.app/Contents/Frameworks/MediaCoreUI.framework/Fast_Blur.pluginand nothing... ignored as when placing it on Plug-Ins folder...
    Where is this mediacore folder on win?
    Thanks for the suggestion, but I think that the Mac CS4 afx "Fast_Blur.plugin" isn't comptible with the Mac CS4 Premiere.
    I don't own a CS3 mac version... does anyone knows if it has the fast blur? I could try to use that file...

  • Video Filter missing:  AE.ADBE AEMask

    How can I fix this error: Video Filter missing:  AE.ADBE AEMask ? I used so many of the CC 2014 effects with masks and now they are shown as offline.

    Hi Bdrummer67,
    Sorry that didnt work. At this point, you might want to start a case with support. Here's the link: Contact Customer Care
    Please let us know the results.
    Thanks,
    Kevin

  • Video Filter missing:  AE.ADBE FC PRO 2.1    Help me..

    i got a problem. " Video Filter missing:  AE.ADBE FC PRO 2.1 "
    whenever i turn on premier pro, i see this sentence.
    Please help me...
    actually i tried to install film convert pro on my new computer but it doesn't work. I know FC PRO is film convert.
    but it is installed on after effect. not premier pro..
    can you help me ?
    i'm desperate T_T

    I removed FC plugin. and reinstalled. but it doesn't work.
    actually i want to use FC plug in but it's not working on premier pro..
    ......i don't know why.. because it was working well on my last computer.

  • Video Filter missing:  AE.ADBE Numbers2

    Video Filter missing:  AE.ADBE Numbers2 
    I Get this when i open a prodject that was exported from after effects

    Hi drumboy12,
    Welcome to the Forums.
    It seems that you have applied any effects and filter on a Video or a File in the After Effects composition and then you Exported it as a Premiere Pro Project and those filters or effects are not present in Premiere Pro. Please use Dynamic link to send your project to Premiere Pro if you wish to use Premiere Pro with After effects.
    Regards,
    Vinay

  • 'Video Filter Missing' Exporting AE CS4 project into Premiere Pro CS4 project

    Hey guys,
    I am new to Premiere and AE, and I just made a short little intro for my current project in After Effects using a couple different effects and such. When I go to export my AE project and make it into a Premiere Project file it will not let me open the project properly, it says:
    D:\Premiere Projects\AFC Title2.prproj
    Video Filter missing:  AE.ADBE Exposure2
    Video Filter missing:  AE.ADBE Glo2
    Video Filter missing:  AE.CC Particle World
    How do I fix this? Can I get the video filters for Premiere so that it recognizes them?
    Thanks,
    Andrew

    Are you planning on editing the material you're moving from AE to PPro? Not that you can't, but that's sort of a backwards workflow (ie. usually you edit in PPro, and then move the sequence to AE for effects, etc.). Or are you just trying to export from PPro?
    Do you have the Production Premium bundle? If so, you could use Dynamic Link to put your AE comp into a PPro timeline, without having to worry about missing filters. You could also render from AE, and then import the rendered movie into PPro.
    Finally, you can make (most of) the Cycore effects work in Premiere; this includes Particle World. Simply copy the AEX plugins from the After Effects program folder, into the Premiere Pro program folder (you'll have to dig into a couple of subfolders to find the effects). You'll then have access to most of them in Premiere Pro, though they don't all work the same in the PPro interface. The other two are, I believe, AE-only plugins, and are locked to that program--they won't work in PPro, no matter what.

Maybe you are looking for

  • How do I save a single pic to my gallery from a text message

    I am able to save pics from a text message if there are multi pics; However, if there is only a single pic sent to me, I can't figure out how to save it to my gallery. Please help.

  • Regarding FBRA - Reset and Reverse.

    Hi, I am ABAPer and trying to prepare BDC for transaction FBRA. I want to use option 'Resetting and revers'. While recording when I go for save option in FBRA, it concludes the recording as I am pressing save button and goes for first default option

  • Extended Purchase Order

    Dear All, Good Day!!! Can Anyone explain me the funda of "extended purchase order". I happened to come across the same while checking the Client Confi. Regards, Yogs.

  • Adhoc designer issue

    if we open an existing query from the adhoc query designer and modify it as per need, and execute it we get the query displayed with the default template...but when we try to bookmark, it complainns we have to save it...our req. is not to keep creati

  • Invalid BB ID Username and Password Error

    I am trying to set-up my Internet email account and also download an app and it states my BlackBerry ID Username and Password is required. I am able to login online with this information (https://blackberryid.blackberry.com/bbid/login?i=3770183), but