-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Correcting errors and minor modifications #579
Conversation
With this parameters "-vcodec", "copy", "-acodec", "copy" the output video was wrong(starting time was wrong and the video freezed after a few seconds) But when i remove those the output video was exaclty like I want to
@gpantelis awesome.. I'll take a look. |
Gentle bump :-) |
Hi, This fix is kinda wrong, you do want to copy the video and audio codecs, since this isn't the default.. |
35 cmd = [get_setting("FFMPEG_BINARY"),"-y", just remove // "-vcodec", "copy", "-acodec", "copy", // in |
#848 is a better fix to the issue than this PR, which has a pretty bad effect on quality + messes with the codecs 😄 it applies this solution |
With this parameters "-vcodec", "copy", "-acodec", "copy" the output video was wrong(starting time was wrong and the video freezed after a few seconds)
But when i remove those the output video was exaclty like I want to.