对于 FFMPEG,‘force_style’ 是否与‘subtitles=video.mkv’ 一起使用?
我正在使用此脚本对整个文件夹的刻录字幕进行编码: for filepath in newFiles: video = os.path.basename(filepath) videoName = os.path.splitext(video)[0] newFile = '%s.mp4' % videoName i = filepath o = os.path.join(destinationDirectory, newFile) if os.path.isfile(o): continue ...