Motivation:
- You have a JPG and WAV file.
- You want to combine them to a FLV file in order to upload it to YouTube without losing audio quality.
Solution:
- Download ffmpeg.
- Unzip the downloaded package to C:\Users\admin\Downloads\ffmpeg-7.0.1-essentials_build folder.
- Copy your Image.jpg and Audio.wav file to C:\Users\admin\Downloads\ffmpeg-7.0.1-essentials_build/bin folder.
- Open Command Prompt.
- Execute the commands below.
cd C:\Users\admin\Downloads\ffmpeg-7.0.1-essentials_build\bin ffmpeg -r 1 -loop 1 -i image.jpg -i audio.wav -acodec copy -r 1 -shortest -vf scale=1280:720 Video.flv
- Open Video.flv file to verify result.
- Upload Video.flv file to YouTube.
(Visited 11 times, 1 visits today)