How can I remove metadata from a flv file?

泄露秘密 提交于 2020-11-24 22:41:41

问题


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

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

EDIT: I want to remove writing library


回答1:


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


来源:https://stackoverflow.com/questions/52024631/how-can-i-remove-metadata-from-a-flv-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!