有没有什么应用可以比较两个视频文件?12.04 上的内容

有没有什么应用可以比较两个视频文件?12.04 上的内容

我有很多家庭视频都存在问题。有些视频名称相同但内容不同。有些视频内容相同。有没有一个应用程序可以比较内容或其他内容,然后删除、复制或重命名同名文件?我正在运行 12.04 64 位!

文件的名称类似于 VIC0003.mp4 或 100_1622.mov。感谢您的帮助!

答案1

您可以尝试重复项

维基百科:

fdupes is a program written by Adrian Lopez to scan directories for duplicate files, with options to list, delete or replace the files with hardlinks pointing to the duplicate. It first compares file sizes and MD5 signatures, and then performs a byte-by-byte check for verification.
fdupes is written in C and is released under the MIT License.

1)要安装 fdupes,请打开终端并输入:

  • sudo apt-get install fdupes

2)对于基本用法..要递归搜索重复文件,您可以执行以下操作:

  • fdupes -r ~/Videos/ > ~/Desktop/duplicates.txt

使用此命令,fdupes 将在您的主目录中的文件夹“Videos”中递归搜索,并将结果保存在桌面上的“duplicates.txt”文件中。

例如:

在此处输入图片描述

在此示例中重复项发现:

“/home/user/Videos/Some_Videos/video_ex.webm”

“/home/用户/视频/video_ex_copy.webm”

是重复的文件。

还有:

“/home/user/Videos/Some_Videos/video_1.flv”

“/home/user/Videos/Some_Videos/copy_video.flv”

也是重复的。

笔记:(结果将把同一文件的所有重复项分成几组,每组之间用空白行分隔。)

因此,您可以查看“duplicates.txt”文件来分析哪些文件是重复的。

3)Fdupes 还有一个选项可以提示用户删除重复的文件。

  • fdupes -rd ~/Videos

使用 -rd 选项,fdupes 将搜索并提示是否存在重复文件,要保留哪个文件。然后将删除其他文件。

例如:

user@Ubuntu:~$ fdupes -rd ~/Videos

[1] /home/user/Videos/Some_Videos/video_ex.webm

[2] /home/user/Videos/video_ex_copy.webm

Set 1 of 3, preserve files [1 - 2, all]:

欲了解更多信息,您可以查看手册页

我希望它有帮助!

相关内容