1alessandro1 / edit_metadata_ffmpeg

This dummy repo collects few commands to remove or edit metadata from multiple sources

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cool way to edit metadata without the use of exiftool

This dummy repo collects few commands to remove or edit metadata from multiple sources

Change whole file title:

ffmpeg -i input.mkv -map 0:v -map 0:a -map 0:s -metadata title='whatever' -c copy output.mkv

Change video stream title:

ffmpeg -i input.mkv -metadata:s:v:0 title="HEVC Video" -map 0:v -map 0:a -map 0:s -c copy output.mkv

I think :s:v:0 some of the comments stands for:

  • :v = Video stream
  • :0 = Use first video stream

Credits, of course stackoverflow:

About

This dummy repo collects few commands to remove or edit metadata from multiple sources