add the old snippet md files

This commit is contained in:
Travis Shears 2025-06-05 16:20:57 +02:00
parent fc0dd204c7
commit bcf8313a4b
110 changed files with 3048 additions and 0 deletions

View file

@ -0,0 +1,18 @@
---
title: "strip audio from video file"
date: 2021-01-09T15:27:08+01:00
draft: false
snippet_types:
- ffmpeg
---
Easy way to remove audio from a video file using ffmpeg
```shell
ffmpeg -i $input_file -c copy -an $output_file
```
source: [superuser](https://superuser.com/questions/268985/remove-audio-from-video-file-with-ffmpeg)