Sleep Talk Recorder problem.

Hi, I have a problem with the app Sleep Talk Recorder. When I tryed it last night I got over 1600 recordings, and alot of them where just buzzing sounds. My mic sensitivity is at medium. Anyone who know what this might be?

The only thing I can think of is that the environment around you is too noisy for the microphone to stay deactivated and not record anything. Maybe you can set the microphone at the lowest sensitivity setting and give it a try, or keep the iPod in a relatively quieter environment so as to not catch unwanted sounds.

Similar Messages

  • Problem loading sleep talk recorder

    iv downloaded and installed the app, but when i clicked on it for the first time to load it up it is taking a very long time. its been loading now for over 2hrs!!! is this normal?

    The only thing I can think of is that the environment around you is too noisy for the microphone to stay deactivated and not record anything. Maybe you can set the microphone at the lowest sensitivity setting and give it a try, or keep the iPod in a relatively quieter environment so as to not catch unwanted sounds.

  • Sleep Talk Recorder

    Whenever I try to send my favorite recordings to my email address, they never come.  I have tried several times just to make sure I'm entering the correct address, but it still isn't working.

    Could it be that the email account has sent your email to the spam folder?
    Do you have an email filter on?
    ~Lt. Leviathan

  • Can i recover data from an app to my new iphone ? (Sleep talk recordings)

    Love the sleep talk app and i have some old recordigs i would like to recover. As they are not included when i synced the app to my new 4S, the only thing i can think of is restoring everything from my old iphone by syncing the old backup stored in itunes.
    But i dont feel like doing that and i still dont know if that will me all the previous data and not just the apps themselves...

    App data is part of the icloud and itunes backup.  Backup your daughters phone.
    I don't think you can save it to your phone, unless the movie app states that you can.  Look at their support site.

  • Recording problem on my Xi-Fi Fatality?

    'Recording problem on my Xi-Fi Fatality?d So I have a Xi-Fi Fatality, and I would like to be able to record directly from my computer so that it's own output is also the input. For example, if I'm on ventrillo or something and I want to play a funny mp3 to show my friends I'd like to be able for the audio to come directly from the output.
    Anyways, my microphone seems to work fine, and that's where the trouble begins.
    I go to the sound control panel and click on the recording tab. ? It has microphone as the default device and it says "working."
    There are also options for "Auxillary" "Line-In" "Digital-In" and "What U Hear"
    However, under each of them it says "currently unavailable"
    I am unable to get any of them to function even when I set them to the default device.
    Is this normal?

    + It's funny you should post this because I came here right now to post the exact same thing. I would have posted earlier but I forgot my account information and had to wait to get a reply email.
    So... same here (yes I know this was no help).
    Actually this is kind of weird. Every now and then my "Aux 2" will become available and my mic is not. I have to restart my computer 4 or 5 times for my mic to become available.

  • Sleep of death problem Tablet S r5

    My Tablet S suffers sleep of death problem after upgrading to ICS r5.
    I did factory reset several days ago and it seemed the problem has gone.
    But from yesterday it has begun again and happened twice today.
    Overall I am satisfied with the upgrade, better wifi and less flickering.
    Hope that problem won't get worse.
    Solved!
    Go to Solution.

    Hello,
    Thank you for your post
    We are currently investigating why the power button intermittently will not wake the S1 Tablet from sleep.
    Do you see a Green Blinking Indicator each time this occurs?
    for the time being, performing a [ [url=http://www.kb.sony.com/selfservice/microsites/search.do?cmd=displayKC&docType=kc&externalId=C1023464&sliceId=1&docTypeID=DT_KNOWLEDGEARTICLES_1_1&dialogID=203829332&stateId=0%200%20203827592:2fneqb0t]Soft Reset[/url:2fneqb0t] ] will allow a power on.
    Once we have resolved this issue, we will post here that an update is available. There is no ETA at this time for resolution.
    We are also aware of Tablet Icons not remaining on the desktop after power down
    that issue is being addressed in this thread: [url=https://forum.sel.sony.com/viewtopic.php?f=109&t=15209&p=41474#p41474:2fneqb0t]Here[/url:2fneqb0t]

  • Record Store only reads one record problem

    I have a problem where I can read and write a record to a records store, but i can not do this for multiple records as i am trying with below code. Any help is very welcomes thank you, I am very new to J2ME.
    I have a J2ME midlet that calls the startRecordStore() method which create a record 1.
    It uses a static int records and it increments it every time a new recordstore is created, well I am not entirely sure if i need to do this. Because I want to go through all the records created.
    public void startRecordStore() {
         // Incremenets records count
         // Temporary example for this workshop only
         records+=1;
         try { rs = RecordStore.openRecordStore("StudentStore"+records+"", true);
         catch (Exception err) {
              Alert alr = new Alert("Error Creating", err.toString(), null, AlertType.WARNING);
              alr.setTimeout(Alert.FOREVER);
              display.setCurrent(alr);
    }Then it calls the readData() method which reads the data from the 3 fields, something like this
    for(int i=0;i<count;i++) {
              ods.writeUTF(ReadDataString);
              ods.writeUTF(ReadDataString[i+1]);
              ods.writeInt(ReadDataInt[i]);
              ods.flush();
              // Put the whole write stream to a byte
              ReadDataByte = os.toByteArray();
              // finally add the fetchDataType to to a record store
              rs.addRecord(ReadDataByte, 0, ReadDataByte.length);
         os.reset();
         os.close();
         ods.close();
    Then the WriteData() method is called displaying the records
    PROBLEM it only displays the last record, instead of more then one record.
    eg. StudentStore1, StudentStore2 etc etc ..
    // create record enumerator referrence to the instance
         re = rs.enumerateRecords(null,null,false);
         // go through each records using enumerator
         while(re.hasNextElement()) {
              rs.getRecord(re.nextRecordId(), ReadInputData, 0);
              buffer.append(ids.readUTF());
              buffer.append("\n");
              buffer.append(ids.readUTF());
              buffer.append("\n");
              buffer.append(ids.readInt());
              buffer.append("\n");
              Alert alr = new Alert("Currently Reading", buffer.toString(), null, AlertType.WARNING);
              alr.setTimeout(Alert.FOREVER);
              display.setCurrent(alr);
         // CLOSE INPUT STREAM
         is.close();Any idea thanks guys

    public void startRecordStore() {
        records+=1;
        try {
            rs = RecordStore.openRecordStore("StudentStore"+records+"", true);
        }Are you sure this is what you want to do?
    I don't know where you're calling startRecordStore(), but you're creating a new record store for each "records".
    Shouldn't you be just opening the record store "StudentStore", and them adding records to that store?
    jc

  • Audio recording problem in Cap 5

    I have used earlier Captivate editions a great deal and never had audio recording problems.  I am getting a weak scratchy audio recording.  I have tried in Vista, Win 7 and with multiple microphones.  What can be the problem?

    Joe,
    Unfortunately, you have posted to the Premiere forum. This was the precursor to PrPro. The MOD's will probably move this out to the PrPro forum, so more folk will see it and can respond.
    Now, did you use a USB mic? Many have had issues with those.
    Also, going back about a year, there was a similar thread, and the description was about the same - "chipmunk." I do not recall the flow of that thread, or the resolution, but will try to find it. I just hope that it was not before the forum changeover, as it is likely gone forever.
    Good luck,
    Hunt
    [Edit] OK, I think that this is the THREAD.
    Message was edited by: Bill Hunt - Added Edit and link

  • Audio Recording Problem - distorted

    Hey all,
    I got an audio recording problem here...
    When I try to record audio onto my project, the sounds is very poor and distorted. Plus, there is a pretty ugly delay. But when I use garageband, the sound is great and how it should be. So this makes me think that Logic has some sort of problem with my driver (Firebox) or somethin'.
    Here's my Setup
    -imac G5
    -Logic Pro 7.2 (Bought just a few days ago)
    -Presonus Firebox (audio interface)
    -Condensor Mic
    Cheers!

    Hi,
    It is possible that your FireBox is not the audio card set up in Logic, and that you are accidentally recording the built-in mic.
    If Garageband is seeing your FireBox corrctly, then it is the setup in Logic, and nothing else, that you should be looking at.
    Check your audio hardware and drivers.
    Cheers

  • Every morning I have a message saying my iMac has restarted due to a Sleep Wake Failure problem.  What is this and how do I fix it?

    I have a new iMac14 with Yosemite.  Every morning I now find a message saying my iMac has been restarted due to a "Sleep Wake Failure" problem and that a problem report has been generated.  How do I fix this or even figure out what is wrong? 

    The warranty entitles you to complimentary phone support for the first 90 days of ownership.
    If you bought the product in the U.S. directly from Apple (not from a reseller), you have 14 days from the date of delivery in which to exchange or return it for a refund. In other countries, the return policy may be different. If you bought from a reseller, its return policy applies.

  • Re: Recording Problems - Programmes Recoding but B...

    Posts: 1
    Registered: 24-02-2011
    0
    Re: Recording Problems - Programmes Recoding but Blank Screen
    Options
    Edit Reply
    Mark as New
    Bookmark
    Subscribe
    Subscribe to this message's RSS Feed
    Highlight this Message
    Print
    Email this Message to a Friend
    Report Inappropriate Content
    on 24-02-2011 21h35
    Need help please I'm new to this forum... I have been having a few problems with my recordings like others I try to play back programme I have recorded and get nothing and also trying to delete a programme I'm getting a message to say I can't delete as the programme may be running on another box!!! I only have 1 box!!! I have tried all the rebooting fixes but no joy... I have an old white style hh... Is this or the box tired and in need of replacing??? I've also checked the settings and I'm online and have space on my disk!!! Help

    We have had the same problem, which is really frustrating!!
    The box appears to be recording but when the programme is played back, it stops during the programme and goes to the resume play on the menu or sometimes the channel isn't there, its just a black screen, I'm thinking of going to Sky if it carries on, getting really fed up now!!!
    davearliss wrote:
    Posts: 1
    Registered: 24-02-2011
    0
    Re: Recording Problems - Programmes Recoding but Blank Screen
    Options
    Edit Reply
    Mark as New
    Bookmark
    Subscribe
    Subscribe to this message's RSS Feed
    Highlight this Message
    Print
    Email this Message to a Friend
    Report Inappropriate Content
    on 24-02-2011 21h35
    Need help please I'm new to this forum... I have been having a few problems with my recordings like others I try to play back programme I have recorded and get nothing and also trying to delete a programme I'm getting a message to say I can't delete as the programme may be running on another box!!! I only have 1 box!!! I have tried all the rebooting fixes but no joy... I have an old white style hh... Is this or the box tired and in need of replacing??? I've also checked the settings and I'm online and have space on my disk!!! Help

  • Sleep function = wireless problem?

    I have an Intel iMac 2.4 GHz/OS 10.5.2 (the earlier version of Leopard came pre-installed) and a lynksis router.
    Like many others I experienced an unstable wireless connection from day 1 with this computer. The other two Macs in the house, both running Tiger had and have no such problem.
    Changing the router channel from 6 to 3 seemed to help somewhat, but the problem persisted.
    I noticed it was worse when the computer had just been wakened from sleep. That is, the wireless signal would start strong then quickly fade away. I found that putting the computer back to sleep, then immediately waking it up would restore the signal, but I often had to do this a dozen times during a session of an hour or so.
    Since there seemed to be some connection between the sleep function and the wireless connectivity I decided to experiment. I went to System Preferences/Energy Saver and set the sleep function to Never. The screen is still set to black out after fifteen minutes. So now the computer is awake all the time, only the screen darkens after some inactivity.
    For three days now the wireless signal has been extremely robust - no fading out whatsoever and the bars have remained at full strength. This certainly doesn't explain the cause of the problem, but it does seem to be an effective work-around, at least so far.
    Has anyone else had a similar experience? And can anyone explain why the sleep function would affect wireless connectivity?

    That a graphics update would fix the sleep function (not to mention the associated wireless issues) seemed odd to me too. I'm just reporting what the Apple tech said. I do have the impression that if they really can't solve your problem their next objective is to get the caller off the line as pleasantly as possible. That may possibly be the case here.
    I would certainly be interested to know if anyone else has a similar problem. The two necessary conditions seem to be:
    1. Sleep function (as set from System Preferences) unreliable, e.g. doesn't always put the computer to sleep, sometimes invokes such a deep sleep that the computer must be unplugged to restart, sometimes wakes up by itself;and
    2. Wireless signal slows to a crawl shortly after awakening from sleep (and in my case, remains unstable, requiring toggling sleep on/off or airport card on/off to resume strong signal.)
    As long as I have the sleep function set to Never the wireless problem disappears. It's been almost two weeks now, so I'm pretty sure there's some link between the two conditions. After the last software update from Apple a couple of days ago I reset the sleep function back to 15 minutes and the wireless fade immediately started up again. Reset it to Never, and, voila!, no problem since.
    I hope anyone else who has both sleep and wireless problems will try this. So far it's the first reliable clue I've found regarding the issue of unstable wireless.

  • Miglia TVMax recording problem

    Hi,
    I have a Miglia TVMax (with eyetv 2.3.1 software). There is a problem with its recording. Basically i kept getting a lot of 0 KB recordings. The recording counter would be stuck at 0 seconds. After a lot of effort i found the problem.
    It happens only when eyetv software is running and the computer goes to sleep. (software is open on the dock when the computer sleeps). when the scheduled time comes, it wakes the computer. if it is the first wake-up since the program has been started, it will record it properly. now if the computer sleeps again after recording, the second time when it wakes the computer, the recording will not take place.
    if i try the following steps this error happens -
    1. start eyetv. my option of 'open live tv window at startup' in preferences is off
    2. schedule a recording for few minutes hence.
    3. put computer to sleep.
    4. computer will wake up at the recording time. THIS TIME RECORDING
    WILL START PROPERLY.
    5. now stop the recording.
    6. schedule another recording, for few minutes hence. DO NOT QUIT
    EYETV SOFTWARE.
    7. put the computer to sleep.
    8. again computer will wake up when recording time arrives.
    9. This time recording will not take place. the window will be stuck
    at "This channel is currently not available".
    so basically if i have 3 recordings scheduled in the night. say there
    is a gap of 30 minutes between them. The first recording will take
    place. then the computer goes to sleep automatically (i have sleep
    setup after 15 minutes of inactivity). when it wakes up for the next
    one, no recording takes place. and same for 3rd.
    also, the problem seems to be with the tuning. If i do this -
    1. start eyetv. put on the live tv window. let the channel be running.
    2. while live tv window is on, put the computer to sleep.
    3. wake computer by pressing any key.
    4. now the tuner tries to tune back the channel. it first says 'a moment please..' or something and then 'this channel is not currently available'.
    Anyone else having the same problem? Kindly help
    20" Intel imac   Mac OS X (10.4.7)   1 GB RAM

    For about 2 months a few months back I was getting this. The channels were not available to EyeTV at all so although I could set a recording I always got 'This Channel Not Available'. I checked over the Yagi Ae and tx lines and all seemed okay. After a while the channels all came back. Intersesingly they were all from the same organisation (BBC) but not all BBC channels were affected. I never found out if this was a signal transmission issue with the BBC's channels or a glitch with the Miglia. I tried 3 different versions of EyeTV (1.8, 2.0 and 2.1) back then and also contacted Elgato Support. They thought it was a broadcast issue. I'd suggest checking your Ae. Is this affecting all channels. 
    regards
    mrtotes

  • Sound recording problem

    my audio recording isn't working very well. for example, when i record a video of me talking, it seems as if im whispering. it seems like something is blocking the sound recorder. anyone having this problem?

    - Make sure the mic hole is clear and unobstructed. It is the little hole on the back by the camera lens
    - Open the Voice Memos app and see if you see movement on the VU meter needle with changes in noise level trying to be recorded.
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                             
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          

  • VERY strange recording problem

    I've seen some strange things in many years of using a Mac, but this is by far the most bizarre. I'm a syndicated radio producer and I transfer my weekly DJ music show from DAT onto my computer to make CD copies for my affiliate stations. For a while I've thought this was a problem with Peak Pro, but now it has cropped up when I'm recording directly into Quicktime 7.3.1.
    When I playback the recording I find random elements from elsewhere in the show popping up in the middle of a song -- one or two second bursts. What's really weird is that it's always my voice, not part of some other piece of music. At other times I've gotten distortion that I can only describe as sounding like a "motorboating" effect, what you would get if you ran your finger over your lower lip repeatedly while talking.
    I have tried both M-Audio and Behringer USB input devices. Settings in Audio Midi Setup seem to be correct. This has occurred using various iterations of OS X 10.4.x. I'm currently using 10.4.11. It has also occurred across different versions of Quicktime.
    Here is some info from System Profiler:
    Machine Name: Power Mac G4 (AGP graphics)
    Machine Model: PowerMac3,1
    CPU Type: PowerPC 60? (1.1)
    Number Of CPUs: 2
    CPU Speed: 1.6 GHz
    L2 Cache (per CPU): 512 KB
    Memory: 2 GB
    The CPU upgrade is a NewerTech 1.6 Ghz from Other World Computing. Here's a list of my USB devices. (The M-Audio/Behringer are plugged directly into a USB 2.0 bus, not to an external hub).

    Upon further review ... Looks like I was premature in blaming QT for this. I opened the .mov file in Peak and saved it as a .aiff file. THAT file had the problem. When I listened to the original .mov everything sounded fine.
    sorry 'bout that.

Maybe you are looking for

  • Get total in ALV report

    Data : Begin of it_data, kunnr type kunnr, name1 type name1, amt1 type btrt01, " CURR 15,2 end of it_data. loop at it_data into wa_data endloop. Hello friends, I am developing one ALV report with 20 rows. I have filled one internal table with some fi

  • illustrator cs3 crashes upon launch in mac os 10.4.11

    illustrator cs3 does not complete its launch in mac os 10.4.11. [i'm running a powermac dual 1.25 ghz power pc g4 mirror door]. the same happens with indesign cs3. photoshop cs3 launches just fine. can anyone help? thanks.

  • What password am I supposed to use when checking voicemail... I havent set one up, so how do I set it up?

    Okay, so I had a blackberry previous to the iphone and I could check my voicemail. I tried the same password but it doesnt work and I still have the same number on this phone. Can someone please help me with figuring out how to set up a password on t

  • Why does my Simple Quicktime Applescript Not work??

    Hey guys.. This script doesn't make my movie play.. even though in Tiger it would work. tell application "QuickTime Player" activate play end tell I can open the movie with tell application Finder but once open.. Quicktime doens't make it play.. why

  • Non-synaptics touchpad

    Hi, I own an external USB touchpad. Xorg doesn't see this touchpad as a synaptics device but as a simple mouse. So, it seems impossible to configure it as synaptics but only as a regular mouse. This touchpad provides those features (seem to be hardwi