remove readrate ffmpeg flag to prevent skipping#200
Open
omein1849 wants to merge 1 commit intolossless1024:masterfrom
Open
remove readrate ffmpeg flag to prevent skipping#200omein1849 wants to merge 1 commit intolossless1024:masterfrom
omein1849 wants to merge 1 commit intolossless1024:masterfrom
Conversation
Owner
|
It's a hard issue, because without readrate limit, the streams are usually getting splitted unnecessarily. So like when you watch on the site you see a continous stream, but you'll have the recording stop and start because ffmpeg read too fast that the m3u is not changing so ffmpeg thinks that there are no more segments. Setting readrate would help on this. but unfortunately it also brings in new bugs, like what you mentioned. I'd like to keep having it on as default. Later ffmpeg releases handle readrate better, so I'd suggest you to try to update it if you have an older version. |
0259ce4 to
89bca34
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I have noticed that if readrate flag is set than the output file has skipping and audio sync issues. Removing it solved the issue.