-
-
Notifications
You must be signed in to change notification settings - Fork 201
fix: Remove EXT-X-ENDLIST from master playlist file #519
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
Conversation
Yeah |
If you just dont want to wait PR, Create a PlaylistGenerator for this case, like this one.
Then use it like this,
|
Could this please be merged? I've got the same issue on a new project, and using this package. @exxsy Thanks for the workaround. It's basically a copy of the current one without the line finish. I would suggest also making those methods/vars protected instead of private. This would make it easier to simple extend the current one, and overrule what's needed. :) |
@francoism90 since it was a workaround and temporary, i didnt think that much. You're welcome. Happy coding |
@exxsy This was more a comment for upstream. :) I'll try to make a PR with this change. |
Hello, Thanks @protonemedia for this awesome package! |
I created a fork with all open PRs merged until @pascalbaljet or @protonemedia merge them. Thanks For this awesome package really appreciated! |
I've made it optional because I find it too risky to remove it by default, as we have never had problems with it. FFMpeg::fromDisk("videos")
->open("/$this->name.$this->extension")
->exportForHLS()
->withoutPlaylistEndLine() |
I am a contributor on the shaka project and noticed that playback was broken with this library.
This PR fixes a bug in the master playlist and allows playback with shaka (and probably other players where playback previously failed).
Unlike the EXTM3U element which is required at the start every Media Playlist and every Master Playlist. The EXT-X-ENDLIST should only appear in a Media Playlist file.