add the old snippet md files
This commit is contained in:
parent
fc0dd204c7
commit
bcf8313a4b
110 changed files with 3048 additions and 0 deletions
18
old_snippets/strip-audio-from-video-file.en.md
Normal file
18
old_snippets/strip-audio-from-video-file.en.md
Normal 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)
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue