AVAudioPlayer 초기화 문제
NSURL *contentURL = [NSURL fileURLWithPath:_fileUrl];
self.audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:contentURL error:&error];
NSData *data = [NSData dataWithContentsOfURL:contentURL];
self.audioPlayer = [[AVAudioPlayer alloc] initWithData:data error:&error];
// initWithContentsOfURL:
Error Domain=NSOSStatusErrorDomain Code=1685348671 "(null)"
오디오 파일 매개 변수
URL을 통해 초기화
데이터로 초기화
Name: xxx.mp3
Name: 222.mp3
Format: MPEG Audio
Format : Wave
Size: 4.23M
Size: 358 KiB
Duration: 4 min 37 s
Duration: 11 s 470 ms
Overal bit rate mode: Variable
Overal bit rate mode: Constant
Overal bit rate: 128 kb/s
Overal bit rate: 256 kb/s
Writing library: Lavf57.83.100
IsTruncated: YES
FileExtension_Invalid: act at9 wav
-
-
Format: MPEG Audio
Format : PCM
Bit rate mode: Variable
Bit rate mode: Constant
Format version: Version 1
---
Format profile: Layer 3
---
Format settings: Joint stereo
Format settings: Little/Signed
Channel(s): 2 channels
Channel(s): 1 channel
Sampling rate: 44.1 kHz
Sampling rate: 16.0 kHz
Format rate: 38.281 FPS (1152 SPF)
---
Compression mode: Lossy
---
---
Codec ID: 1
---
Bit depth: 16 bits
2021.03.09 업데이트
iOS에서 AVaudioPlayer를 사용하여 데이터 오디오 파일을 재생하는 데 발생한 문제
NSError *error;
self.audioPlayer = [[AVAudioPlayer alloc] initWithData:vData fileTypeHint:AVFileTypeWAVE error:&error];//AVFileTypeWAVE
//
NSError *error;
self.audioPlayer = [[AVAudioPlayer alloc] initWithData:vData error:&error];
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.