如何编写程序来重命名mp4文件以匹配srt文件的名称?

时间:2013-04-06 07:38:46

标签: c++ python algorithm file-rename

所以我从Coursera下载了“计算机网络简介”课程的mp4和srt文件。但是mp4和srt文件的名称之间存在轻微的差异。

文件名示例如下:

1 - 1 - 1-1 Goals and Motivation (1253).mp4
1 - 1 - 1-1 Goals and Motivation (12_53).srt
1 - 2 - 1-2 Uses of Networks (1316).mp4
1 - 2 - 1-2 Uses of Networks (13_16).srt
1 - 3 - 1-3 Network Components (1330).mp4
1 - 3 - 1-3 Network Components (13_30).srt
1 - 4 - 1-4 Sockets (1407).mp4
1 - 4 - 1-4 Sockets (14_07).srt
1 - 5 - 1-5 Traceroute (0736).mp4
1 - 5 - 1-5 Traceroute (07_36).srt
1 - 6 - 1-6 Protocol Layers (2225).mp4
1 - 6 - 1-6 Protocol Layers (22_25).srt
1 - 7 - 1-7 Reference Models (1409).mp4
1 - 7 - 1-7 Reference Models (14_09).srt
1 - 8 - 1-8 Internet History (1239).mp4
1 - 8 - 1-8 Internet History (12_39).srt
1 - 9 - 1-9 Lecture Outline (0407).mp4
1 - 9 - 1-9 Lecture Outline (04_07).srt
2 - 1 - 2-1 Physical Layer Overview (09_27).mp4
2 - 1 - 2-1 Physical Layer Overview (09_27).srt
2 - 2 - 2-2 Media (856).mp4
2 - 2 - 2-2 Media (8_56).srt
2 - 3 - 2-3 Signals (1758).mp4
2 - 3 - 2-3 Signals (17_58).srt
2 - 4 - 2-4 Modulation (1100).mp4
2 - 4 - 2-4 Modulation (11_00).srt
2 - 5 - 2-5 Limits (1243).mp4
2 - 5 - 2-5 Limits (12_43).srt
2 - 6 - 2-6 Link Layer Overview (0414).mp4
2 - 6 - 2-6 Link Layer Overview (04_14).srt
2 - 7 - 2-7 Framing (1126).mp4
2 - 7 - 2-7 Framing (11_26).srt
2 - 8 - 2-8 Error Overview (1745).mp4
2 - 8 - 2-8 Error Overview (17_45).srt
2 - 9 - 2-9 Error Detection (2317).mp4
2 - 9 - 2-9 Error Detection (23_17).srt
2 - 10 - 2-10 Error Correction (1928).mp4
2 - 10 - 2-10 Error Correction (19_28).srt

我想重命名mp4文件以匹配srt文件,以便vlc可以在播放视频时自动加载字幕。有人讨论算法来做到这一点?您也可以使用任何语言提供解决方案代码,因为我熟悉许多编程语言。但是python和c ++更受欢迎。

修改: 感谢所有回复的人。我知道重命名srt文件要比其他方式更容易。但我认为重命名mp4文件会更有趣。有什么建议吗?

4 个答案:

答案 0 :(得分:3)

如果所有这些文件都遵循这个方案,那么Python实现几乎是微不足道的:

import glob, os

for subfile in glob.glob("*.srt")
    os.rename(subfile, subfile.replace("_",""))

如果你的mp4还包含下划线,你想为它们添加一个额外的循环。

答案 1 :(得分:2)

for f in *.srt; do mv $f ${f%_}; done

答案 2 :(得分:2)

这是python的快速解决方案。

如果您做出以下假设,工作很简单:

  1. 所有文件都在同一个文件夹中
  2. 目录中的srt和mp4文件数量相同
  3. 所有srt按字母顺序排序,所有mp4按字母顺序排列
  4. 注意我不假设任何有关实际名称的内容(例如,您只需要删除下划线)。

    因此,您不需要任何特殊的逻辑来匹配文件,只需逐个进行。

    import os, sys, re
    from glob import glob
    
    def mv(src, dest):
        print 'mv "%s" "%s"' % (src, dest)
        #os.rename(src, dest)  # uncomment this to actually rename the files
    
    dir = sys.argv[1]
    
    vid_files = sorted(glob(os.path.join(dir, '*.mp4')))
    sub_files = sorted(glob(os.path.join(dir, '*.srt')))
    assert len(sub_files) == len(vid_files), "lists of different lengths"
    
    for vidf, subf in zip(vid_files, sub_files):
        new_vidf = re.sub(r'\.srt$', '.mp4', subf)
        if vidf == new_vidf:
            print '%s OK' % ( vidf, )
            continue
        mv(vidf, new_vidf)
    

    同样,这只是一个快速的脚本。建议的改进:

    1. 支持不同的文件扩展名
    2. 使用更好的cli,例如argparse
    3. 支持采用多个目录
    4. 支持测试模式(实际上不重命名文件)
    5. 更好的错误报告(而不是使用assert
    6. 更高级:支持撤消

答案 3 :(得分:1)

这只是Zeta所说的实现:)

import os;
from path import path;
for filename in os.listdir('.'):        
    extension = os.path.splitext(path(filename).abspath())[1][1:]
    if extension == 'srt':        
        newName = filename.replace('_','');
        print 'Changing\t' + filename + ' to\t' + newName;
        os.rename(filename,newName);
print 'Done!'