I need to a simple (free) method of creating long duration black screen mp4's from mp3's for sleep aids.
Not online conversions.
+ Reply to Thread
Results 1 to 3 of 3
-
-
ffmpeg can do this quickly and easily:
Code:ffmpeg -f lavfi -i color=c=black:s=640x480:r=24 -i "input.mp3" -preset ultrafast -c:a copy -shortest "output.mp4"
You can do it with a drag/drop onto a batch file:
Code:ffmpeg -f lavfi -i color=c=black:s=640x480:r=24 -i "%~dpnx1" -preset ultrafast -c:a copy -shortest "%~dpn1.mp4"
It's also possible to do the same for all files in a folder, or even an entire folder tree. I can give you a batch file for that if you want...
Similar Threads
-
Batch convert mp3 to mp4
By Shaorin in forum Newbie / General discussionsReplies: 4Last Post: 26th Dec 2020, 16:22 -
Need Help to convert mp3 to mp4 using mp3's album art pic as still pic
By Love in forum Video ConversionReplies: 38Last Post: 3rd Jan 2019, 10:11 -
Need Help to Convert 600 mp3 to mp4 with just one still pic in it for YT
By Love in forum AudioReplies: 15Last Post: 21st Dec 2018, 10:09 -
Convert Video Specs - 44.1k and Ends with Black Screen
By jgiannis in forum Newbie / General discussionsReplies: 2Last Post: 16th Apr 2018, 22:11 -
convert mp3 to mp4 and add picture
By kasfig in forum AudioReplies: 8Last Post: 14th Oct 2017, 22:47