mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 07:08:01 +00:00
Add Convert JPEG To PNG With ffmpeg as a Unix TIL
This commit is contained in:
20
unix/convert-jpeg-to-png-with-ffmpeg.md
Normal file
20
unix/convert-jpeg-to-png-with-ffmpeg.md
Normal file
@@ -0,0 +1,20 @@
|
||||
# Convert JPEG To PNG With ffmpeg
|
||||
|
||||
The `ffmpeg` utility "is a universal media converter." That means we can use it
|
||||
to convert, for instance, a JPEG file to a PNG file.
|
||||
|
||||
There is not a lot to a conversion like this. We use `-i` to specify the
|
||||
existing input file (a JPEG) and then the other argument is the name and
|
||||
extension of the output file.
|
||||
|
||||
```bash
|
||||
$ ls
|
||||
profile.jpg
|
||||
|
||||
$ ffmpeg -i profile.jpg profile.png
|
||||
|
||||
$ ls
|
||||
profile.jpg profile.png
|
||||
```
|
||||
|
||||
See `man ffmpeg` for more details.
|
||||
Reference in New Issue
Block a user