Convert mp3 to mp4

I need to convert mp3 files to mp4 or any other video formats with blank images; so that I can play it on any video player or upload it to YouTube. I do not want to use easily accessible software tools (I will have to manually convert each file using software), but I need a way to encode it, which would automatically perform a complete conversion.

Any thoughts on how I can do this? Thank you

+3
source share
3 answers

Check out FFMPEG. the biggest problem is its creation. It can create mp4 from independent video and audio tracks. A video track can be represented as a series of still images. I'm just not sure that a single image will work for you.

another option is MEncoder, the problem is the same - you need to build it. Or try to find a pre-built

+2
source

Do you know AviSynth ? Effectively, this allows you to write and / or generate scripts that edit / mix media files. It will be like ~ this:

video = ImageSource("file.png")
audio = NicMPG123Source("file.mp3")
AudioDub(vid, aud)

I don’t remember the exact parameters of these functions, plus I just gave the exact names thanks to a Google request, but this sample should really be close to the actual code that you would use.

+2
source

VLC Media Player ( ) .

Ctrl-R "".

0
source

Source: https://habr.com/ru/post/1791694/


All Articles