如何从flv文件中删除元数据? [英] How can I remove metadata from a flv file?

查看:176
本文介绍了如何从flv文件中删除元数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用ffmpeg,我可以使用以下命令删除常规"部分中的元数据

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?

我要删除写作库

推荐答案

对于您的特定情况,对于FFmpeg v4.0或更高版本,

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

这篇关于如何从flv文件中删除元数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆