What's the best (easiest way) to clear up voice recorded from far away?

I decided to record my professor during one of his lectures.
I sit in the back (power outlet~), and thus the voice is really muffled.
I figured I'd be easily able to clear up the sound later in CS6.
Sounds easy anyways, but for some reason, I'm not having any luck in it.
I've done much more complex restoration stuff (no where near pro, just ocd haha), but never worked with voice before.....
Any ideas will be helpful. Pretend like I've only used audition for a few days.
Thanks all~!

Unfortunately there isn't an easy or even very successful way to do this in any audio software. See the long discussion at:
http://forums.adobe.com/thread/439183?tstart=120

Similar Messages

  • App store icon gone what's the best/ easiest way to get it back?

    App store icon is gone what's the best / easiest way to get it back?

    Sophia,
    Be sure to look closely for the app in all of your user created folders.

  • What is the best (easiest) way to create thumbnails?

    From (image) files selected via JFileChooser, what is the best way to create thumbnails so they can be immediately displayed?

    package projects.web;
    import javax.swing.*;
    public class UploadApplet extends JApplet{
         public void displayGUI(){
              AppletGUI createGUI = new AppletGUI(getRootPane());
         public void init(){
              try{
                   SwingUtilities.invokeAndWait(new Runnable(){
                        public void run(){
                             displayGUI();
              } catch (Exception e){
                   e.printStackTrace();
    } // end UploadApplet class
    package projects.web;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.text.*;
    import java.util.*;
    import java.io.*;
    public class AppletGUI{
         // JButtons
         JButton addButton = new JButton("Add");
         // JPanels
         JPanel containerPanel = new JPanel();
         JPanel optionsPanel = new JPanel();
         JPanel thumbnailPanel = new JPanel();
         // JScrollPane
         JScrollPane thumbnailScroll;
         public AppletGUI(JRootPane topContainer){
              // Add actionListener
              addButton.addActionListener(new ButtonHandler());
              // Set border layout
              containerPanel.setLayout(new BorderLayout());
              // Add buttons to target panels
              optionsPanel.add(addButton);
              // Set size and color of thumbnail panel
              thumbnailPanel.setPreferredSize(new Dimension (600,500));
              thumbnailPanel.setBackground(Color.white);
              thumbnailPanel.setBorder(new LineBorder(Color.black));
              // Add thumbnail panel to scrollpane
              thumbnailScroll = new JScrollPane(thumbnailPanel);
              // Set background color of scrollPane
              thumbnailScroll.setBackground(Color.white);
              // Add subpanels to containerPanel
              containerPanel.add(optionsPanel, BorderLayout.NORTH);
              containerPanel.add(thumbnailScroll, BorderLayout.CENTER);
              // Add containerPanel to rootPane's contentPane
              topContainer.getContentPane().add(containerPanel);
         } // end constructor
         class ButtonHandler implements ActionListener{
              public void actionPerformed(ActionEvent e){
                   new FileBrowser();
              } // end actionPerformed method
         } // end inner class ActionHandler
    } // end AppletGUI class
    package projects.web;
    import java.awt.*;
    import java.io.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    import javax.imageio.*;
    import java.util.*;
    public class FileBrowser{
         JFileChooser fileChooser = new JFileChooser();
         int fileChooserOption;
         LinkedList<File> selectedFilesList = new LinkedList<File>();
         LinkedList<String> fileNames = new LinkedList<String>();
         public FileBrowser(){
              fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
              fileChooser.setMultiSelectionEnabled(true);
              fileChooserOption = fileChooser.showOpenDialog(null);
              if (fileChooserOption == JFileChooser.APPROVE_OPTION){
              for (File selectedFile : fileChooser.getSelectedFiles()){
                        selectedFilesList.add(selectedFile);
                        fileNames.add(selectedFile.getName());
              } // end enhanced for loop
              } // end if
         } // end constructor
    } // end class FileBrowser

  • What is the best practice way of stopping a sub-domain from being indexed?

    Hi there
    I notice that a client site is being indexed as both xxx.com.au [their primary domain] as well as xxx.PARTNERDOMAIN.com.au.
    I have Googled quite a bit on the subject and have browsed the forums, but can't seem to find any specific best practice approach to only having the primary domain indexed.
    One method that seems to be the most recommended is having a second robots.txt site for the sub-domain xxx.PARTNERDOMAIN.com.au with Disallow: /
    Does anyone have a definitive recommendation?
    Many thanks
    Gavin

    Sorry I assumed they were two different sites, they are the same "content" just two different URLs?
    Canonical links will help but it wont stop or remove you being indexed it only adds higher index weight to the Canonical linked URL. Plus only search engines that support that meta tag will work.
    You essentially need two robots.txt to do this effectively or add the META TAG if you can split the sites somehow.
    There is a more complex way, you could host the second domain somewhere else, use htaccess or similar to do a reverse proxy to the main site to pull the contents in realtime, all except the robots.txt file. This way you could have two sites with only 1 to update but still have two robots.txt's
    http://en.wikipedia.org/wiki/Reverse_proxy
    I've done this for a few sites, you are essentially adding a middle man, it will be a tad slower depending on how far the two servers are apart, but it is like having a cname domain but with total control.

  • What is the best, cheapest way to upgrade from CS3 MAC to a newer CS for PC

    What is the best, cheapest way to upgrade from CS3 MAC to a newer CS for PC? I do graphic desing mostly print and some web and want to get into ebooks and more web graphics?

    Hi riverwalk2,
    I have check & found Design Standard CS3 that you have might be eligible for few special offer for the latest version of Adobe Creative Cloud which is independent of Operationg systems.
    Please choose the best option in http://www.adobe.com/products/discount-software-coupons.html?promoid=KAWQR
    Hope it helps you,
    Regards,
    Rajshree

  • What is the best approach to take daily backup of application from CQ5 Server ?

    Hello,
    How to maintain daily backup to maintain the data from server.
    What is the best approach.
    Regards,
    Satish Sapate.

    Linking shared from ryan should give enough information. 
    If case backing up large repository you may know Data Store store holds large binaries and are only stored once. To reduce the backup time remove the datastore from the backup by following [1] (CQ 5.3 example)
    [1] In order to remove the datastore from the backup you will need to do the following:
    Assuming your repository is under /website/crx/repository and you want to move your datastore to /website/crx/datastore
        stop the crx instance
        mv /website/crx/repository/shared/repository/datastore /website/crx/
        Then modify repository.xml by adding the new path configuration to the DataStore element.
    Before:
    <DataStore class="org.apache.jackrabbit.core.data.FileDataStore">
    <param name="minRecordLength" value="4096"/>
    </DataStore>
    After:
    <DataStore class="org.apache.jackrabbit.core.data.FileDataStore">
    <param name="path" value="/website/crx/datastore"/>
    <param name="minRecordLength" value="4096"/>
    </DataStore>
    After doing this then you can safely run separate backups on the datastore while the system is running without affecting performance very much.
    Following our example, you could use rsync to backup the datstore:
    rsync --av --ignore-existing /website/crx/datastore /website/backup/datastore

  • What's the best solution for audio out of sound files from a MacBook Air to both an amplifier and to a subwoofer amplifier? I'm using the MBA to play sound files for worship services at our church.

    I have a MacBook Air (13", 1.7GHz, 8GB RAM, 500GB SSD) that I'll be using to play sound files (primarily organ and piano) for worship services at my church. We'll be using a QSC RMX2450 650 Watts/Channel amplifier with Community CPL-27 speakers and also a JBL SUB 250P powered subwoofer with its own amplifier. What's the best option for getting sound out from the Mac to both of these amplifiers? 

    if you work with own recorded sounds you might wanna have a music program where you want to work with samples, steinberg has got very good ones (so they say)... but their really really ( ²) expensive(that's why almost no one haves them), magix haves good ones too bu their more for 'unprofessional' use, ableton haves really good ones too and they're not to difficult to use (if you know a bit of those programs you learn very quickly) and if you don't get them, there is a sort of manual built in it which explains and lets you do things to start (basics)
    i hope this helped, btw stereo speakers are always better if you buy good ones (no pc speakers), but if you don't think you need them, don't buy them...
    so again, i hope you have some ideas now

  • What is the best anti-theft hardware for iPhone 4? From pick pocket thief.

    What is the best anti-theft device for iPhone 4s? Going to Barcelona, Spain in a week; pick pocket capital city of the world.

    I guess LoJack is probably the DeFacto when it comes to this however I haven't used it myself...
    http://www.absolute.com/en/lojackforlaptops/home.aspx

  • Start-up Magazine Advice on what is the best/cheapest way to produce this with DPS

    Hello,
    I am designing a magazine (for distribution on the Apple Newsstand or as a standalone app) I was wondering if any one had any advice as to which would be the best way to go about publishing - as far as what package to buy to distribute it.
    I am trying to find the most cost effective way to get this published as this is a test magazine and if he likes his results then he plans on doing between 4-6 issues a year.
    My thoughts are to create a single app for the Apple store, see the results, and if they are positive then go ahead and create it for the Newsstand and purchase a bundle of downloads. It seems to be cheaper and more cost effective for a project that he is not even sure he will be continuing. Does anybody have any pros or cons to this?
    As far as I understand it if I subscribe to the Creative Cloud, then I will be able to create a single edition app to distribute on the app store? And from what I have read the cost to create this app is free?
    If I subscribed to the creative cloud does that come with a certain number of fulfillments to start with?
    I have requested a consultation from Adobe with these concerns for over a week now and they have yet to get back to me so I figured I would ask the people who actually have experience in this.
    ANY advice/suggestions for this is GREATLY appreciated!

    Thanks Bob.
    Do you get any free download fulfillments to start off iwth or you have to purchase those to begin with if you wanted to put a mag on the newsstand?

  • What's the 'best practice' way to get email and fax number from vendor?

    Hello *,
    could anybody let me know what the 'best-practice' is to get the fax number and smtp address from the vendor master? Is there a preferred function module I should use?
    Thanks a lot,
    Torsten

    Hi ,
    try that:
    TYPE-POOLS: szadr.
    DATA adr_kompl TYPE szadr_addr1_complete.
    DATA adr1 TYPE szadr_addr1_line.
    DATA adtel TYPE szadr_adtel_line.
    DATA admail TYPE szadr_adsmtp_line.
    DATA adfax TYPE szadr_adfax_line.
    CALL FUNCTION 'ADDR_GET_COMPLETE'
           EXPORTING
                addrnumber              = lfa1-adrnr
           IMPORTING
                addr1_complete          = adr_kompl
           EXCEPTIONS
                parameter_error         = 1
                address_not_exist       = 2
                internal_error          = 3
                wrong_access_to_archive = 4
                OTHERS                  = 5.
    * Mail
      LOOP AT adr_kompl-adsmtp_tab INTO admail.
        MOVE admail-adsmtp-smtp_addr TO atab-mail.
      ENDLOOP.
    * fax
      LOOP AT adr_kompl-adfax_tab INTO adfax.
        MOVE adfax-adfax-fax_number TO atab-fax_number.
      ENDLOOP.
    regards Andreas

  • Auditing tables - What are the best possible ways of doing it?

    Hello Everyone,
    DB version: 10g.
    Brief description of the problem: Right, now I am working on an application which has a java frontend and oracle
    backend. We have no access to the java code at all. So, it is a complete blackbox. . Just wondering, if I could go for a schema level trigger to know, which columns of which tables are altered upon some action at the frontend. Or, if I know the tables specifically, say tab A and tab B; Should I go for a row level trigger on them, instead of going for a
    schema level trigger. Which approach will be the best? If possible, would you please point me to some code samples
    for both of them.
    Thanks.

    http://www.oracle.com/pls/db102/search?remark=quick_search&word=audit&tab_id=&format=ranked

  • What is the best practice of deleting large amount of records?

    hi,
    I need your suggestions on best practice of deleting large amount of records of SQL Azure regularly.
    Scenario:
    I have a SQL Azure database (P1) to which I insert data every day, to prevent the database size grow too fast, I need a way to  remove all the records which is older than 3 days every day.
    For on-premise SQL server, I can use SQL Server Agent/job, but, since SQL Azure does not support SQL Job yet, I have to use a Web job which scheduled to run every day to delete all old records.
    To prevent the table locking when deleting too large amount of records, in my automation or web job code, I limit the amount of deleted records to
    5000 and batch delete count to 1000 each time when calling the deleting records stored procedure:
    1. Get total amount of old records (older then 3 days)
    2. Get the total iterations: iteration = (total count/5000)
    3. Call SP in a loop:
    for(int i=0;i<iterations;i++)
       Exec PurgeRecords @BatchCount=1000, @MaxCount=5000
    And the stored procedure is something like this:
     BEGIN
      INSERT INTO @table
      SELECT TOP (@MaxCount) [RecordId] FROM [MyTable] WHERE [CreateTime] < DATEADD(DAY, -3, GETDATE())
     END
     DECLARE @RowsDeleted INTEGER
     SET @RowsDeleted = 1
     WHILE(@RowsDeleted > 0)
     BEGIN
      WAITFOR DELAY '00:00:01'
      DELETE TOP (@BatchCount) FROM [MyTable] WHERE [RecordId] IN (SELECT [RecordId] FROM @table)
      SET @RowsDeleted = @@ROWCOUNT
     END
    It basically works, but the performance is not good. One example is, it took around 11 hours to delete around 1.7 million records, really too long time...
    Following is the web job log for deleting around 1.7 million records:
    [01/12/2015 16:06:19 > 2f578e: INFO] Start getting the total counts which is older than 3 days
    [01/12/2015 16:06:25 > 2f578e: INFO] End getting the total counts to be deleted, total count:
    1721586
    [01/12/2015 16:06:25 > 2f578e: INFO] Max delete count per iteration: 5000, Batch delete count
    1000, Total iterations: 345
    [01/12/2015 16:06:25 > 2f578e: INFO] Start deleting in iteration 1
    [01/12/2015 16:09:50 > 2f578e: INFO] Successfully finished deleting in iteration 1. Elapsed time:
    00:03:25.2410404
    [01/12/2015 16:09:50 > 2f578e: INFO] Start deleting in iteration 2
    [01/12/2015 16:13:07 > 2f578e: INFO] Successfully finished deleting in iteration 2. Elapsed time:
    00:03:16.5033831
    [01/12/2015 16:13:07 > 2f578e: INFO] Start deleting in iteration 3
    [01/12/2015 16:16:41 > 2f578e: INFO] Successfully finished deleting in iteration 3. Elapsed time:
    00:03:336439434
    Per the log, SQL azure takes more than 3 mins to delete 5000 records in each iteration, and the total time is around
    11 hours.
    Any suggestion to improve the deleting records performance?

    This is one approach:
    Assume:
    1. There is an index on 'createtime'
    2. Peak time insert (avgN) is N times more than average (avg). e.g. supposed if average per hour is 10,000 and peak time per hour is 5 times more, that gives 50,000. This doesn't have to be precise.
    3. Desirable maximum record to be deleted per batch is 5,000, don't have to be exact.
    Steps:
    1. Find count of records more than 3 days old (TotalN), say 1,000,000.
    2. Divide TotalN (1,000,000) with 5,000 gives the number of deleted batches (200) if insert is very even. But since it is not even and maximum inserts can be 5 times more per period, set number of deleted batches should be 200 * 5 = 1,000.
    3. Divide 3 days (4,320 minutes) with 1,000 gives 4.32 minutes.
    4. Create a delete statement and a loop that deletes record with creation day < today - (3 days ago - 3.32 * I minutes). (I is the number of iterations from 1 to 1,000)
    In this way the number of records deleted in each batch is not even and not known but should mostly within 5,000 and even you run a lot more batches but each batch will be very fast.
    Frank

  • What is the best laptop or desktop to make and record music on?

    i'm a muscian and heard mac is great to record on and they all come with garageband recording studio. is their a perticular one thats perfect for recording? and can i customize one for making music if they allready dont have one? thank you.

    THANKS! STATION_TWO for the "over-correct-answer" you give................
    If I'm honest, the answer of Richard was for me enough to realize where I made a "wrong inference" in understanding color management.
    He is for me the best teacher in this case, I've learned something from him because he's talking on my level.
    By the way: the english language is not my native language... so my questions should have to be read with understanding of grammatical expressions from other languages >> ("The color management is know by me…").
    Again: Richard, in this case, read my question properly and has helped me on my way.

  • What are the best data and bit rate setting for uploading from final cut express to Youtube?

    Can anyone suggest the best data rate and bit rate presets for uploading footage from final cut express 4 to Youtube? What settings will provide the best resolution, quality, and match the current youtube requirements?
    Thank you in advance for your help,
    Susan Kayne

    It depends on whether you are using aspect ratios of 4:3 or 16:9.
    Below is some simple guidance that will provide good quality with reasonably small file sizes.
    The first part is for 4:3 video:-
    1. File>Export Using QT Conversion.
    2. The "Format" window should say, "QT Movie".
    3. In "Use" select "LAN/Intranet" from the dropdown menu.
    4. Click "Save" and when it has finished encoding, upload it to YouTube.
    If you are making 16:9 video (Standard or High Definition) do steps 1 to 3 above.
    Then when you have selected "LAN/Intranet" press the "Options" button and in the new
    window that opens press the  "Size"  button and change the  "640x480" to  "853x480"
    To do this you will have to click on the  640x480 and a dropdown menu appears.
    Select "Custom" from  the bottom of the menu and in the window that opens
    you will see 2 boxes.
    Put  853  in the first box and  480  in the second.
    Click OK.
    Then Save it.

  • What's the best codec to edit with in Premiere coming from FCP

    Hi everyone
    I have a project that has been edited in Final Cut Pro on my Mac. The footage was compressed to Apple Prores HQ to edit in FCP. Now I have a new computer loaded with Adobe CC I want to export the FCP project in the best codec possible to colour correct/ add effects and colour grade with adobe CC.
    I don't want to bring all the project files over, just the finished sequence I've edited.
    Can anyone advise me on what the best possible codec is to export it in on my mac to start finalizing in Adobe Premiere?
    All the best
    Kevin

    Do the below to match your sequence and your video and you should be good to go
    See 2nd post for picture of NEW ITEM process http://forums.adobe.com/message/3776153
    -and a FAQ on sequence setting http://forums.adobe.com/message/3804341
    The tutorial list in message #3 http://forums.adobe.com/message/2276578 may also help

Maybe you are looking for

  • How to add a list view from a parent site to a subsite

    I have a custom list in a parent site, and I would like to display that same list (perhaps with a different view) on a page in a subsite.  Is there a straightforward way of doing this?

  • Zen Touch wont turn on nor cha

    i brought my zen touch 2 days ago, i charged it and once it went dead flat i put it back on charge and now it wont chrage at all or turn on. i tryed charging it thought usb but that wont world either. how suggestions?

  • G L a/c item data..

    any one can tell me the item data of gl A/c.

  • How to copy-paste motion settings

    I just change some settings in the motion tab of one clip. I would like to copy those settings to several other clips....is there a way to do this ??? Thanks

  • Missing master files in Aperture

    I am missing master files from Aperture 3. I rebuilt the library with no success. Oddly, I can't even find them in Time Machine even though I know I exported versions of them. The entire month of imports doesn't ever appear in Time Machine even thoug