Poping sound using wireless mic, filter for it in fcp hd 4.5?

I'm using fcp 4.5 hd on a mac, I have a canon gl2 video camera and a sony wcs 999 wireless microphone system hooked up to it. This evening I did an interview and while it was going on it was making popping sounds through the ear piece . Is there a filter through fcp 4.5 hd that will remove the popping sound. Thanks for all your help.

ok this is normal with ALL audio editing programs
to better explain what a zero crossing is check this wiki page
http://en.wikipedia.org/wiki/Zero_crossing
basically it can create a click or snap if there is a RAPID (ie straight line) gain change (increase in height of the waveform)
if you cut at the zero crossing there is no signal thus no sound
if you normalize or increase the gain AFTER you have cut NOT at the zero crossing it will increase the snap/zip/click (the bad sound)
programs like STP have button's to increase the vertical zoom
load a clip into the audio editor in STP and zoom in close into a quiter part of the audio, see how it is all around the middle (where the slightly darker line is) . . . that is the zero crossing of the waveform (also has the handly 0 on the vertical scale/messure bar on the left hand side)
now go to the menu VEIW>INCREASE VERTICAL ZOOM (apple+)
hit it ONCE
notice your waveform looks bigger but sounds the same
you didn't increase the gain you just vertically zoomed into the waveform (check the scale bar on the left hand side and you will notice that the top number is no longer 1.0 but 0.6 (or some other number smaller then 1)
you can keep zooming in till 0.10 is the top number (at least on my screen)
THAT IS ZOOMED in REALLLY close so be carful what you hit
now zoom (regular zoom) all the way in you see your waveform has a bunch of boxes in it those are the actual samples of audio.
now I woudn't recomend working at 0.10 vertical zoom as that is REALLY extreme (I normally work at 0.50 at most)
one other option would be to select where you want to cut and then go to the menu EDIT>ADJUST SELECTION TO ZERO CROSSING> (then select which options works best for you situation)
it will select the closest spot that has a zero crossing (on both waveforms if it is a stereo clip
anyway hope that helps
DAVE
http://www.proapptips.com

Similar Messages

  • Can we use drop shadow filter for reflection of a n image

    i just want to know can i use drop shadow filter for
    reflection of a image if yes then how
    if not then suggest me any other filter

    "tausif d" <[email protected]> wrote in
    message
    news:gbsrbm$8ag$[email protected]..
    >i just want to know can i use drop shadow filter for
    reflection of a image
    >if yes then how
    > if not then suggest me any other filter
    http://www.quietlyscheming.com/blog/components/tutorial-displayshelf-component/

  • Is it possible to use a still store for colorcorrection in FCP X like also exists similar to Color?

    Is it possible to use a still store for colorcorrection in FCP X like also exists similar to Color?

    DDo you want the image for comparison or to store the correction? If it's just for comparison, the roundabout way is to export a still frame and reimport it.

  • How to use rowid in filter for datawindow?

    I try to use filter to filter data in datawindow, like
    dw_1.SetFilter("column = value")
    dw_1.Filter()
    then I can get data from this datawindow like:
    GetItemNumber(row, column_name)
    GetItemString(row, column_name)
    but I want to filter expression like
    "column = value and rownumber>10"
    How to use datawindow row number for filter?

    What about GetRowIdFromRow and GetRowFromRowId methods for DataWindow control ?
    AUS Julián Tagarro
    NeoSistemas SRL

  • Use date as filter for rebatching in fsisys.ini - Documaker Server 11.1

    Hello,
    I am attempting to create a filter for my batch in fsisys.ini (Documaker Server 11.1). I would like to use a date, however, it is not working. Is it possible?
    Here is what I entered:
    Rebatch    = BatchName(sdbib)    If((TranType = "BILL" and COMPANY_NAME ="XYZ INSURANCE COMPANY") or (TranType = "Bill" and COMPANY_NAME = "ABC INSURANCE COMPANY" and POLICY_EFF_DATE >='11/01/2013'))
    The output goes into the default batch instead of the one I want (sdbib). Of course when I remove the date it goes into the correct batch.

    I suspect that the problem is with the date comparison. If this is DAL scripting, as it appears, then you are comparing a string to a string. so 11/01/2013 would appear greater than 01/01/2014, because the first character '1' is greater than the first character of the second string '0'.
    You either need to normalize your dates to be in YYYYMMDD format or use a DAL function like DiffDate() to determine that the one date is greater than the other.
    ... AND DIFFDATE( "11/01/2013",1, POLICY_EFF_DATE,1) >= 0 )
    I believe this would tell you that your policy date is greater than the constant date you have as the first parameter. Zero would mean the dates are the same.
    Normalizing the dates first would mean that you would do this.
    First convert your date to be type 4 which is YYYYMMDD. MM/DD/YYYY is considered type 1, so you are converting from 1 to 4.
    yDate = Date2Date(Policy_Eff_Date, 1, 4);
    This then allows the compare of the constant date written in the same fashion.
    .... AND yDate >= "20131101" ) )

  • Wireless mic suggestions for podcast

    I am interested in video podcasting. I have a sony high def video camera but I want a wireless mic that doesn't cost a thousand dollars. I do not want to hold a handheld--it won't look professional. Any suggestions ? Thank you

    you can take a look at the USB mics here:
    http://www.bulletsandbones.com/GB/Microphones.html
    but the low end model would probably be a step up only because it won't pick up the HD and fan noises of the computer, if you can swing $79, the middle one should get nicer sound

  • Is it possible to use Zero phase filter for continuous filtering?

    I have to filter a large amount of data without any phase shift from original signal. The Zero phase filter does it but it has to be used in single shot mode. It doesn't have any "Init/Cont" input terminal which other filters have. Is there any way to implement zero phase filtering to filter data continuously?

    AJ_CS wrote:
    The zero phase filtering method seen in your thread will work, if the filtering happens as a single shot operation. It will remove the edge effects of zero phase filtering.
    But for an application wherein data arrives as small blocks, it has to filter each block of the data and also it has to maintain the continuity of filtering. 
    For example in every 1 sec, I'm getting 500 samples of data. I have to use this zero phase filtering for each block of 500 samples, in each second. But what seems to happen is, between the end of one data block and beginning of next data block( between 500th sample and 501th sample or between the end of 1st sec data and beginning of 2nd sec data), there is a discontinuity, or distortion.
    Normal IIR (butterworth)filter maintains this continuity between data blocks, but with phase shift.
    Zero phase filtering doesn't introduce any phase shift but it is unable to maintain the continuity, it seems. 
    Is it possible to have a filter meeting both these requirements?
    In a nut-shell yes.
    It will require you apply the technique I illustrated in that thread repeatedly each time you get an update. The "reflection about the end points" cleans up the disconinuities. I suspect there may be some theory that what you end up with can not be proven using any formal math approach, but it closely mimics what the human mind does when we ask ourselves "If it continues like that that, what do I expect?".
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • STP won't use my audio interface for monitoring, but FCP will

    Hi, I've been using FCP for a long time, with my MOTU 896 audio interface (firewire). It works fine with FCP for monitoring the mix, playback, everything.
    Today, I decided to try STP for the first time (up until now, I've been doing all the audio within FCP). I cannot seem to get the MOTU to work for audio monitoring unless I change the System Sound Preferences to have the MOTU selected (and not the built-in line out).
    The STP Manual says that "by default, it will use the settings in the System Sound Prefs", but that you can change it. However, nothing I do seems to make any difference.
    - I set the Preferences:Recording tab to Monitor the MOTU 896.
    - In the Recording tab of the Inspector to Monitor the MOTU 896.
    But it still plays back through whatever is selected in the System Sound Panel. I can change this to the MOTU, but I would rather have my system sounds playing through the regular built-in line out.
    Am I missing a setting here? Thanks!
    (This is STP 1.1, on a Mac Pro Intel, running OS X 10.4.8.)
    MacPro Quad Core 3.0 Ghz / G4 Dual 800 QuickSilver / PBook G4 Titanium   Mac OS X (10.4.8)  

    Go to the AudioMidi Setup app and select the MOTU 896 as Default Output and built-in audio as System Output. That way, the system sounds will still use the built-in audio but STP will use the MOTU. Unfortunately, every other app (like iTunes or QuickTime) will use the MOTU as well. STP doesn't have any preferences to select its own interface like any other pro DAW out there. Maybe STP 2.0 will fix that?

  • IDOC: Problem with data filter for IDOC extension field

    Hallo!
    I've created an idoc extension for the basic type DEBMAS06 that works fine. Now I want to use a data filter for one field ( company code ) of my segment. Every segment with a company code different from 100 should be filtered and not send to the other client. But what happend is that for all customers that have at least one company code different from 100, all segments including the one with cc 100 were deleted and a error "Segment ... does not exist for message type DEBMAS" appeared on the screen.
    Does anyone have any ideas about this problem?

    Not sure about changes to be made at the filtering options.
    An alternative would be sending the data to XI as it is and perform the mapping to remove the unnecessary segments.
    Disadvantage: Unnecessary processing of segment would be done at XI.
    Advantage: The integration logic would be completely handled by XI.
    Regards,
    Prateek

  • [EWS][Java] How can I use the Search Filter only mails with attachments?

    Hey,
    I'm trying to search a folder ( doesn't matter  which ) for ONLY mails with attachments.
    How can I use the search filter for that purpose? 
    Thanks!

    You can drag the attachment collumn from settings and sort on that collumn
    In the main Outlook window, on the View menu, point to
    Current View, and then click Customize Current View.
    Click Fields. In the Available fields list, click the field that you want to add, and then click
    Add.
    Come back and mark replies as answer if they help, and help others with the same problem. If this post is helpful please vote it as Helpful on the left side.

  • Savitzky golay filter for finding second derivative

    Hello friends,
     I want to find second derivative using Savitzky golay filter for the data as shown in image.
    Three different spacings are used.
    Region AB and EF= ∆f1
    Region  BC and DE=∆f2
    Region  CD=∆f3
    Can some one help me to understand to to decide side points and polynomial order for my input data.?
    Thanks in advance.

    The polynomial order must be at least one larger than the highest derivative. So a third order polynomial is required for a second deriviative. In general it is better to keep the polynomial order as low as possible while getting a good fit to the data.
    The number of side points is somewhat arbitrary and depends on how much smoothing is needed. Often some experimentation and judgement is required.
    Have you considered resampling the data to create a new dataset with uniform sampling throughout? That might be easier than trying to match derivatives at the transition points.There are several resampling VIs available.
    How many data points do you have in each segment?
    Lynn

  • Garageband is not picking sound from builtin mic (rMBP). I recorded some tracks, now it is not working. All other apps can use the mic. Monitoring is switched ON at GB, it picks sound only some other app, eg. Skype, is used to access the mic.

    Garageband is not picking sound from builtin mic (rMBP).
    I recorded some tracks, now it is not working. I have checked GB Preferences, Audio/MIDI > Audio Input > Built In Microphone.
    All other apps can use the mic. Dictation, Skype etc. can use the mic!
    Monitoring is switched ON at GB, it picks sound only some other app, eg. Skype, is used to access the mic.
    Can any one help me, Please!
    Many thanks!

    I have foud the solution - rather stupid. The system setting for audio input was at 70%, increasing it to 100% solves the problem!

  • Using iPhone as wireless Mic

    Hi All,
    Please suggest if this below is possible or not.
    Items I already have, and ready to buy other things if needed.
    1) iPhone 3G
    2) Mac-Book
    4) Bose speakers connected to Mac.
    5) Wireless Internet
    My request :- By using Apple Remote application I am able to play songs. Is there any other application that will allow me to use iPhone as wireless mic and the sound should output to the Bose Speakers connected to Mac-Book.
    Advance Thanks.

    Look at Remote Mic: http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=302909383&mt=8

  • Can i make a video and use an external mixer for the sound?

    can i make a video and use an external mixer for the sound with my ipod touch?

    You need a special plug to use the iPod's mic in for the headphone jack. If you compare a headphone plug for a set that includes a mic and one that does not you can see that there is a difference.

  • Podcast with wireless mic for Church

    Our church is wanting to podcast the Sunday sermons. But the pastor uses a wireless mic. How can we get the sound into the Garageband? He does not stay in one place where he can speak into a stationary mic. He walks around alot.

    since the mic has to broadcast somewhere (a PA), take a line-out of the pa and plug it into the line-in on the mac.
    http://www.bulletsandbones.com/GB/GBFAQ.html#recordlinein
    a different question, but with some useful information in the answer:
    http://www.bulletsandbones.com/GB/GBFAQ.html#amplineout

Maybe you are looking for

  • Deviation Rule in MIGO

    Hi,    In goods receipt for PO, I am getting an error : "Error occured in derivation rule for profit center/company code" any ideas?

  • Mail Server for windows...

    Is there any free mail server for windows that i could use to send emails from my application.. Its just that I have been trying the JavaMail Api and having no luck, despite help from some of you. And my deadline is closing in and I am no closer to t

  • Procure To Pay, Consignment and subcontracting procesess

    Hi Guys !! Can any one tells me the full cycle process of P2P, Consignment and subcontracting in MM. Appreciate your valuable inputs on this ASAP. Thanks Khader

  • Install JavaDB with no root access?

    I cannot access my Linux server as root. That means that I cannot execute files. Is it possible for me to simply upload the JavaDB files and make it work as a database? Install it without root access? How about MySQL? Can I also do the same (just upl

  • Multiple duplicated populated playlists...

    At this point it has been going on for months...don't laugh too loudly...demented relative keeps me very busy.  Anyway, I can't take it anymore.  I have clouds beside everything like all the music is in the cloud.  Fine.  They all play.  I just don't