Skip to content

Instantly share code, notes, and snippets.

@Abhinav1217
Created March 16, 2023 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Abhinav1217/de85c8e3ed3800575c2e0091e1d95113 to your computer and use it in GitHub Desktop.
Save Abhinav1217/de85c8e3ed3800575c2e0091e1d95113 to your computer and use it in GitHub Desktop.
Some linux shell tricks

Remove audio tracks from video file.

function ffsilent { ffmpeg -i "$1" -c copy -an "${1%.*}-nosound.${1#*.}" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment