Kim Biesbjerg

Results 25 comments of Kim Biesbjerg

As a workaround for now, it seems it might be possible to set this key without the need to modify `SwiftAudio`, by creating your own `AudioItem` class conforming to protocol...

Additional info: If I start playback of a file and take a look at the lock screen, the full duration is available even though I'm still getting `updateDuration` from `SwiftAudio`....

I see that that the duration is available using `player.duration` at some point, but when is it safe to assume it is available? What's the purpose of event `updateDuration` that...

In my case, `updateDuration` seems to update continuously. Looking a `AVPlayerItemObserver` it [seems clear why.](https://github.com/jorgenhenrichsen/SwiftAudio/blob/master/SwiftAudio/Classes/Observer/AVPlayerItemObserver.swift#L77) **Code:** ```swift player.event.stateChange.addListener(self) { [weak self] state in if ["ready", "playing"].contains(state.rawValue) { print("⌛ stateChange (to...

With the PR, I can access `player.duration` when `ready` and scrubbing works perfectly :) I don't think I completely understand the `updateDuration` event though, if it's working as intended. Why...

I hacked together a filter for AssetCompress (I'm using and old modified version, that passes file content as well as the file path to the filter) that rewrites relative paths...

Please provide the command you're using to extract the keys and a file that causes the issue you're seeing. I'll take a look when I get some spare time.

I'm not sure I follow? What does this have to do with LF vs CRLF? The timestamp of the file is updated because it's saved to disk, and since you...

Sorry, I don't use angular-cli, so would appreciate if someone else would look into this. Maybe this is related? https://github.com/andris9/encoding/issues/16