Opened 12 years ago
Closed 12 years ago
#1877 closed enhancement (invalid)
filter to seek to X frame to start encoding from
Reported by: | compn | Owned by: | |
---|---|---|---|
Priority: | wish | Component: | avfilter |
Version: | git-master | Keywords: | |
Cc: | Blocked By: | ||
Blocking: | Reproduced by developer: | no | |
Analyzed by developer: | no |
Description
a lot of users want a feature where they can specify the exact frame to start encoding from.
like ffmpeg -ss:f 344 -i input.avi
i was thinking this could be done as a filter, and it would silently drop frames until it hit frame 344.
mp framestep can be modified to do this , instead of continually seeking to the next frame, it can be set to only seek once.
Note:
See TracTickets
for help on using tickets.
nevermind, this can be achieved with select filter
select=gt(n, 342)