문제

I need to change brightness and contrast to a video permanently, I tried this:

mplayer -vf eq=50:50 a.mp4 -dumpstream
mv stream.dump b.mp4

But it saves as a file which look likes the original file. Any idea?

도움이 되었습니까?

해결책

You want to use mencoder to transcode the video to apply the video filter eq=50:50. When you use -dumpstream with mplayer, it simply dumps the stream while the video filter is being applied to playback. Take a look at the mencoder options, but you'll need to chose a video codec and some options for that codec (like bitrate). Then you can apply the brightness and contrast filter.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top