diff --git a/index.html b/index.html index 6591c7f..79d2ba4 100644 --- a/index.html +++ b/index.html @@ -950,6 +950,47 @@ + + + +
ffmpeg -r 1 -loop 1 -i image_file -i audio_file -acodec copy -shortest -vf scale=1280:720 output_file
This command will take an image file (e.g. image.jpg) and an + audio file (e.g. audio.mp3) and combine them into a video file that + contains the audio track with the image used as the video. It can be + useful in a situation where you might want to upload an audio file to + a platform like YouTube. You may want to adjust the scaling with -vf + to suit your needs.
+