Search found 4 matches
- Tue Apr 23, 2013 2:29 am
- Forum: macOS
- Topic: Possible bug with importing large raw audio files?
- Replies: 10
- Views: 1997
Re: Possible bug with importing large raw audio files?
Uh, *blink* *blink*... offset... that's it. For some reason I was completely blind to that parameter. I have no idea why. That's exactly the cause of the problem. Thank you for pointing that out! I think it would be better if Audacity didn't try to guess the RAW parameters (it always gets it wrong i...
- Mon Apr 22, 2013 10:06 pm
- Forum: macOS
- Topic: Possible bug with importing large raw audio files?
- Replies: 10
- Views: 1997
Re: Possible bug with importing large raw audio files?
Yes, I'm painfully aware that the Import settings need to be manually set each time :) . I've done this perhaps 100 times in the last 2 days so it's something I'm very familiar with now. I'm absolutely sure the import isn't working for my 480ksample file. I just checked it again, made sure I used th...
- Mon Apr 22, 2013 2:58 am
- Forum: macOS
- Topic: Possible bug with importing large raw audio files?
- Replies: 10
- Views: 1997
Re: Possible bug with importing large raw audio files?
So that wasn't a typo. You really are trying to manage sound files with a 480KHz sample rate. Koz If you're referring to the first sentence, it's not a typo, however it's 480k samples over 10 seconds, so that's 48kHz. When I try to import it into Audacity, I set the target sample rate at 48kHz, not...
- Mon Apr 22, 2013 12:45 am
- Forum: macOS
- Topic: Possible bug with importing large raw audio files?
- Replies: 10
- Views: 1997
Possible bug with importing large raw audio files?
I am generating 10 seconds of raw audio with a python script. I am using numpy to write out 480,000 float32 samples, little endian. import numpy as np SAMPLE_RATE=48000 DURATION=10.0 audio_out = [] # a simple ramp over the entire duration for t in range(int(SAMPLE_RATE * DURATION)): audio_out.append...