Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Crash in setter of currentTime property: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[AVPlayerItem seekToTime:toleranceBefore:toleranceAfter:completionHandler:] Seeking is not possible to time {INVALID}' #9

Open
bughana opened this issue Sep 14, 2016 · 1 comment

Comments

@bughana
Copy link

bughana commented Sep 14, 2016

Hi there,

firstly thanks for the library, it works really well.
I got one issue though with a crash pretty frequently happening in the setter of the currentTime property in line 143:
player!.seekToTime(newTime,toleranceBefore: CMTime.zero,toleranceAfter: CMTime.zero)

It crashes due to the reason of newTime being invalid.
I added a workaround which works fine for me. I just do a safety check on newTime before calling seekToTime on the player:
if !CMTIME_IS_INVALID(newTime) { player!.seekToTime(newTime,toleranceBefore: CMTime.zero,toleranceAfter: CMTime.zero) }`

Could you add the code to the library or do you see problems with it? Or would you like me to create a pull request for it?

Thanks in advance

@fatinWasta
Copy link

Here ,you might wanna create CMTime first and then provide that value to seek() as follows.

let seekTime = CMTime(value: CMTimeValue(seconds), timescale: 1)
here timescale has to be 1. Refer this link explaining it. After this, add following code.
player.currentItem?.seek(to: seekTime, completionHandler: { (finished) in print("Seeking finished") self.playbackStarted() })

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants