vbnewbie
vbnewbie

Reputation: 226

How can I remove metadata from a flv file?

with ffmpeg I can use the command below to remove the metadata in General section

ffmpeg -i input.flv -c copy -metadata description= -metadata title= output.flv

enter image description here

What if I want to remove the metadata in Video and Audio section?

EDIT: I want to remove writing library

enter image description here

Upvotes: 0

Views: 2180

Answers (1)

Gyan
Gyan

Reputation: 93339

With FFmpeg v4.0 or newer, for your particular case,

ffmpeg -i in -c copy -bitexact -map_metadata -1 -vbsf filter_units=remove_types=6 out

Upvotes: 1

Related Questions