Skip to content

Commit

Permalink
Fix select chunk method breakage in ffmpeg 7
Browse files Browse the repository at this point in the history
  • Loading branch information
shssoichiro committed Aug 10, 2024
1 parent 578bb7c commit 5f5ce49
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions av1an-core/src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -860,11 +860,7 @@ impl Av1anContext {
"-i",
src_path,
"-vf",
format!(
"select=between(n\\,{}\\,{}),setpts=PTS-STARTPTS",
start_frame,
end_frame - 1
),
format!("select=between(n\\,{}\\,{})", start_frame, end_frame - 1),
"-pix_fmt",
self
.args
Expand Down

0 comments on commit 5f5ce49

Please sign in to comment.