ffmpeg - grayscale, sepia tone, grayworld, extract planes

Опубликовано: 30 Октябрь 2024
на канале: A Forum
245
3

Hello hope everyone is doing well.

just a quick video of commands straight out of the ffmpeg documentation.
For greyscale, sepia tone, and gray world you can see the commands in my video.
here are the commands and links:

https://ffmpeg.org/ffmpeg-filters.htm...

ffmpeg -i Input.MOV -vf colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3 grayscale.MOV

ffmpeg -i Input.MOV -vf colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131 sepia.MOV

https://ffmpeg.org/ffmpeg-filters.htm...

ffmpeg -i Input.MOV -vf zscale=transfer=linear,grayworld,zscale=transfer=bt709,format=yuv420p grayworld.MOV

https://ffmpeg.org/ffmpeg-filters.htm...

ffmpeg -i Input.MOV -filter_complex 'extractplanes=y+u+v[y][u][v]' -map '[y]' y.avi -map '[u]' u.avi -map '[v]' v.avi

hope this is helpful. Have a lovely day.

0:00 intro
0:04 grayscale command
0:10 Sepia tone command
0:15 grayworld command
0:20 extract planes command
0:27 Thankyou