Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rewind AVPlayer by 5 seconds

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...

like image 597
Lorenz Wöhr Avatar asked Feb 27 '13 13:02

Lorenz Wöhr


3 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)
}
like image 115
Zog Avatar answered Oct 04 '22 14:10

Zog


- (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;
}
like image 11
Dave Batton Avatar answered Nov 17 '22 17:11

Dave Batton


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)


}
like image 11
abhimuralidharan Avatar answered Nov 17 '22 15:11

abhimuralidharan