want to make one's own converter

Asked 1 years ago, Updated 1 years ago, 394 views

What are the principles of media converters such as psd and pdf being PNG conversion, and mov being mp4 in videos?I often find free converters full of advertisements online, but I wonder if they are that easy to make.

filesystems

2023-01-23 03:26

1 Answers

For example, for video and audio files, there are (free) conversion tools such as FFmpeg and ImageMagic for image files.
However, they are basically operated on the command line, so it is difficult for unfamiliar users to handle them, so there are many GUI apps that call FFmpeg and others internally.(HandBrake, Xmedia Record, etc.)

Some files that can be converted online are probably behind the scenes using these conversion tools.

It's hard to create a "convert files to different formats" mechanism from scratch, but if you're "receive files and convert them with existing tools," it might be a little easier to create.

reference:
Manipulate various videos with the FFmpeg API -Previous


2023-01-23 08:28

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.