Techniques for Recording Podcasts?

This is more of a recording issue. I'm trying to get some ideas on getting a more professional sounding casts setup. We are currently working on a music and movie review site and I want to kind of be somewhat different and have a weekly casting show kinda like blogtalk radio where we can discuss movies and music with people that call in. We're still testing out the idea and did a few tests broadcast but the problem is on our end audio just comes out kind of noisy and fuzzy. We did a recording test and everything sounded fine when we just record audio straight into the computer but when we do live tests it's like the microphone starts picking up everything on our end. We have 2 mics that we use a Yeti  and an Nt1a with the M-audio fast track. I invested into getting some decent mics and interface but room pickup is a bit of a problem now. Someone else suggested using a filter like one of these Soundkitz AE-F filters http://www.soundkitz.com/Studio.htm or trying something like padding up the room. Our recording area is my apartments living room it's the only place all of us can fit. Like I said it doesn't seem to be a signal issue it seems to do more with the room but that's the part that has me in a jam. We can always try to clean up audio afterwards but that's really extra work than we don't need right now.
Thankz

No - it's a standalone program (written in Java): you have to have a recording to place in it and then clean it up. I agree this is less convenient than a plugin but the results - particularly when combined with its companion ClickRepair - can be stunning: only marginally inferior to the industry standard CEDAR (which costs thousands).
Here is an example of both of them in use on a very crackly 78rpm record - starting with the original and crossfading to the cleaned-up version.
http://www.wilmut.webspace.virginmedia.com/notes/noise/companions.mp3
However looking at the OP's post it looks as if his problem may be more to do with room acoustics, and noise reduction isn't going to help that - it's designed for continuous hiss and noise, not reverberation. If he posted a link to the recording it might be possilble to assess the problem.

Similar Messages

  • How to enable Audio Track for recording podcast

    I'm trying to use Garageband to create podcast in iLife '06. When I select female voice and the red record button, I get this message "No Audio Track is enabled for recording". Adding new track from the Tracks menu does not help. Can anyone help please?

    Um, er, that's a Windows app. The best way to record Skype on a Mac is Ecamm's Call Recorder. Just install and you get a record button in Skype!

  • Looking for app or technique to record to dvd individual chapters from a  movie dvd i own, not related to idvd or iMovie?

    looking for an app or technique to record to dvd individual chapyers from a movie dvd that i own?  not related to  idvd or imovie

    Is this a commercial copy-protected DVD or a home-made video DVD?

  • Air or Pro for Recording vocals with GarageBand or PT and Producing

    I'm considering buying a MacBook and would like to get a new Air. I will be using it mainly for recording my vocals on beats that I have bought on iTunes. I'm also going to be taking a couple of Coursera classes on music production. Can the new Air's handle GarageBand or Pro Tools well? I've been using my iPhone 4S with GarageBand to record but I would like to do more editting of my vocals with Pro Tools. The reason I like the Air is b/c it is light and easy to transport.

    One thing with vocalists, I can think of, is to show them the input device, and have them watch the clip meter. After a few takes, if they are somewhat savvy at singing into a mic, they'll start to back off on strong notes, and moving in on subtle notes. If you watch a pro singer on stage, you'll see them pulling the mic in close for soft stuff, and backing it way off for the strong notes. In the studio, the same techniques can be used, but the person has to back away, rather than a hand held mic pulled away.
    Hardware can help this to an extent, but the singer has to take some action to get the best performance recorded. If I were going to use hardware, it'd probably be limiting more so than compression. Limiting can keep your signal under control, without doing too much to the dynamics. I'd prefer to save compression for post, so I can decide what sounds best. I used to have a female vocalist with an amazing voice. i was NEVER able to capture her properly on tape, since I had no pre processing at all. She is still in this area, and I have invited her to come record some vox for me, because I want to see if I can now get a grip on them. If I ever do, she'll be featured on an upcoming CD

  • Advanced Development Techniques for Oracle Portal Components

    Hello friends,
    I have the following problem. I have a report and a form (on a
    view) in the same page, and when I select an item of the report
    the form is refreshed with the values associated to the selected
    item. The problem is that it makes it with delay, the first
    selection doesn't show anything and the remaining sample the
    data of the previous selection.
    This application has been developed as Ken Atkins explains in
    its document "Advanced Development Techniques for Oracle Portal
    Components."
    Oracle Portal Version: 3.0.9.8.0
    Thanks in advance.
    This is my code:
    -- REPORT --
    SELECT '<A HREF="http://mipc/portal30/
    ALFONSO.refrescar_contenido?
    p_variable=nombre_preferencia&p_variable_valor='||nombre_preferen
    cia||'&p_pagina=61">'||Preferencias||'</A>' nombre_link
    FROM ALFONSO.PREFERENCIAS
    -- PROCEDURE TO REFRESH THE PAGE --
    CREATE OR REPLACE PROCEDURE refrescar_contenido(p_varible IN
    VARCHAR2,
              p_variable_valor IN varchar2,p_pagina IN
    VARCHAR2) IS
    v_Sesion portal30.wwsto_api_session;
    BEGIN
    v_Sesion := portal30.wwsto_api_session.load_session
    ('CONTEXT','SESS_EMP');
    v_Sesion.set_attribute(p_varible, p_variable_valor);
    v_Sesion.save_session;
    owa_util.redirect_url('http://mipc/servlet/page?
    pageid='||ppagina||chr(38)||'_dad=portal30'||chr(38)
    ||'_schema=PORTAL30'||chr(38)||'_mode=3');
    END;
    -- FORM --
    -- ... BEFORE DISPLAYING THE PAGE
    alfonso.consulta_preferencia(p_session);
    -- PROCEDURE consulta_preferencia --
    CREATE OR REPLACE PROCEDURE consulta_preferencia(p_session in
    out PORTAL30.wwa_api_module_session) IS
    v_RowID VARCHAR2(100);
    v_Session portal30.wwsto_api_session;
    v_nombre VARCHAR2(40);
    BEGIN
    v_Session := portal30.wwsto_api_session.load_session
    ('CONTEXT','SESS_EMP');
    v_nombre := v_Session.get_attribute_as_varchar2
    ('nombre_preferencia');
    IF v_nombre IS NOT NULL THEN
    BEGIN
         SELECT rowidtochar(rowid) INTO v_RowID
         FROM ALFONSO.VISTAPREFERENCIAS
         WHERE nombre_preferencia = v_nombre;
    -- VISTAPREFERENCIAS it is the view in which the form is
    based.
    END;
    -- Tell the component that the query is coming from a link,
    and that the rowid
    -- is being used to query the correct context record.
    p_session.set_value (p_block_name=>'DEFAULT',
    p_attribute_name=>'_CALLED_FROM_LINK'
                   ,p_value=>'ROWID');
    -- Pass the rowid of the context record to query.
    p_session.set_value (p_block_name=>'DEFAULT',
    p_attribute_name=> '_ROWID'
                   ,p_value=> v_RowID);
    -- Now do the actual query, using the query button
    processing in the target module
    portal30.wwa_api_module_event.do_event
    ('DEFAULT','QUERY_TOP',1,'ON_CLICK',True,'',p_session);
    -- Save the session information, which includes the
    p_session.save_session;
    END IF;
    END;
    /

    You can make the report with a procedure from which you may call to a form by means of a link. It is a possibility, no??
    It is better a example:
    TABLE A
    campo1 VARCHAR2 (20)
    campo2 VARCHAR2 (20)
    CREATE OR REPLACE PROCEDURE REPORT IS
    v_cursor NUMBER;
    sentencia VARCHAR2(200);
    vnumfilas NUMBER;
    rowid_pref VARCHAR2(18);
    v_campo1 <schemaname>.A.campo1%TYPE;
    v_campo2 <schemaname>.A.campo2%TYPE;
    BEGIN
         htp.p('<HTML>');
         htp.p('<HEAD>');
         htp.p('</HEAD>');
         htp.p('<BODY>');
              sentencia := 'SELECT rowidtochar(rowid), campo1, campo2 FROM A';
              DBMS_SQL.PARSE(v_cursor,sentencia,DBMS_SQL.V7);
              DBMS_SQL.DEFINE_COLUMN(v_cursor,1,rowid_pref,18);
              DBMS_SQL.DEFINE_COLUMN(v_cursor,2,v_campo1,20);
              DBMS_SQL.DEFINE_COLUMN(v_cursor,3,v_campo2,20);
              vnumfilas := DBMS_SQL.EXECUTE(v_cursor);
              LOOP
              IF DBMS_SQL.FETCH_ROWS(v_cursor)=0 THEN
                        EXIT;
              END IF;
              DBMS_SQL.COLUMN_VALUE(v_cursor,1,rowid_pref);
              DBMS_SQL.COLUMN_VALUE(v_cursor,2,v_campo1);
              DBMS_SQL.COLUMN_VALUE(v_cursor,2,campo2);
              v_link := '<A href="PORTAL30.wwa_app_module.link?p_arg_names=_moduleid'||chr(38)||'p_arg_values=<form's moduleid>'||chr(38)||'p_arg_names=_rowid'||chr(38)||'p_arg_values='||rowid_pref||chr(34)||'>'||campo1||'</A> '||campo2||' <BR>';
                   htp.p(v_link);
                END LOOP;
         htp.p('</BODY>');
         htp.p('</HTML>');
    END;
    the form has to be based on the table A.
    I dont know if this example has errors, but have you the idea??
    I hope it helps you out.
    (Excuse my english)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Is a preamp required for recording with a third-party Mic?

    I have an inexpensive Audio-Technica ATR20 (low impedence) mic I purchased some years ago and wanted to try using is for recording a Podcast. I have the Griffin iMic interface to connect the mic to my G5 System, and I've gone through all the recommended steups I found at the Griffin website <http://www.griffintechnology.com/support/imic/IMIC-033.php>. But when I try to record anything in GarageBand 3, I have to practically stick the microphone in my mouth in order to get anything I can hear on playback.
    If I hold the mic any more than 2-3 inches from my mouth, the resulting output is barely audible (and not so great when I hold it closer). Maybe that's how you're supposed to behave around the mic, but without a stand for the thing it's pretty awkward trying to control both the garageband controls, a script, and the mic.
    Do I need to have a preamp hooked up with the mic as well (or instead) in order to get any quality sound out of the mic? Is there a relatively inexpensive way to get set up for audio recording for a simple Podcast--using the microphone I already have? Or do I need to start from scratch and purchase a bunch of professional-level equipment?
    Any help is much appreciated.
    Roger
    Mac G5   Mac OS X (10.4.3)  

    Yes. I have the older one and had experimented with it. With the switch set to Line Level Input, I got almost nothing out of it. With the Mic's switch towards the speaker icon for mic level devices, I got much better results. But that's where I had started with this post. Even with the iMics preamp in play, it seems like I'm really not getting much out of the mic to speak of.
    Roger
    Mac G5   Mac OS X (10.4.3)  

  • No Audio Track is enabled for recording message

    I'm a beginner in Mac and would appreciate some help in sorting out a problem with Garageband podcasting on iLife '06.
    When I choose female voice and press the red RECORD button, I get this message: "No Audio Track is enabled for recording". I have done some tests in the past which were ok. Have I accidently changed the settings? I checked input and output devices (usb external mic and speaker headset is recognised and that voice and not instrument selection is made.
    Can anyone help me please. Thank you.

    To enable a track choose the track and click on the
    small button icon on the right just under the track
    name. The button will be red when enabled.
    I'm looking for such a button and don't see one. AFAICT the track name is "Male Basic." Near the track name I see three buttons: mute/unmute, solo, and show/hide volume curve. But that's it. To the right of that are the mixer controls, and no other obvious buttons that I can see. What does or should the button look like? And are we both referring to the same version of GB? I'm wondering if a later version of GB has the button, but version 1 doesn't?
    BTW I have looked through the docs (the At-A-Glance and the 3 tutorial PDFs) that came with the installation, and using Preview's Search function, can find no instance of the string "enabl" in any of the documents. Nor is it anywhere in Help.
    Thanks again...

  • Echo in headphones recording podcast through Skype/GarageBand

    I've been following instructions for using garageband to record podcasts via Skype. I connect with the other person on Skype and then use Soundflower and Linein to shift the audio to Garageband and garageband records it fine.
    The problem I am having is that I hear my own voice in my headphones as a very annoying echo. Is there a way to get rid of this? I am guessing that there is a way for me to set this up so that only the other person's voice comes back at me through my headphones, but I can't figure out how?
    Thanks for the help.

    I pretty much followed these instructions, although I had to modify slightly to get it to actually work on my computer.
    http://digitalmediacookbook.com/recording-a-skype-call-using-garageband-soundflo wer-and-linein/comment-page-1/#comment-4444

  • Change bitrate for downloading podcasts

    How can I change the file size or bit rate for downloaded podcasts? A 30 minute podcast takes up a third of my ipod shuffle. Since these podcasts are spoken word, I don't need a high-quality recording. Options under "podcast" don't seem to have this available.

    How can I change the file size or bit rate for downloaded podcasts?
    You cannot change the bitrate they are downloaded at.
    Once they are downloaded, you can convert the bitrate.
    iTunes prefs -> Advanced - Importing.
    Set it to what you want.
    Then select the file in iTunes and menu Advanced -> *Convert selection to*...

  • Your tips for recording vocals

    To all the vocal producers out there:
    What are your tips for recording vocals? Not necessarily the EQ and compression and that jazz, but how you record it? I'm trying to record my own vocals but naturally I can't sing a verse in one take. Do you guys break each line up? How do you do it so the tone and volume are the same each time? If you've got a different audio segment for each line, do you just chop them up and merge them into one segment? Do you record harmonies the same way or do you have pitch-shift shortcuts?

    Maybe I'm just cranky today (apologies in advance), but when I saw this:
    but naturally I can't sing a verse in one take
    I wanted to throw something. Why the f#7*& not?
    My suggestion to you is you work hard on your vocal abilities, maybe with the help of a good vocal coach. Once that's done, learn microphone technique. After that's done, practice, practice, practice.
    When you have accomplished the above, test several microphones and find which one suits your voice. Maybe you should book some time at a commercial studio with a helpful engineer for this step. Learn the characteristics of each microphone and preamp, and see which best suit your voice.
    Then, and only then, start buying stuff for your home studio: then there will be another few months while you learn how to put it all together.
    Meanwhile, this might help:
    http://www.tweakheadz.com/howto_recordvocals.htm
    And good luck!

  • Mp3 compressing for a podcast

    Hey everyone
    I'm doing a podcast through Garageband 3. GB3 saves the file as a mpeg4 file in itunes but I convert it to mp3 because that's how windows people need it. Mp3 files are normally at least 2-3 times bigger. I was wondering if there was a way that I could compress the file so it wouldn't wouldn't be so big for my podcast subscribers?
    http://www.ironmantalk.com
    Bevan James Eyles

    If you are using the "podcast" feature when you create your audio file, it might be forcing you to export the file in a quicktime .mp4 format. If you delete the audio track up top which is for pictures, you can export the file as AIFF ... which is full quality.
    In iTunes, I use the MP3 Converter and have it set to 128kbps -- but in Mono (not stereo), which effectively records at 64kbps because it gets rid of one of the stereo tracks. I use it for an audiobook, and I think it sounds good and the file size isn't to outlandish.
    www.damonjustisntfunny.com

  • Off topic! Which snare do you like best for recording?

    Hi,
    I'm doing some drum recordings using a KM184 (sometimes CS1000) and an e904 bottom side of the snare (phase flipped). I didn't like the sound of the e904 on top so I decided to choose a KM184 which sounds nice.
    Now: Whats your experience, which snares and which drumheads do you like best for recording Rock, Pop, Funk?
    Any feedback appreciated.
    Eddie

    -how much space does it take?
    depends on how long they are.
    -Will it cause problems?
    no, y would they make them if they cause probs?
    -is it ok if i downlaod it at my grandmas place, then
    at home i wont have a copy of the podcast?
    as long as its not on auto sync you should be fine.
    Nano 4GB black,Moto RAZR V3 black, PSP, all kinds of cases for nano,radio/remote   Windows XP   <img src="http://i36.photobucket.com/albums/e13/superman5656/s.gif"align="right"</span>

  • Looking for a podcasting microphone...

    between $30-60 that can deal well for two people talking to each other through the computer from different locations. Any suggestions??

    On the cheap, Blue Snowball works well enough for me. I've even used it for recording singing. Not bad. Good fidelity for such a low cost mic and the USB interface to the computer is a big plus for simplicity.
    You can't go wrong getting an expensive mic though. You may think it's overkill, but not really... run it through a nice tube pre-amp and your podcast will sound loads better than anyone else's.
    A Blue Baby Bottle is nice and silky for spoken voice. There's always an RE-20... etc., etc.

  • Should I create a new iTunes account for a podcast?

    We are still in the process of getting our first podcast edited and ready to go, along with the website, podcast hosting, etc... But I was curious about when we are ready to submit the podcast to iTunes.... Should I ceate a new iTunes account, dedicated to the podcast, or use my own personal iTunes account to submit. I'm a little hesitant about using my own, since I'm not sure how that affects anything in how the podcast is displayed, or notifications from iTunes. I would rather have communications go through the E-Mail for the domain I have set up for the website/podcast, but it's not the end of the world.
    If it's used strictly for authentication, then it most likely won't be an issue. I just wanted to verify how it is used, and best practices, before submitting our first episode.
    Thanks,
    Mike

    It is just for authentication - no need to create a new account for your podcast.
    Just submit with the one you already have.
    Any changes to your show in iTunes are managed via your RSS feed - not from your iTunes account.
    Regards,
    Rob W
    podCast411

  • Report  for "record payment history"  for customer ?

    Report  for "record payment history"  for customer ?
    Please send it.

    Dear Goutam
    Through <b>FBL5N</b>, you have to select "<b>Cleared items</b>" with "from to date" and execute.
    You will get a list which can then be downloaded as excel by selecting "List" on top left followed by "export" and "spreadsheet".
    Thanks
    G. Lakshmipathi

Maybe you are looking for

  • Text breaks / hyphenations – no break?

    Hey, I am curious if there is a way that InDesign can format text boxes so there are no hyphenated words at all. I understand that i can manually select words and format "no break" in the text formatting options, but is there a way to do this for eve

  • Access to my Windows "Store" is only via my Wife's MS Live Sign-In UserID and there is No Way to Change it I can Find

    THE ISSUE: Whenever i go to the Windows Store on my 8.1 Pro Laptop and try to install **Anything**, Windows asks for me to sign onto my Windows Account but **ONLY** Offers me the choice of signing onto my Wife's account. NOTES: (1) I have already sig

  • Linking & branching support by iBooks Author

    I'm planning to publish a book that has a variety of internal tangents that the reader can follow (or not) at his/her choice, and I would love to publish it with iBooks Author, if possible. Anybody have any insights or know of any templates that coul

  • RMI JDBC

    I am working on a client server project where the server has access to a MS Access database, i wish to transfer ResultSets to the Client program but cannot because of serialisation. I have in the passed broken down the resultSet on the server side an

  • How many external displays dose the Retina MBP suport?

    How many external displays dose the Retina MBP support? I have herd conflicting information about this, an apple store employee told me that it could support 2 thunderbolt displays while simultaneously running a HDMI connected display (witch would be