Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要永久更改视频的亮度和对比度,我试过这个:
mplayer -vf eq=50:50 a.mp4 -dumpstream mv stream.dump b.mp4
但它保存为一个看起来像原始文件的文件。任何的想法?
您想使用 mencoder 对视频进行转码以应用视频过滤器eq=50:50。当您-dumpstream与 mplayer 一起使用时,它只是在将视频过滤器应用于播放时转储流。查看 mencoder 选项,但您需要选择视频编解码器和该编解码器的一些选项(如比特率)。然后您可以应用亮度和对比度过滤器。
eq=50:50
-dumpstream