Is it possible to record a short contained sound no longer than 60 milliseconds? The 2019 Stack Overflow Developer Survey Results Are InWhat sound effects edit 'sound creation' has stumped you like no other?Creating Mech Sounds Similar to Gundam WingHow do I fix USB Mic Static through a preamp?Digital Kazoo FilterSoftware recommendation for cleaning out audio recordingCuBase LE 5 Static NoisesFix for terrible “Hard Drive Noise” Audio Interference?How can I simply record, edit, and export one track of V/O?Help identifying source of unwanted noiseMake it sound like outdoors

Getting crown tickets for Statue of Liberty

Is an up-to-date browser secure on an out-of-date OS?

Why doesn't UInt have a toDouble()?

Why isn't the circumferential light around the M87 black hole's event horizon symmetric?

What information about me do stores get via my credit card?

I am an eight letter word. What am I?

How to support a colleague who finds meetings extremely tiring?

What is this sharp, curved notch on my knife for?

Star Trek - X-shaped Item on Regula/Orbital Office Starbases

Can withdrawing asylum be illegal?

Relationship between Gromov-Witten and Taubes' Gromov invariant

How to obtain a position of last non-zero element

If I score a critical hit on an 18 or higher, what are my chances of getting a critical hit if I roll 3d20?

Did the UK government pay "millions and millions of dollars" to try to snag Julian Assange?

A word that means fill it to the required quantity

How come people say “Would of”?

Keeping a retro style to sci-fi spaceships?

Why “相同意思的词” is called “同义词” instead of "同意词"?

If my opponent casts Ultimate Price on my Phantasmal Bear, can I save it by casting Snap or Curfew?

Why was M87 targeted for the Event Horizon Telescope instead of Sagittarius A*?

Match Roman Numerals

What is preventing me from simply constructing a hash that's lower than the current target?

Button changing its text & action. Good or terrible?

For what reasons would an animal species NOT cross a *horizontal* land bridge?



Is it possible to record a short contained sound no longer than 60 milliseconds?



The 2019 Stack Overflow Developer Survey Results Are InWhat sound effects edit 'sound creation' has stumped you like no other?Creating Mech Sounds Similar to Gundam WingHow do I fix USB Mic Static through a preamp?Digital Kazoo FilterSoftware recommendation for cleaning out audio recordingCuBase LE 5 Static NoisesFix for terrible “Hard Drive Noise” Audio Interference?How can I simply record, edit, and export one track of V/O?Help identifying source of unwanted noiseMake it sound like outdoors










2















I wish to play a short sound in an app (60 Milliseconds is ideal), however I'm noticing glitches in the sound on the current clip I have made.



I'm wondering if these glitches have to do with any ambient noise and improper audio recording (by me). I.E.: audio with reverb is longer than the audio length (after cut).



So my question, Is it possible to record such a short sound and (after noise reduction) won't sound like a static glitchy mess?



I have a Zoom H4N, and am using a sample rate of 48000 Hz. I suppose if I lower my mic gain, I can try to eliminate some noise off the bat. Otherwise I'm not used to having to be this specific about recording audio, so any help is appreciated.



Just for a background on the sound I'm trying to record: Try picturing a short synthesized beep, except created through percussive means (ex: a clap, or a knock on wood, etc.). The more I think about it, I feel like the reverb of the short sound in the room might make this difficult.



Alternatively, would a MIDI sound be a better choice?










share|improve this question







New contributor




Matthew Strom is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • Hi Matthew and Welcome. A sample of the sound would help provide better answers, as we'd know what kind of distortion or artifacts you're referring to. Does it only sound distorted when played back through the phone's speaker/s?

    – Marc W
    Apr 6 at 5:37












  • @MarcW How can I share a raw file snippet? (I'm encoding it into Raw 16-bit PCM). Otherwise I can take the clip from my audacity project and share that somewhere. Audacity doesn't seem to like to play short (<100 ms) audio previews in the project, but when I play longer previews, I can hear the sound fine. Otherwise the distortion in question is coming from the android speakers, which I am also debugging to see if my program is at fault (I'm using low level C++ code to play audio, or more specifically the Oboe native library).

    – Matthew Strom
    Apr 6 at 8:16











  • Curious, why are you encoding it in RAW PCM? That's a headerless format I think (i.e. no SR/Bit Depth info). Also, you need to check Audacity's setting for auto-fades if it won't play short audio snippets. Because there's no other reason I can think of why it wouldn't play it fine. Check that first. Then check if a WAV version will play in any media player after export.

    – Marc W
    Apr 6 at 19:16











  • I'm Currently using RAW PCM to output into a audio buffer on a phone app (that's the format google suggested). There is also a new option to use MP3 if I change some of my application. I might be having issues with Audacity since I'm on Linux, it might work better on windows. Otherwise I've tried using a fade at the end of the clip, and I think it sounds a bit better on some android devices. I also output a new sample to wav, and it does sound relatively fine, but I believe part of the issue may also be from my application code so I'll try some different things there as well

    – Matthew Strom
    Apr 6 at 21:58






  • 1





    All of the feed back has been helpful by the way, thanks everyone!

    – Matthew Strom
    Apr 6 at 22:00















2















I wish to play a short sound in an app (60 Milliseconds is ideal), however I'm noticing glitches in the sound on the current clip I have made.



I'm wondering if these glitches have to do with any ambient noise and improper audio recording (by me). I.E.: audio with reverb is longer than the audio length (after cut).



So my question, Is it possible to record such a short sound and (after noise reduction) won't sound like a static glitchy mess?



I have a Zoom H4N, and am using a sample rate of 48000 Hz. I suppose if I lower my mic gain, I can try to eliminate some noise off the bat. Otherwise I'm not used to having to be this specific about recording audio, so any help is appreciated.



Just for a background on the sound I'm trying to record: Try picturing a short synthesized beep, except created through percussive means (ex: a clap, or a knock on wood, etc.). The more I think about it, I feel like the reverb of the short sound in the room might make this difficult.



Alternatively, would a MIDI sound be a better choice?










share|improve this question







New contributor




Matthew Strom is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • Hi Matthew and Welcome. A sample of the sound would help provide better answers, as we'd know what kind of distortion or artifacts you're referring to. Does it only sound distorted when played back through the phone's speaker/s?

    – Marc W
    Apr 6 at 5:37












  • @MarcW How can I share a raw file snippet? (I'm encoding it into Raw 16-bit PCM). Otherwise I can take the clip from my audacity project and share that somewhere. Audacity doesn't seem to like to play short (<100 ms) audio previews in the project, but when I play longer previews, I can hear the sound fine. Otherwise the distortion in question is coming from the android speakers, which I am also debugging to see if my program is at fault (I'm using low level C++ code to play audio, or more specifically the Oboe native library).

    – Matthew Strom
    Apr 6 at 8:16











  • Curious, why are you encoding it in RAW PCM? That's a headerless format I think (i.e. no SR/Bit Depth info). Also, you need to check Audacity's setting for auto-fades if it won't play short audio snippets. Because there's no other reason I can think of why it wouldn't play it fine. Check that first. Then check if a WAV version will play in any media player after export.

    – Marc W
    Apr 6 at 19:16











  • I'm Currently using RAW PCM to output into a audio buffer on a phone app (that's the format google suggested). There is also a new option to use MP3 if I change some of my application. I might be having issues with Audacity since I'm on Linux, it might work better on windows. Otherwise I've tried using a fade at the end of the clip, and I think it sounds a bit better on some android devices. I also output a new sample to wav, and it does sound relatively fine, but I believe part of the issue may also be from my application code so I'll try some different things there as well

    – Matthew Strom
    Apr 6 at 21:58






  • 1





    All of the feed back has been helpful by the way, thanks everyone!

    – Matthew Strom
    Apr 6 at 22:00













2












2








2








I wish to play a short sound in an app (60 Milliseconds is ideal), however I'm noticing glitches in the sound on the current clip I have made.



I'm wondering if these glitches have to do with any ambient noise and improper audio recording (by me). I.E.: audio with reverb is longer than the audio length (after cut).



So my question, Is it possible to record such a short sound and (after noise reduction) won't sound like a static glitchy mess?



I have a Zoom H4N, and am using a sample rate of 48000 Hz. I suppose if I lower my mic gain, I can try to eliminate some noise off the bat. Otherwise I'm not used to having to be this specific about recording audio, so any help is appreciated.



Just for a background on the sound I'm trying to record: Try picturing a short synthesized beep, except created through percussive means (ex: a clap, or a knock on wood, etc.). The more I think about it, I feel like the reverb of the short sound in the room might make this difficult.



Alternatively, would a MIDI sound be a better choice?










share|improve this question







New contributor




Matthew Strom is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I wish to play a short sound in an app (60 Milliseconds is ideal), however I'm noticing glitches in the sound on the current clip I have made.



I'm wondering if these glitches have to do with any ambient noise and improper audio recording (by me). I.E.: audio with reverb is longer than the audio length (after cut).



So my question, Is it possible to record such a short sound and (after noise reduction) won't sound like a static glitchy mess?



I have a Zoom H4N, and am using a sample rate of 48000 Hz. I suppose if I lower my mic gain, I can try to eliminate some noise off the bat. Otherwise I'm not used to having to be this specific about recording audio, so any help is appreciated.



Just for a background on the sound I'm trying to record: Try picturing a short synthesized beep, except created through percussive means (ex: a clap, or a knock on wood, etc.). The more I think about it, I feel like the reverb of the short sound in the room might make this difficult.



Alternatively, would a MIDI sound be a better choice?







audio-recording sound-effects midi






share|improve this question







New contributor




Matthew Strom is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question







New contributor




Matthew Strom is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question






New contributor




Matthew Strom is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked Apr 6 at 1:53









Matthew StromMatthew Strom

112




112




New contributor




Matthew Strom is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Matthew Strom is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Matthew Strom is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • Hi Matthew and Welcome. A sample of the sound would help provide better answers, as we'd know what kind of distortion or artifacts you're referring to. Does it only sound distorted when played back through the phone's speaker/s?

    – Marc W
    Apr 6 at 5:37












  • @MarcW How can I share a raw file snippet? (I'm encoding it into Raw 16-bit PCM). Otherwise I can take the clip from my audacity project and share that somewhere. Audacity doesn't seem to like to play short (<100 ms) audio previews in the project, but when I play longer previews, I can hear the sound fine. Otherwise the distortion in question is coming from the android speakers, which I am also debugging to see if my program is at fault (I'm using low level C++ code to play audio, or more specifically the Oboe native library).

    – Matthew Strom
    Apr 6 at 8:16











  • Curious, why are you encoding it in RAW PCM? That's a headerless format I think (i.e. no SR/Bit Depth info). Also, you need to check Audacity's setting for auto-fades if it won't play short audio snippets. Because there's no other reason I can think of why it wouldn't play it fine. Check that first. Then check if a WAV version will play in any media player after export.

    – Marc W
    Apr 6 at 19:16











  • I'm Currently using RAW PCM to output into a audio buffer on a phone app (that's the format google suggested). There is also a new option to use MP3 if I change some of my application. I might be having issues with Audacity since I'm on Linux, it might work better on windows. Otherwise I've tried using a fade at the end of the clip, and I think it sounds a bit better on some android devices. I also output a new sample to wav, and it does sound relatively fine, but I believe part of the issue may also be from my application code so I'll try some different things there as well

    – Matthew Strom
    Apr 6 at 21:58






  • 1





    All of the feed back has been helpful by the way, thanks everyone!

    – Matthew Strom
    Apr 6 at 22:00

















  • Hi Matthew and Welcome. A sample of the sound would help provide better answers, as we'd know what kind of distortion or artifacts you're referring to. Does it only sound distorted when played back through the phone's speaker/s?

    – Marc W
    Apr 6 at 5:37












  • @MarcW How can I share a raw file snippet? (I'm encoding it into Raw 16-bit PCM). Otherwise I can take the clip from my audacity project and share that somewhere. Audacity doesn't seem to like to play short (<100 ms) audio previews in the project, but when I play longer previews, I can hear the sound fine. Otherwise the distortion in question is coming from the android speakers, which I am also debugging to see if my program is at fault (I'm using low level C++ code to play audio, or more specifically the Oboe native library).

    – Matthew Strom
    Apr 6 at 8:16











  • Curious, why are you encoding it in RAW PCM? That's a headerless format I think (i.e. no SR/Bit Depth info). Also, you need to check Audacity's setting for auto-fades if it won't play short audio snippets. Because there's no other reason I can think of why it wouldn't play it fine. Check that first. Then check if a WAV version will play in any media player after export.

    – Marc W
    Apr 6 at 19:16











  • I'm Currently using RAW PCM to output into a audio buffer on a phone app (that's the format google suggested). There is also a new option to use MP3 if I change some of my application. I might be having issues with Audacity since I'm on Linux, it might work better on windows. Otherwise I've tried using a fade at the end of the clip, and I think it sounds a bit better on some android devices. I also output a new sample to wav, and it does sound relatively fine, but I believe part of the issue may also be from my application code so I'll try some different things there as well

    – Matthew Strom
    Apr 6 at 21:58






  • 1





    All of the feed back has been helpful by the way, thanks everyone!

    – Matthew Strom
    Apr 6 at 22:00
















Hi Matthew and Welcome. A sample of the sound would help provide better answers, as we'd know what kind of distortion or artifacts you're referring to. Does it only sound distorted when played back through the phone's speaker/s?

– Marc W
Apr 6 at 5:37






Hi Matthew and Welcome. A sample of the sound would help provide better answers, as we'd know what kind of distortion or artifacts you're referring to. Does it only sound distorted when played back through the phone's speaker/s?

– Marc W
Apr 6 at 5:37














@MarcW How can I share a raw file snippet? (I'm encoding it into Raw 16-bit PCM). Otherwise I can take the clip from my audacity project and share that somewhere. Audacity doesn't seem to like to play short (<100 ms) audio previews in the project, but when I play longer previews, I can hear the sound fine. Otherwise the distortion in question is coming from the android speakers, which I am also debugging to see if my program is at fault (I'm using low level C++ code to play audio, or more specifically the Oboe native library).

– Matthew Strom
Apr 6 at 8:16





@MarcW How can I share a raw file snippet? (I'm encoding it into Raw 16-bit PCM). Otherwise I can take the clip from my audacity project and share that somewhere. Audacity doesn't seem to like to play short (<100 ms) audio previews in the project, but when I play longer previews, I can hear the sound fine. Otherwise the distortion in question is coming from the android speakers, which I am also debugging to see if my program is at fault (I'm using low level C++ code to play audio, or more specifically the Oboe native library).

– Matthew Strom
Apr 6 at 8:16













Curious, why are you encoding it in RAW PCM? That's a headerless format I think (i.e. no SR/Bit Depth info). Also, you need to check Audacity's setting for auto-fades if it won't play short audio snippets. Because there's no other reason I can think of why it wouldn't play it fine. Check that first. Then check if a WAV version will play in any media player after export.

– Marc W
Apr 6 at 19:16





Curious, why are you encoding it in RAW PCM? That's a headerless format I think (i.e. no SR/Bit Depth info). Also, you need to check Audacity's setting for auto-fades if it won't play short audio snippets. Because there's no other reason I can think of why it wouldn't play it fine. Check that first. Then check if a WAV version will play in any media player after export.

– Marc W
Apr 6 at 19:16













I'm Currently using RAW PCM to output into a audio buffer on a phone app (that's the format google suggested). There is also a new option to use MP3 if I change some of my application. I might be having issues with Audacity since I'm on Linux, it might work better on windows. Otherwise I've tried using a fade at the end of the clip, and I think it sounds a bit better on some android devices. I also output a new sample to wav, and it does sound relatively fine, but I believe part of the issue may also be from my application code so I'll try some different things there as well

– Matthew Strom
Apr 6 at 21:58





I'm Currently using RAW PCM to output into a audio buffer on a phone app (that's the format google suggested). There is also a new option to use MP3 if I change some of my application. I might be having issues with Audacity since I'm on Linux, it might work better on windows. Otherwise I've tried using a fade at the end of the clip, and I think it sounds a bit better on some android devices. I also output a new sample to wav, and it does sound relatively fine, but I believe part of the issue may also be from my application code so I'll try some different things there as well

– Matthew Strom
Apr 6 at 21:58




1




1





All of the feed back has been helpful by the way, thanks everyone!

– Matthew Strom
Apr 6 at 22:00





All of the feed back has been helpful by the way, thanks everyone!

– Matthew Strom
Apr 6 at 22:00










2 Answers
2






active

oldest

votes


















3














You can use any sound you like and at the length you want, if you use an simple audio editor like Audacity, or a more advanced solution that can offer MIDI/synths, and additional tracks like Pro Tools.



I would first source the sounds either by recording them or using an instrument or synth that you can record into a digital audio workstation, then edit and fade them to the length that is most compatible.



When exporting the sounds, ensure that it is also compatible with the app or mobile OS by also matching the correct sample rate and Bit depth. You might benefit by converting it to MP3 to save disk space (Audacity or iTunes can do this).






share|improve this answer






























    3














    You're probably experiencing the joys of a non-zero crossing at the edit points. Sure, you can record a sound and then shorten it in a DAW, as Joel has mentioned, but you do need to make sure you put a short fade in and fade out at the start and end of the sample.



    If you do not, the DAC will have to deal with outputting sample values that will ensure that you have a very hard edge at the start and end of the sample which will result in a very nasty audible click at the start and end of playback.



    To fix this you need to fade that sample in gradually and then fade out again. Doesn't have to be a long fade, just enough to get from a sample value of 0 to your audio level and then back again to zero once you have finished.






    share|improve this answer

























    • I will give this a try!

      – Matthew Strom
      Apr 6 at 8:17











    • I +1'd because it's helpful and explanatory ;)

      – Marc W
      Apr 7 at 2:21











    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "512"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    noCode: true, onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );






    Matthew Strom is a new contributor. Be nice, and check out our Code of Conduct.









    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsound.stackexchange.com%2fquestions%2f45657%2fis-it-possible-to-record-a-short-contained-sound-no-longer-than-60-milliseconds%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    3














    You can use any sound you like and at the length you want, if you use an simple audio editor like Audacity, or a more advanced solution that can offer MIDI/synths, and additional tracks like Pro Tools.



    I would first source the sounds either by recording them or using an instrument or synth that you can record into a digital audio workstation, then edit and fade them to the length that is most compatible.



    When exporting the sounds, ensure that it is also compatible with the app or mobile OS by also matching the correct sample rate and Bit depth. You might benefit by converting it to MP3 to save disk space (Audacity or iTunes can do this).






    share|improve this answer



























      3














      You can use any sound you like and at the length you want, if you use an simple audio editor like Audacity, or a more advanced solution that can offer MIDI/synths, and additional tracks like Pro Tools.



      I would first source the sounds either by recording them or using an instrument or synth that you can record into a digital audio workstation, then edit and fade them to the length that is most compatible.



      When exporting the sounds, ensure that it is also compatible with the app or mobile OS by also matching the correct sample rate and Bit depth. You might benefit by converting it to MP3 to save disk space (Audacity or iTunes can do this).






      share|improve this answer

























        3












        3








        3







        You can use any sound you like and at the length you want, if you use an simple audio editor like Audacity, or a more advanced solution that can offer MIDI/synths, and additional tracks like Pro Tools.



        I would first source the sounds either by recording them or using an instrument or synth that you can record into a digital audio workstation, then edit and fade them to the length that is most compatible.



        When exporting the sounds, ensure that it is also compatible with the app or mobile OS by also matching the correct sample rate and Bit depth. You might benefit by converting it to MP3 to save disk space (Audacity or iTunes can do this).






        share|improve this answer













        You can use any sound you like and at the length you want, if you use an simple audio editor like Audacity, or a more advanced solution that can offer MIDI/synths, and additional tracks like Pro Tools.



        I would first source the sounds either by recording them or using an instrument or synth that you can record into a digital audio workstation, then edit and fade them to the length that is most compatible.



        When exporting the sounds, ensure that it is also compatible with the app or mobile OS by also matching the correct sample rate and Bit depth. You might benefit by converting it to MP3 to save disk space (Audacity or iTunes can do this).







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Apr 6 at 3:08









        Joel PintericJoel Pinteric

        47539




        47539





















            3














            You're probably experiencing the joys of a non-zero crossing at the edit points. Sure, you can record a sound and then shorten it in a DAW, as Joel has mentioned, but you do need to make sure you put a short fade in and fade out at the start and end of the sample.



            If you do not, the DAC will have to deal with outputting sample values that will ensure that you have a very hard edge at the start and end of the sample which will result in a very nasty audible click at the start and end of playback.



            To fix this you need to fade that sample in gradually and then fade out again. Doesn't have to be a long fade, just enough to get from a sample value of 0 to your audio level and then back again to zero once you have finished.






            share|improve this answer

























            • I will give this a try!

              – Matthew Strom
              Apr 6 at 8:17











            • I +1'd because it's helpful and explanatory ;)

              – Marc W
              Apr 7 at 2:21















            3














            You're probably experiencing the joys of a non-zero crossing at the edit points. Sure, you can record a sound and then shorten it in a DAW, as Joel has mentioned, but you do need to make sure you put a short fade in and fade out at the start and end of the sample.



            If you do not, the DAC will have to deal with outputting sample values that will ensure that you have a very hard edge at the start and end of the sample which will result in a very nasty audible click at the start and end of playback.



            To fix this you need to fade that sample in gradually and then fade out again. Doesn't have to be a long fade, just enough to get from a sample value of 0 to your audio level and then back again to zero once you have finished.






            share|improve this answer

























            • I will give this a try!

              – Matthew Strom
              Apr 6 at 8:17











            • I +1'd because it's helpful and explanatory ;)

              – Marc W
              Apr 7 at 2:21













            3












            3








            3







            You're probably experiencing the joys of a non-zero crossing at the edit points. Sure, you can record a sound and then shorten it in a DAW, as Joel has mentioned, but you do need to make sure you put a short fade in and fade out at the start and end of the sample.



            If you do not, the DAC will have to deal with outputting sample values that will ensure that you have a very hard edge at the start and end of the sample which will result in a very nasty audible click at the start and end of playback.



            To fix this you need to fade that sample in gradually and then fade out again. Doesn't have to be a long fade, just enough to get from a sample value of 0 to your audio level and then back again to zero once you have finished.






            share|improve this answer















            You're probably experiencing the joys of a non-zero crossing at the edit points. Sure, you can record a sound and then shorten it in a DAW, as Joel has mentioned, but you do need to make sure you put a short fade in and fade out at the start and end of the sample.



            If you do not, the DAC will have to deal with outputting sample values that will ensure that you have a very hard edge at the start and end of the sample which will result in a very nasty audible click at the start and end of playback.



            To fix this you need to fade that sample in gradually and then fade out again. Doesn't have to be a long fade, just enough to get from a sample value of 0 to your audio level and then back again to zero once you have finished.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Apr 6 at 5:47

























            answered Apr 6 at 5:07









            MarkMark

            3,375820




            3,375820












            • I will give this a try!

              – Matthew Strom
              Apr 6 at 8:17











            • I +1'd because it's helpful and explanatory ;)

              – Marc W
              Apr 7 at 2:21

















            • I will give this a try!

              – Matthew Strom
              Apr 6 at 8:17











            • I +1'd because it's helpful and explanatory ;)

              – Marc W
              Apr 7 at 2:21
















            I will give this a try!

            – Matthew Strom
            Apr 6 at 8:17





            I will give this a try!

            – Matthew Strom
            Apr 6 at 8:17













            I +1'd because it's helpful and explanatory ;)

            – Marc W
            Apr 7 at 2:21





            I +1'd because it's helpful and explanatory ;)

            – Marc W
            Apr 7 at 2:21










            Matthew Strom is a new contributor. Be nice, and check out our Code of Conduct.









            draft saved

            draft discarded


















            Matthew Strom is a new contributor. Be nice, and check out our Code of Conduct.












            Matthew Strom is a new contributor. Be nice, and check out our Code of Conduct.











            Matthew Strom is a new contributor. Be nice, and check out our Code of Conduct.














            Thanks for contributing an answer to Sound Design Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsound.stackexchange.com%2fquestions%2f45657%2fis-it-possible-to-record-a-short-contained-sound-no-longer-than-60-milliseconds%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

            Crop image to path created in TikZ? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Crop an inserted image?TikZ pictures does not appear in posterImage behind and beyond crop marks?Tikz picture as large as possible on A4 PageTransparency vs image compression dilemmaHow to crop background from image automatically?Image does not cropTikzexternal capturing crop marks when externalizing pgfplots?How to include image path that contains a dollar signCrop image with left size given

            Romeo and Juliet ContentsCharactersSynopsisSourcesDate and textThemes and motifsCriticism and interpretationLegacyScene by sceneSee alsoNotes and referencesSourcesExternal linksNavigation menu"Consumer Price Index (estimate) 1800–"10.2307/28710160037-3222287101610.1093/res/II.5.31910.2307/45967845967810.2307/2869925286992510.1525/jams.1982.35.3.03a00050"Dada Masilo: South African dancer who breaks the rules"10.1093/res/os-XV.57.1610.2307/28680942868094"Sweet Sorrow: Mann-Korman's Romeo and Juliet Closes Sept. 5 at MN's Ordway"the original10.2307/45957745957710.1017/CCOL0521570476.009"Ram Leela box office collections hit massive Rs 100 crore, pulverises prediction"Archived"Broadway Revival of Romeo and Juliet, Starring Orlando Bloom and Condola Rashad, Will Close Dec. 8"Archived10.1075/jhp.7.1.04hon"Wherefore art thou, Romeo? To make us laugh at Navy Pier"the original10.1093/gmo/9781561592630.article.O006772"Ram-leela Review Roundup: Critics Hail Film as Best Adaptation of Romeo and Juliet"Archived10.2307/31946310047-77293194631"Romeo and Juliet get Twitter treatment""Juliet's Nurse by Lois Leveen""Romeo and Juliet: Orlando Bloom's Broadway Debut Released in Theaters for Valentine's Day"Archived"Romeo and Juliet Has No Balcony"10.1093/gmo/9781561592630.article.O00778110.2307/2867423286742310.1076/enst.82.2.115.959510.1080/00138380601042675"A plague o' both your houses: error in GCSE exam paper forces apology""Juliet of the Five O'Clock Shadow, and Other Wonders"10.2307/33912430027-4321339124310.2307/28487440038-7134284874410.2307/29123140149-661129123144728341M"Weekender Guide: Shakespeare on The Drive""balcony"UK public library membership"romeo"UK public library membership10.1017/CCOL9780521844291"Post-Zionist Critique on Israel and the Palestinians Part III: Popular Culture"10.2307/25379071533-86140377-919X2537907"Capulets and Montagues: UK exam board admit mixing names up in Romeo and Juliet paper"Istoria Novellamente Ritrovata di Due Nobili Amanti2027/mdp.390150822329610820-750X"GCSE exam error: Board accidentally rewrites Shakespeare"10.2307/29176390149-66112917639"Exam board apologises after error in English GCSE paper which confused characters in Shakespeare's Romeo and Juliet""From Mariotto and Ganozza to Romeo and Guilietta: Metamorphoses of a Renaissance Tale"10.2307/37323537323510.2307/2867455286745510.2307/28678912867891"10 Questions for Taylor Swift"10.2307/28680922868092"Haymarket Theatre""The Zeffirelli Way: Revealing Talk by Florentine Director""Michael Smuin: 1938-2007 / Prolific dance director had showy career"The Life and Art of Edwin BoothRomeo and JulietRomeo and JulietRomeo and JulietRomeo and JulietEasy Read Romeo and JulietRomeo and Julieteeecb12003684p(data)4099369-3n8211610759dbe00d-a9e2-41a3-b2c1-977dd692899302814385X313670221313670221