Added ffmpeg convert script.

This commit is contained in:
Justin Marshall
2020-07-16 11:13:47 -07:00
parent 7a1bd0fbb0
commit 3d93b0a556
2 changed files with 2 additions and 0 deletions
Binary file not shown.
+2
View File
@@ -0,0 +1,2 @@
for %%f in (*.*) do ffmpeg -i %%f -c:v libx264 -s 720x480 -pix_fmt yuv420p %%~nf.mp4
pause