as we know capcut is no longer good for free users, any recommendation for open source video editor? i prefer option to export projects so i can archive it to my drive.

  • Gekkonen@sopuli.xyz
    link
    fedilink
    arrow-up
    5
    ·
    1 day ago

    FFMPEG is nice when you do something like ffmpeg -i input.mp4 -vcodec copy -acodec copy -ss 00:01:00 -t 00:03:00 out.mp4 and the result is almost instant as there’s no re-encoding.

    • hamsda@feddit.org
      link
      fedilink
      English
      arrow-up
      1
      ·
      2 hours ago

      FYI - you only need -c copy and do not need to specify acodec and vcodec, if both of them are going to be copy anyway.