mirror of
https://github.com/RealOrangeOne/notes.git
synced 2024-11-16 19:39:24 +00:00
Add note about stripping streams with ffmpeg
This commit is contained in:
parent
8f8fd9aa72
commit
9d1d1f0714
1 changed files with 19 additions and 0 deletions
19
notes/ffmpeg-remove-stream.md
Normal file
19
notes/ffmpeg-remove-stream.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
title: Strip audio / subtitle stream with ffmpeg
|
||||
tags:
|
||||
- Media
|
||||
emoji: 🎵
|
||||
link: https://stackoverflow.com/a/38162168
|
||||
---
|
||||
|
||||
```bash
|
||||
ls -1 *.mp4 | xargs -I{} ffmpeg -y -i {} -map 0 -map -0:a:0 -c copy /path/to/out/{}
|
||||
```
|
||||
|
||||
`-map -0:a:0` removes the 0th audio stream.
|
||||
|
||||
|
||||
- v - video, such as `-map -0:v`
|
||||
- a - audio, such as `-map -0:a`
|
||||
- s - subtitles, such as `-map -0:s`
|
||||
- d - data, such as `-map -0:d`
|
Loading…
Reference in a new issue