Recorded Audio Playback Quality Issue
Posted: Fri Jul 31, 2009 4:46 pm
Hi all,
I have an app that includes functionality for the user to record and playback their voice. The problem I am having is that the playback quality is very scratchy. I have had three different people try this and they have the same problem.
Here is the code for my Record button:
Here is the code for the Play button (of note, I stop the recording in case they click play before stopping the recording on their own):
I have tried this with Rev Studio 3.0, 3.5, and Rev Media 4.0. I am using a MacBookPro, but have had it tested on multiple platforms.
Am I missing something? Any help would be appreciated.
Thanks,
Ed
I have an app that includes functionality for the user to record and playback their voice. The problem I am having is that the playback quality is very scratchy. I have had three different people try this and they have the same problem.
Here is the code for my Record button:
Code: Select all
on mouseUp
global userSoundFile
set the recordInput to "dflt" // default mic
record sound file userSoundFile
end mouseUp
Code: Select all
on mouseUp
global userSoundFile
set the recording to false
play userSoundFile
end mouseUp
Am I missing something? Any help would be appreciated.
Thanks,
Ed