Skip to content

Commit

Permalink
modifird ffmpeg.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Chad Boyce committed Oct 26, 2022
1 parent ae51d1f commit cee79e8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions ffmpeg.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
FFMPEG
======

## Convert AVI to MP4

**no Re-encode**: Only changing the container

```bash
ffmpeg -i input_filename.avi -c:v copy -c:a copy -y output_filename.mp4
```
In this commandline, you are providing

- the AVI video as input
- specifying the name of the output MP4 file,
- instructing FFmpeg to directly copy the audio and video (seen here: ``-c:v copy -c:a copy``) from the AVI container format to the MP4 container format.

Convert Image Sequence to Video
-------------------------------

Expand Down

0 comments on commit cee79e8

Please sign in to comment.