# EVCapture去文件属性详细信息中的备注ev不知道ffmpeg怎么去特意写了个py **Repository Path**: dB3gK0r/pyEVCaptureVideoFileAttributeTagCommentRemove ## Basic Information - **Project Name**: EVCapture去文件属性详细信息中的备注ev不知道ffmpeg怎么去特意写了个py - **Description**: EVCapture录制的视频总是在文件属性-详细信息中的备注“EV录屏软件录制”等等,不知道用ffmpeg怎么去除,特意写了个py去掉它 Copyleft, Video files created by EVCapture always have comment tags like “EV录屏软件录制” embeded and I've written this py than ffmpeg - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-11-25 - **Last Updated**: 2022-11-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # EVCapture去文件属性详细信息中的备注ev不知道ffmpeg怎么去特意写了个py #### 介绍 EVCapture录制的视频总是在文件属性-详细信息中的备注“EV录屏软件录制”等等,不知道用ffmpeg怎么去除,特意写了个py去掉它 Copyleft, Video files created by EVCapture always have comment tags like “EV录屏软件录制” embeded and I've written this py than ffmpeg #### 补充 记得去掉metadata 这个ffmpeg可以去 e.g. for i in *_.mkv; do ffmpeg -i $i -map_metadata -1 -c copy ${i%%.*}-.mkv; done