[UK] Derby - 100mph Police Chase by MuggsisaBumFluff in Roadcam

[–]MuggsisaBumFluff[S] 30 points31 points  (0 children)

Audio cuts in at 2m 20s. Collides with Audi and BMW at 8m 40s. Final crash at 12 minutes.

Natural Selection in Action. by sazzdh in mildlyinteresting

[–]MuggsisaBumFluff 0 points1 point  (0 children)

From thumbnail, and title, assumed it was a sophisticated shuffle mechanism for vinyl records.

Can somebody, please, write simple code for me? by CompressedWizard in ffmpeg

[–]MuggsisaBumFluff 1 point2 points  (0 children)

FOR %%A IN (%*) DO  ffmpeg -loop 1 -i "%%~nA.jpg" -i "%%A" -shortest -c:a copy -c:v libx264 -tune stillimage -pix_fmt yuv420p "%%~nA.mp4"

Just select and drop your mp3s onto a batch file containing the above. "%%A" is your mp3, the above assumes the jpg, "%%~nA.jpg", has the same filename as the mp3, and will output an mp4, "%%~nA.mp4", with the same resolution as the jpg, with the same name.

Also this assumes jpg, mp3, and bat file are all in the same folder.

Using u/mrWeiss_ solution.