菜鸟教程小白 发表于 2022-12-12 18:10:27

ios - 如何反转 AAC 音频文件?


                                            <p><p>我目前能够反向录制和播放(感谢几个示例),但我想让用户能够从表格 View 中选择以前录制的 .AAC 文件并将其反转。
我尝试将输入文件 url 更改为用户文件的 url,但我得到静态文件或持续时间为 0.0 的音频文件。 AAC 文件可以进行这种类型的反转吗?如果是这样,我如何更正我的设置以接受它?</p>

<pre><code>recordedAudioUrl = ];
NSLog( @&#34;url is %@&#34;, );

flippedAudioUrl = ];
NSLog( @&#34;url is %@&#34;, );

AudioFileID outputAudioFile;

AudioStreamBasicDescription myPCMFormat;
myPCMFormat.mSampleRate = 16000.00;
myPCMFormat.mFormatID = kAudioFormatLinearPCM ;
myPCMFormat.mFormatFlags =kAudioFormatFlagsCanonical;
myPCMFormat.mChannelsPerFrame = 1;
myPCMFormat.mFramesPerPacket = 1;
myPCMFormat.mBitsPerChannel = 16;
myPCMFormat.mBytesPerPacket = 2;
myPCMFormat.mBytesPerFrame = 2;

AudioFileCreateWithURL((__bridge CFURLRef)flippedAudioUrl,
                     kAudioFileCAFType,
                     &amp;myPCMFormat,
                     kAudioFileFlags_EraseFile,
                     &amp;outputAudioFile);

AudioFileID inputAudioFile;
OSStatus theErr = noErr;
UInt64 fileDataSize = 0;

AudioStreamBasicDescription theFileFormat;
UInt32 thePropertySize = sizeof(theFileFormat);

theErr = AudioFileOpenURL((__bridge CFURLRef)recordedAudioUrl, kAudioFileReadPermission, 0, &amp;inputAudioFile);

thePropertySize = sizeof(fileDataSize);
theErr = AudioFileGetProperty(inputAudioFile, kAudioFilePropertyAudioDataByteCount, &amp;thePropertySize, &amp;fileDataSize);

UInt32 dataSize = fileDataSize;
void* theData = malloc(dataSize);

//Read data into buffer
SInt64 readPoint= dataSize;
UInt32 writePoint = 0;
while( readPoint &gt; 0 )
{
    UInt32 bytesToRead = 2;
    AudioFileReadBytes( inputAudioFile, false, readPoint, &amp;bytesToRead, theData );
    AudioFileWriteBytes( outputAudioFile, false, writePoint, &amp;bytesToRead, theData );

    writePoint += 2;
    readPoint -= 2;
}

free(theData);
AudioFileClose(inputAudioFile);
AudioFileClose(outputAudioFile);

}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您的代码正在向后读取原始 AAC 数据(<code>AudioFileReadBytes</code> 甚至不考虑数据包边界,这与 <code>AudioFileReadPacketData</code> 不同),然后将其作为 LPCM 转发。难怪你听到静电。要反转 AAC 文件,您必须先将其解码为 LPCM。我建议您将阅读代码从 <code>AudioFile</code> 切换到 <code>ExtendedAudioFile</code> 或 <code>AVAudioFile</code>。</p>

<p>您的 read-backwards-and-write-forwards 方法应该仍然适用于上述更改。</p>

<p>提到的 API 可以将 AAC(除其他外)解码为 LPCM,例如
<a href="https://stackoverflow.com/a/34759136/22147" rel="noreferrer noopener nofollow">decoding with AVAudioFile</a>和 <a href="https://stackoverflow.com/a/20337974/22147" rel="noreferrer noopener nofollow">decoding with ExtAudioFile</a> </p>

<p><strong>NB</strong>这些示例并未读取 AAC,但这并不重要,因为 API 对您隐藏了详细信息,因此您的代码不需要关心源格式是什么。 </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何反转 AAC 音频文件?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/34822766/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/34822766/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何反转 AAC 音频文件?