0

所以我从 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

4 回答 4

2

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

import glob, os

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

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

于 2013-04-06T07:55:13.540 回答
2

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

于 2013-04-06T07:56:11.020 回答
2

这是python中的快速解决方案。

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

  1. 所有文件都在同一个文件夹中
  2. 您在目录中有相同数量的 srt 和 mp4 文件
  3. 所有 srt 都按字母顺序排列,所有 mp4 都按字母顺序排列

注意我不假设任何关于实际名称的内容(例如,您只需要删除下划线)。

因此,您不需要任何特殊的逻辑来匹配文件,只需一个接一个即可。

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. 更高级:支持撤消
于 2013-04-06T07:56:22.223 回答
0

这只是 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!'
于 2013-04-06T08:07:54.313 回答