How can I rewind a stream by 5 second?
This is my code for streaming in the viewDidLoad:
AVPlayerItem* playerItem = [AVPlayerItem playerItemWithURL:[NSURL URLWithString:@"http://groove.wavestreamer.com:7321/listen.pls?sid=1"]];
[playerItem addObserver:self forKeyPath:@"timedMetadata" options:NSKeyValueObservingOptionNew context:nil];
music = [[AVPlayer playerWithPlayerItem:playerItem] retain];
[music play];
music = [[AVPlayer playerWithPlayerItem:playerItem] retain];
[music play];
Thanks for your answers...
In Swift 5:
@IBAction func seekForward(_ sender: Any) {
guard let duration = player?.currentItem?.duration else {
return
}
let playerCurrentTime = CMTimeGetSeconds(player!.currentTime())
let newTime = playerCurrentTime + 5
if newTime < (CMTimeGetSeconds(duration) - 5) {
let time2: CMTime = CMTimeMake(value: Int64(newTime * 1000 as Float64), timescale: 1000)
player!.seek(to: time2, toleranceBefore: CMTime.zero, toleranceAfter: CMTime.zero)
}
}
@IBAction func seekBackward(_ sender: Any) {
let playerCurrentTime = CMTimeGetSeconds(player!.currentTime())
var newTime = playerCurrentTime - 5
if newTime < 0 {
newTime = 0
}
let time2: CMTime = CMTimeMake(value: Int64(newTime * 1000 as Float64), timescale: 1000)
player!.seek(to: time2, toleranceBefore: CMTime.zero, toleranceAfter: CMTime.zero)
}
- (NSTimeInterval)currentPlaybackTime
{
return CMTimeGetSeconds(self.playerView.player.currentItem.currentTime);
}
- (void)setCurrentPlaybackTime:(NSTimeInterval)time
{
CMTime cmTime = CMTimeMakeWithSeconds(time, NSEC_PER_SEC);
[self.playerView.player.currentItem seekToTime:cmTime];
}
- (IBAction)scanBackward
{
self.currentPlaybackTime -= 5.0f;
}
In Swift 3+,
fileprivate let seekDuration: Float64 = 5
@IBAction func seekForward(_ sender: Any) {
guard let duration = player.currentItem?.duration else {
return
}
let playerCurrentTime = CMTimeGetSeconds(player.currentTime())
let newTime = playerCurrentTime + seekDuration
if newTime < (CMTimeGetSeconds(duration) - seekDuration) {
let time2: CMTime = CMTimeMake(Int64(newTime * 1000 as Float64), 1000)
player.seek(to: time2, toleranceBefore: kCMTimeZero, toleranceAfter: kCMTimeZero)
}
}
@IBAction func seekBackward(_ sender: Any) {
let playerCurrentTime = CMTimeGetSeconds(player.currentTime())
var newTime = playerCurrentTime - seekDuration
if newTime < 0 {
newTime = 0
}
let time2: CMTime = CMTimeMake(Int64(newTime * 1000 as Float64), 1000)
player.seek(to: time2, toleranceBefore: kCMTimeZero, toleranceAfter: kCMTimeZero)
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With