Mac OS 12.6
Audacity 3.2.1
I’m getting this error message when I try to apply RMS Normalize or Limiter after successfully applying Filter Curve EQ.
I’ve successfully applied all three earlier today. Not sure what has changed. No idea what else to check.
Problem Details:
{
“timestamp”: 1667686361,
“event_id”: “a4c72ad088c34c7999802f0b9971088f”,
“platform”: “native”,
“release”: “audacity@3.2.1”,
“contexts”: {
“os”: {
“type”: “os”,
“name”: “Macintosh”,
“version”: “10.16.0”
}
},
“exception”: {
“values”: [
{
“type”: “Internal_Error”,
“value”: “Internal error at line 161.\nPlease inform the Audacity team at https://.”,
“mechanism”: {
“type”: “runtime_error”,
“handled”: false
}
}
]
}
}
154 - std::pair<float, float> WaveClip::GetMinMax(
155 - double t0, double t1, bool mayThrow) const
156 - {
157 - t0 = std::max(t0, GetPlayStartTime());
158 - t1 = std::min(t1, GetPlayEndTime());
159 - if (t0 > t1) {
160 - if (mayThrow)
161 - THROW_INCONSISTENCY_EXCEPTION;
162 - return {
163 - 0.f, // harmless, but unused since Sequence::GetMinMax does not use these values
164 - 0.f // harmless, but unused since Sequence::GetMinMax does not use these values
165 - };
166 - }
167 -
168 - if (t0 == t1)
169 - return{ 0.f, 0.f };
170 -
171 - auto s0 = TimeToSequenceSamples(t0);
172 - auto s1 = TimeToSequenceSamples(t1);
173 -
174 - return mSequence->GetMinMax(s0, s1-s0, mayThrow);
175 - }
So this would be an error internal to Audacity.
Did you send the crash report ?
If you can duplicate the crash, do you want to share the audio that caused this to happen ?