Assuming you were using VLC to rotate and alter the brightness, it can be saved by streaming to a file - however there are other tools which might be simpler to do the same thing with.
In theory, the following commandline should work:
Code: Select all
vlc --sout-transcode-vfilter rotate,adjust --rotate-angle 90 --brightness 1.2 C:\myfile.3gp --sout "#transcode{vcodec=h264,vb=800,scale=1,acodec=mp4a,ab=128,channels=2}:duplicate{dst=std{access=file,mux=ts,dst=C:\OUT.ts}}"
Where C:\myfile.3gp is the input file and C:\OUT.ts is the output file (trancoded to x264 video and mp4a audio). Brightness is a value between 0 and 2, and the rotate angle is between 0 and 359 degrees (as 360 == 0).
The above only changes the brightness (as presumably the comma separated list of video filters is not parsed correctly). If the "adjust" video filter is removed the video is correctly rotated, however the brightness is not changed.
So I'd recommend using another tool such as
Avidemux (which allows for brightness adjustment and video rotation of 90, 180 and 270 degrees).
Cheers, Arite.