How can I make a long audio / voice recording

How can I make a long audio / voice recording? I want to record my life story that will be a long recording.

How can I make a long audio / voice recording? I want to record my life story that will be a long recording.

====================================
The following article might be worth a visit:

Windows 7 - audio record with sound recorder
http://Windows.Microsoft.com/en-us/Windows7/record-audio-with-sound-recorder

Tags: Windows

Similar Questions

  • How can I make a long list of search - replace only the master

    Hello world

    I had this script:

    //---------------------------------------------------------------------------------------- -------------------------------

    myDocuments var = app.documents.everyItem ();
    var myLayers = myDocuments.layers.everyItem ();

    Locked text on master blocks spreads are not affected.
    If you want to unblock, please add something like this:

    Unlock all elements of each document page on is spreading and Captain spreads (optional):
    myDocuments.pageItems.everyItem (.locked = false);

    var myPageItemsOnNormalSpreads = myDocuments.spreads.everyItem ().pageItems.everyItem ();

    Unlock the layers (optional)
    myLayers.locked = false;

    Lock all elements of page level first on normal spreads
    This leaves the elements on the page on unlocked master spreads:
    myPageItemsOnNormalSpreads.locked = true;

    Now for the GREP part:
    app.findChangeGrepOptions.includeMasterPages = true;
    app.findGrepPreferences = changeGrepPreferences = null;
    app.findGrepPreferences.findWhat = "\\b20\\d+\\b";

    Research on "all open document" level
    Which returns an array of arrays:
    var myTarget = myDocuments.findGrep ();

    Flattening of myTarget Bay:
    var flattenedFoundArray = [];

    for (var n = 0; n < myTarget.length; n ++) {}
    flattenedFoundArray = flattenedFoundArray.concat (myTarget [n]);
    };

    Change the content of the texts found in flat table:
    for (var n = flattenedFoundArray.length - 1; n > = 0; n-) {}
    flattenedFoundArray [n] .silence = String (Number(flattenedFoundArray[n].contents) + 1);
    };

    Unlock all objects on normal spreads:
    myPageItemsOnNormalSpreads.locked = false;

    Reset search GREP and edit the prefs:
    app.findGrepPreferences = changeGrepPreferences = null;

    //---------------------------------------------------------------------------------------- -------------------------------

    made by Uwe

    I change in this, to make a multi elements of search - replace only the master

    //==============================================================================

    myDocuments var = app.documents.everyItem ();
    var myLayers = myDocuments.layers.everyItem ();

    Locked text spreads masters frameworks are not affected.
    If you want to unblock, please add something like this:

    Unlock all items page of each document of spreads and master spreads (optional):
    myDocuments.pageItems.everyItem (.locked = false);

    var myPageItemsOnNormalSpreads = myDocuments.spreads.everyItem ().pageItems.everyItem ();

    Unlock the layers (optional)
    myLayers.locked = false;

    Lock all elements of page level first on normal spreads
    This leaves the elements on the page on unlocked master spreads:
    myPageItemsOnNormalSpreads.locked = true;

    Now for the GREP part:
    app.findChangeGrepOptions.includeMasterPages = true;
    app.findGrepPreferences = changeGrepPreferences = null;
    app.findGrepPreferences.findWhat = "USA";

    Research on "all open document" level
    Which returns an array of arrays:
    var myTarget = myDocuments.findGrep ();

    Flattening of myTarget Bay:
    var flattenedFoundArray = [];

    for (var n = 0; n < myTarget.length; n ++) {}
    flattenedFoundArray = flattenedFoundArray.concat (myTarget [n]);
    };

    Change the content of the texts found in flat table:
    for (var n = flattenedFoundArray.length - 1; n > = 0; n-) {}
    flattenedFoundArray [n] .silence = "CHINA";
    };

    Unlock all objects on normal spreads:
    myPageItemsOnNormalSpreads.locked = false;

    Reset search GREP and edit the prefs:
    app.findGrepPreferences = changeGrepPreferences = null;


    //---------------------------------------------------------------------------------------- -------------------------------

    myDocuments var = app.documents.everyItem ();
    var myLayers = myDocuments.layers.everyItem ();

    Locked text spreads masters frameworks are not affected.
    If you want to unblock, please add something like this:

    Unlock all items page of each document of spreads and master spreads (optional):
    myDocuments.pageItems.everyItem (.locked = false);

    var myPageItemsOnNormalSpreads = myDocuments.spreads.everyItem ().pageItems.everyItem ();

    Unlock the layers (optional)
    myLayers.locked = false;

    Lock all elements of page level first on normal spreads
    This leaves the elements on the page on unlocked master spreads:
    myPageItemsOnNormalSpreads.locked = true;

    Now for the GREP part:
    app.findChangeGrepOptions.includeMasterPages = true;
    app.findGrepPreferences = changeGrepPreferences = null;
    app.findGrepPreferences.findWhat = 'Washington DC';

    Research on "all open document" level
    Which returns an array of arrays:
    var myTarget = myDocuments.findGrep ();

    Flattening of myTarget Bay:
    var flattenedFoundArray = [];

    for (var n = 0; n < myTarget.length; n ++) {}
    flattenedFoundArray = flattenedFoundArray.concat (myTarget [n]);
    };

    Change the content of the texts found in flat table:
    for (var n = flattenedFoundArray.length - 1; n > = 0; n-) {}
    flattenedFoundArray [n] .silence = "Beijing."
    };

    Unlock all objects on normal spreads:
    myPageItemsOnNormalSpreads.locked = false;

    Reset search GREP and edit the prefs:
    app.findGrepPreferences = changeGrepPreferences = null;


    //===============================================================================

    only what I can do is to repeat and repeat again

    is this another perfect solution to do?

    Thank you

    Teetan

    Try this,

    findChange("USA", "CHINA");
    findChange("Washington DC", "Beijing");
    
    function findChange (findWhat, changeContent){
        var myDocuments = app.documents.everyItem();
        var myLayers = myDocuments.layers.everyItem();
        //Locked text frames on master spreads are not touched.
        //If you want to unlock them you have to add something like this:
        //Unlock ALL page items in every document on spreads and master spreads (optional):
        myDocuments.pageItems.everyItem().locked = false;
        var myPageItemsOnNormalSpreads = myDocuments.spreads.everyItem().pageItems.everyItem();
        //Unlock the layers (optional)
        myLayers.locked = false;
        //Lock all first level page items on normal spreads
        //That leaves the page items on master spreads unlocked:
        myPageItemsOnNormalSpreads.locked = true;
        //Now for the GREP part:
        app.findChangeGrepOptions.includeMasterPages = true;
        app.findGrepPreferences = changeGrepPreferences = null;
        if(findWhat)app.findGrepPreferences.findWhat = findWhat;
        //Do the search on "all open document" level
        //That will return an array of arrays:
        var myTarget = myDocuments.findGrep();
        //Flattening the myTarget array:
        var flattenedFoundArray = [];
        for(var n=0;n=0;n--){
            if(changeContent)flattenedFoundArray[n].contents = changeContent;
            };
        //Unlock all objects on normal spreads:
        myPageItemsOnNormalSpreads.locked = false;
        //Reset GREP find and change prefs:
        app.findGrepPreferences = changeGrepPreferences = null;
    }
    

    Vandy

  • The address window has been reduced. How can I make it any longer so I can see the address (or most of them at least)?

    I've updated to Firefox for Mac 3.6.23. I have OS 10.4.11. Immediately, I noticed that the address window has been reduced to about half an inch. The search engine is long, like the address used to be window. It's not good for me. I usually use the address window to make changes and move it to a new page. I can't do it now. How can I make long once again the address window? Can I return to 3.6.22? I need this long window.
    Sincerely,
    Gerald E. Strickland
    Bradenton, Florida

    You can place the mouse between the address bar and the search bar, and it will become an icon of resize.

    Press the left mouse button and drag it to the right to make the larger location toolbar.

    You can also reset the related wides by deleting localstore.rdf in the Firefox profiles folder

  • How can I make my audio player by default for iTunes?

    How can I make my audio player by default for iTunes?

    Simple click on your file, then info (cmd + I) and select open with and then select iTunes.

  • I have two videos that I would like to combine. But the audio part of the second video is delayed, how can I change so that audio and Visual are equal. IM using windows live movie maker. Thank you

    I have two videos that I would like to combine. But the audio part of the second video is delayed, how can I change so that audio and Visual are equal. IM using windows live movie maker. Thank you

    Hello hodginswill,

    Thank you for visiting the website of Microsoft Windows Vista Community. The question you have posted is related to Movie Maker and would be better suited to the Windows Live community. Please visit the link below to find a community that will support what ask you:

    https://windowslivehelp.com/product.aspx?ProductID=5

  • How CAN I Make, hearing, CC, Edit, file, audio, (.) DTS)

    How CAN I Make, hearing, CC, Edit, file, audio, (.) DTS)

    Help, please. Thank you

    However, if it's any help you, hearing can open, save, and, consequently, change the .ac3 Dolby Digital format files.

    Otherwise, as Steve says:

    DTS store | DTS

    Over-codes DTS - HD - Minnetonka Audio Web Shop

  • How can I make YouTube playback buttons and other plug-ins more great because they are so tiny?

    How can I make YouTube playback buttons and other plug-ins more great because they are so tiny in Firefox? I tried some suggestions dealing with entering "subject: config ' in a fresh browser, but does not. I also downloaded the add-on called "Theme font & size changer", but that no longer works. So I'm reaching here that it was a suggestion that offered another user here.

    Ah, Yes, that's - a ultra high resolution (dots per inch) display. It is a known problem in Flash Player, which Adobe is working on fixing.

    In the meantime, you can get some videos to have normal size controls from the Youtube HTML5 video player:
    In Firefox, go to https://www.youtube.com/html5 and click on the button "request the HTML5 player.

  • How can I make Android V35 behave like the V24?

    I use FF on Android, I've been holding until the update since 24 V for all newer versions will not auto play mp3 for download without interaction. I use this to play on Google voice email messages. How can I make 35 V behave like a 24 V?

    Thanks Roland, I guess all I can ask is that you can do occur in future releases and maybe make an adjustment if it is a problem for other users to access this feature.

    Thanks Bob

  • How can I make changes on a worksheet Microsoft Excel, which was sent to me?

    How can I make changes to a spreadsheet Excel that was sent to me?

    As long as it's not too exotic, you should be able to open it with numbers, make your changes, and then export as Excel again and send to the sender.

    Maybe a few fonts change notifications when you open an Excel file in a first time (e.g. lack of fonts, then a substitution).

  • How can I make sure that my music on my Ipod Classic is not lost forever, if it breaks down?

    How can I make sure that my library of music on my Ipod Classic is not lost forever, if it breaks down?

    Back it up.

    Your music library should never exist only on your iPod.  It must be present on a computer in iTunes, and to be sure it must be saved on an external drive also.

    If your library no longer exists on your computer for whatever, reason, you need to extract the iPod.

    turingtest2 offers you several ways to do this in his user tip found here:

    Recover your iTunes from your iPod or an iOS device

  • How can I make my adodc more quickly connect my SqlServer?, its takes a minute before that I can view thousands of record in my listview.

    How can I make my adodc more quickly connect my SqlServer?, its takes a minute (so long) before I can view thousands of record in my listview.please someone help me.

    I'm using...

    Public Class McheckpaymentNew
    Cn as New ADODB. Connection
    Private RS As New ADODB. Recordset

    Private Sub McheckpaymentNew_Load(sender As Object, e As EventArgs) Handles MyBase.Load

    Try

    CN. ConnectionString = "DSN = database; UID = user; PWD = password"
    CN. Open()

    RS. CursorLocation = ADODB. CursorLocationEnum.adUseClient
    RS. CursorType = ADODB. CursorTypeEnum.adOpenStatic
    RS. LockType = ADODB. LockTypeEnum.adLockBatchOptimistic

    Catch ex As Exception
    MsgBox ("could not connect!, please check your network connections, or Contact MIS Dept. for assistance.", vbCritical, "Error connecting to the database...")
    End
    End Try

    End Sub

    Please correct if I wrong use, causing the delay.please someone help me...


    This issue is beyond the scope of this site and must be placed on Technet or MSDN

    http://social.msdn.Microsoft.com/forums/en-us/home

  • Pro Media Center of Windows 8 license is not triggered. How can I make it back to Windows 8 Pro license

    I received a free upgrade license for Windows 8 Pro with Media Center, at the time where they offered.

    I have not noticed that the license is good if active before a date which has since long (a few times in February). The license has been accepted at the entrance and the Media Center software installed, when I went to add new features to Windows 8 (I had already updated the machine to Windows 8 Pro.

    In fact, I don't want to buy the upgrade at this point. How can I make the license back to the old key... which of course, now I can't see.  I bought several upgrades, and you have not installed all, so I don't know how many of those I've not used on other machines upgrade is the one I used on this one.

    Thank you

    John

    See:

    http://www.eightforums.com/tutorials/16077-Media-Center-remove-go-back-Windows-8-Pro.html

  • Proposal title - contemporary - GeneralLabel |  How can I do play longer?

    First Elements 14.  I use a title of movement (contemporary - GeneralLabel).  For background, I use the freeze frame option to display an image of my video.  I want the animation to play for a longer period of time.  However, when I try to enter IN or POINTS, they are not allowed to be seized (they display a red slash mark).  How to make animation longer?  Right now, he plays for 5; 16. I would like to play for, maybe 10 seconds.

    Thanks for your help.

    Titles of movement have a fixed duration. You can not make it longer.

  • I have trouble deleting a project to create Clip... keep it coming back (sync).  How can I make sure that it is void of all devices and permanently?

    I have trouble deleting a project to create Clip... keep it coming back (sync).  How can I make sure that it is void of all devices and permanently?  So much space being taken up on my iPad... there at - it a why to manage what are sync'd projects and ignore others?

    Hi Bill,

    Sorry, you have trouble. Here's a suggestion:

    1. launch Premiere Clip on a device and make sure it is not open on other devices.

    2. on the device, as it is opened, remove projects that are no longer needed.

    3. allow the synchronization of the application (leave opens and is not the bottom) so that projects are marked as being deleted on the service. A circle of rotation icon appears in the lower left corner of your device while synchronization is in progress.

    4. Uninstalling the app on other devices, then re - install and login to leave remaining projects sync.

    Please let us know if this solves your problem, or if you need more help.

    Thank you

    Bronwyn

  • How can I make Apple sent an official request for Andorra in the list of international codes?

    Apple acknowledges that Andorra Telecom (Mobiland) is an approved operator.

    However it does not include the international dialing code of Andorra (+ 376) in the list of phone prefixes in the country.

    This prevents verification services, such as in two steps and two-factor authentication.

    How can I make Apple sent an official request for Andorra in the list of international codes?

    Thank you.

    Return of goods - Apple

Maybe you are looking for