2013-04-29 1 views
1

에서 .amr 파일을 재생할 수 없습니다. 하지만 WP8의 SoundEffect로는 재생할 수 없습니다.내가 음성을 녹음하고 나는 윈도우 미디어 플레이어에서 재생할 수 있습니다</p> <pre><code>dev = await AudioVideoCaptureDevice.OpenForAudioOnlyAsync(); dev.AudioEncodingFormat = CameraCaptureAudioFormat.Amr; </code></pre> <p>AMR 포맷으로 격리 된 저장소에 저장 AudioVideoCaptureDevice를 사용 WP8

using (IsolatedStorageFileStream sourceFile = ISF.OpenFile("\\data\\test.amr", FileMode.Open, FileAccess.Read)) 
{ 
    byte[] b = new byte[sourceFile.Length]; 
    sourceFile.Read(b, 0, b.Length); 
    SoundEffect sound = new SoundEffect(b, microphone.SampleRate, AudioChannels.Mono); 
    soundInstance = sound.CreateInstance(); 
    soundInstance.Play(); 
} 

이 문제를 해결하는 데 도움이되도록 도와주세요. 감사합니다. .

답변

0

souneffect는 .wav 파일 만 허용하기 때문에 작동하지 않습니다 ... | 그 외의 다른 형식은 지원하지 않습니다 ... 파일 형식을 변경하면 잘 작동합니다 ...