我的目标是创建一个将 AVI 文件作为输入的程序,然后执行任何必要的操作将其刻录到 DVD。
目前,我使用三个独立的程序来完成此任务。第一个工具需要我将它从 AVI 文件转换为 MPEG。第二个工具采用 MPEG 并创建 DVD 文件(一个 VIDEO_TS 文件夹,其中包含一些文件)。第三个工具将文件夹刻录到 DVD。我想将这三个工具合二为一,如果可能的话,跳过 AVI 到 MPEG 的转换,只创建 DVD 文件并刻录它们。
目标平台是 Windows 7,我要使用的语言是 C++。
哪些库或命令行程序将帮助我追求荣耀?
编辑:澄清一下,我想创建一个视频 DVD 来在 DVD 播放器上播放电影。(谢谢杰瑞)
编辑 2:我最终在 Linux 上使用 Python 来自动化一切。这是脚本以防万一有人需要它。(注意:这是我的第一个 python 脚本,所以它可能不是很好)
import sys
import os
import shutil
from subprocess import call
# step 1: call ffmpeg and convert the input avi to an mpeg-2
def avi_to_mpeg(input, output):
return call(["ffmpeg", "-i", input, "-target", "ntsc-dvd", "-threads", "4", output])
# step 2: create the xml file needed for dvdauthor
def create_xml_file(mpg_source, xml_file):
with open(xml_file, "w") as file:
file.write("<dvdauthor>\n")
file.write("\t<vmgm />\n")
file.write("\t<titleset>\n")
file.write("\t\t<titles>\n")
file.write("\t\t\t<pgc>\n")
file.write("\t\t\t\t<vob file=\"" + mpg_source + "\" />\n")
file.write("\t\t\t</pgc>\n")
file.write("\t\t</titles>\n")
file.write("\t</titleset>\n")
file.write("</dvdauthor>\n")
return os.path.isfile(xml_file)
# step 3: invoke dvdauthor
def author_dvd(mpg_source):
return call(["dvdauthor", "-o", "mkdvd_temp", "-x", xml_file])
# step 4: finally, burn the files to the dvd
def burn_dvd(dvd_target):
return call(["growisofs", "-Z", dvd_target, "-dvd-video", "mkdvd_temp"])
# step 5: clean up the mess
def clean_up(mpg_source, xml_file):
shutil.rmtree("mkdvd_temp")
os.remove(mpg_source)
os.remove(xml_file)
def eject(dvd_target):
return call(["eject", dvd_target])
def print_usage():
print "mkdvd by kitchen"
print "usage: mkdvd -s file.avi -t /dev/disc"
print " -s : Input .AVI file"
print " -t : Target disc, /dev/dvd for example"
def get_arg(sentinel):
last_arg = ""
for arg in sys.argv:
if last_arg == sentinel:
return arg
last_arg = arg
return None
# program start
avi_source = get_arg("-s") # input .avi file
dvd_target = get_arg("-t") # the disc to burn it to (/dev/dvd for example)
if avi_source == None or dvd_target == None:
print_usage()
sys.exit("Not enough parameters.")
if os.path.isfile(avi_source) == False:
sys.exit("File does not exists (" + avi_source + ")")
mpg_source = avi_source + ".mpg"
if avi_to_mpeg(avi_source, mpg_source) != 0:
sys.exit("Failed to convert the AVI to an MPG")
xml_file = mpg_source + ".xml"
if create_xml_file(mpg_source, xml_file) == False:
sys.exit("Failed to create the XML file required by dvdauthor")
if author_dvd(mpg_source) != 0:
sys.exit("Failed to create the DVD files")
if burn_dvd(dvd_target) != 0:
sys.exit("Failed to burn the files to the disc")
print "mkdvd has finished burning " + avi_source + " to " + dvd_target
print "Cleaning up"
clean_up(mpg_source, xml_file)
eject(dvd_target)