mirror of
https://github.com/adefossez/seewav.git
synced 2026-04-26 06:15:55 +03:00
[PR #10] [MERGED] Remove shortest and fix audio cutting bug #12
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/seewav#12
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/adefossez/seewav/pull/10
Author: @ShaneLee
Created: 12/8/2023
Status: ✅ Merged
Merged: 12/8/2023
Merged by: @adefossez
Base:
master← Head:bugfix/cut-audio📝 Commits (1)
d2a0423Remove shortest and fix audio cutting bug📊 Changes
1 file changed (+1 additions, -1 deletions)
View changed files
📝
seewav.py(+1 -1)📄 Description
Relates to issue #8
Context:
The -shortest flag in FFmpeg is used to specify that only the shortest input file should be used when concatenating multiple input files. This is useful when you want to combine multiple audio or video clips into a single file, but you don't want to include any clips that are longer than the others.
In this particular case we are creating the video from the audio so using
-shortestdoesn't make sense as they are both the exact same length.There are two ways that I am aware of this bug manifests itself. One is as described in #8 where the audio cuts out towards the end of the clip. The other way is when you specify a short duration (1-3 seconds) that will lead to no audio at all from my testing.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.