Add missing change for reducing low speed distortion on iOS
This commit is contained in:
parent
146cc9cd52
commit
a5f422942b
|
@ -181,6 +181,12 @@
|
||||||
playerItem = [[AVPlayerItem alloc] initWithURL:[NSURL URLWithString:url]];
|
playerItem = [[AVPlayerItem alloc] initWithURL:[NSURL URLWithString:url]];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (@available(macOS 10.13, iOS 11.0, *)) {
|
||||||
|
// This does the best at reducing distortion on voice
|
||||||
|
// with speeds below 1.0
|
||||||
|
playerItem.audioTimePitchAlgorithm = AVAudioTimePitchAlgorithmTimeDomain;
|
||||||
|
}
|
||||||
|
|
||||||
[playerItem addObserver:self
|
[playerItem addObserver:self
|
||||||
forKeyPath:@"status"
|
forKeyPath:@"status"
|
||||||
options:NSKeyValueObservingOptionNew
|
options:NSKeyValueObservingOptionNew
|
||||||
|
|
Loading…
Reference in New Issue