You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
More details: this has happened specifically with ogg vorbis files. After converting the danse macabre examples to FLAC gapless playback was restored.
Further, the problem is av_seek_frame seeking to 0. If I remove that, the playlist example succeeds. Note that removing that is not a workable solution however, since we need the seek in case multiple queue items reference the same file, or if the user chooses to play the previous song.
mitigates #105 but does not solve it.
After we open a file, we are at the beginning of the file.
So if we get a seek request for 0 and we haven't seeked yet,
we ignore it. This works around glitches caused by ffmpeg's
seeking algorithm.
However, it does not solve the case where the user seeks to
a previous item on the playlist and then a file which has already
been played comes up again.
After switching to ffmpeg we've lost gapless playback and a tiny glitch can be heard between songs.
The text was updated successfully, but these errors were encountered: