Simon van Bernem via ffmpeg-user (12022-01-08):
> Hi,
> I am trying to remove parts of a video (with audio) using the select
> filter. I constructed this command to remove seconds 20-25:
> 
> (newlines only for readability)
> 
> ffmpeg -i input.mkv
>   -vf "select='1-between(t,20,25)', setpts=N/FRAME_RATE/TB"
>   -af "aselect='1-between(t,20,25)', asetpts=N/SR/TB" output.mkv
> 
> This works great, except that when I use multiple "between" clauses
> to discard multiple sections, audio and video will start to get out of
> sync.

The select filter is very generic, and therefore not very robust. It
does not update the timestamps, hence the need to update them
afterwards. Furthermore, it works with whole frames, which can
accumulate for audio.

For your use case, consider the segment and concat filters.

Regards,

-- 
  Nicolas George

Attachment: signature.asc
Description: PGP signature

_______________________________________________
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to