I want to rotate any mp4 video files (180°resp 90° clockwise). My command file:
Code: Select all
for %%a in (*.mp4) do cmd /c "C:\Program Files\VideoLan\VLC\vlc.exe" ^
-I dummy -vvv %%a ^
--transform-type={180}^
:standard{access=file,mux=mp4,^
dst=mp4\%%~na.mp4} ^
vlc://quit
1. There the dummy and the -vvv are not working.
A. In the helpfile is only "-vv". Is that regularly better?
B. In the helpfile is only "--dummy-quiet" and no "-I dummy". What is correct
2. The rotation is not working.
3. There is no output file
(My English is very poor, I am German, sorry)
Can anywho help me?