Skip to content

Commit

Permalink
convert from webm to mp3
Browse files Browse the repository at this point in the history
  • Loading branch information
cherkavi authored Apr 17, 2022
1 parent db8e5d3 commit 5c1170e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -2934,9 +2934,15 @@ ibus-setup

## video
### join mp4 fusion mp4
```
```sh
ffmpeg -i video.mp4 -i audio.mp4 output.mp4
```
###
```sh
FILE_INPUT=video.webm
FILE_OUTPUT=audio.mp3
ffmpeg -i $FILE_INPUT -vn -ab 64k -ar 44100 -y $FILE_OUTPUT
```

## sound
### join files
Expand Down

0 comments on commit 5c1170e

Please sign in to comment.