Skip to content

Instantly share code, notes, and snippets.

@freshteapot-rm
Created September 17, 2024 20:00

Revisions

  1. freshteapot-rm created this gist Sep 17, 2024.
    6 changes: 6 additions & 0 deletions note.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    # Convert mov to mp4 without audio

    ```sh
    export convert="XXX.mov"
    ffmpeg -i $convert -vcodec h264 -an ${convert%.mov}.mp4
    ```