Skip to main content
added 19 characters in body
Source Link
slm
  • 379.8k
  • 127
  • 793
  • 897

Use this:

$ ffmpeg -i color.mkv -vf format=gray -map 0:v -map 0:a:0 -map 0:11 \
    -c:a copy -c:s copy grey.mkv

The maps set which tracks to include. The c with specifiers set the codec operation to copy for those specified streams.

Use

ffmpeg -i color.mkv -vf format=gray -map 0:v -map 0:a:0 -map 0:11 -c:a copy -c:s copy grey.mkv

The maps set which tracks to include. The c with specifiers set the codec operation to copy for those specified streams.

Use this:

$ ffmpeg -i color.mkv -vf format=gray -map 0:v -map 0:a:0 -map 0:11 \
    -c:a copy -c:s copy grey.mkv

The maps set which tracks to include. The c with specifiers set the codec operation to copy for those specified streams.

Source Link
Gyan
  • 1.1k
  • 5
  • 13

Use

ffmpeg -i color.mkv -vf format=gray -map 0:v -map 0:a:0 -map 0:11 -c:a copy -c:s copy grey.mkv

The maps set which tracks to include. The c with specifiers set the codec operation to copy for those specified streams.