我的脚本运行的简单方法是用户提供文件夹位置和文件类型,glob.glob()查找提供了文件类型的文件并将它们添加到列表中。然后它使用for循环并遍历列表并转换每个视频。但是当我尝试运行我的ffmpeg命令时,它不喜欢。任何帮助都是极好的。我也使用64位ffmpeg和Python 3.3的Win 7 64位 这是错误:
OS Error
Traceback (most recent call last):
File "C:\Python33\lib\subprocess.py", line 1106, in _execute_child
startupinfo)
FileNotFoundError: [WinError 2] The system cannot find the file specified
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\user\Workspace\PythonConverter\HTMLandPythonConverter\Converter.py", line 77, in <module>
massConvert(fileNames)
File "C:\Users\user\Workspace\PythonConverter\HTMLandPythonConverter\Converter.py", line 47, in massConvert
convertVideotoNewFormat('.mp4', x)
File "C:\Users\user\Workspace\PythonConverter\HTMLandPythonConverter\Converter.py", line 61, in convertVideotoNewFormat
myFile = subprocess.Popen(ffmpegString)#, stdout=subprocess.PIPE, stderr=subprocess.PIPE
File "C:\Python33\lib\subprocess.py", line 820, in __init__
restore_signals, start_new_session)
File "C:\Python33\lib\subprocess.py", line 1112, in _execute_child
raise WindowsError(*e.args)
FileNotFoundError: [WinError 2] The system cannot find the file specified
这是我的代码:
import subprocess
from subprocess import call
import glob
fileNames = []
fileLocation = {}
filetype = {}
def convertString(location):
s = list(location)
for i in range(len(s)):
if s[i] in '\\':
s[i] = '/'
if s[len(s)-1] != '/':
s.append('/')
location = "".join(s)
return location
def convertStringBack(stringTo):
s = list(stringTo)
for i in range(len(s)):
if s[i] in '/':
s[i] = '\\'
stringTo = "".join(s)
return stringTo
def fileTypeTester():
FieldType = '*' + input('What\'s the file type we are converting from?')
typeSplit = list(FieldType)
if typeSplit[1] != '.':
typeSplit.insert(1,'.')
FieldType = "".join(typeSplit)
if FieldType not in ['*.flv','*.kdb']:
print('Not a valid file type')
else:
return FieldType
return None
def massConvert(listOfFiles):
print('Starting Conversion')
for x in listOfFiles:
#x = convertStringBack(x)
print('Converting ' + x + ' to .mp4')
convertVideotoNewFormat('.mp4', x)
print('Finished File Conversion')
def convertVideotoNewFormat(newFormat, fileLoc):
newFilePath = fileLoc[0:len(fileLoc)-4]
ffmpegString = ["ffmpeg64","-i", fileLoc,"-qscale","0","-ar","22050","-vcodec","libx264",newFilePath,newFormat]
try:
subprocess.check_call(newFilePath)
except OSError:
print('OS Error')
except subprocess.CalledProcessError:
print('Subprocess Error')
myFile = subprocess.Popen(ffmpegString)
print(myFile)
#This will replace old HTML flv object tag with new video tag, but it is yet to be implemented
def replaceHTML():
pass
fileLocation = input('What is the path of the files you\'d like to convert?')
fileLocation = convertString(fileLocation)
fileType = fileTypeTester()
fileNames = glob.glob(fileLocation + fileType)
massConvert(fileNames)
我环顾四周,大部分教程都是2.7,代码是3.3,我找不到使用ffmpeg for 3.3的教程。我的ffmpeg在我的PATH上设置为'ffmpeg64'。
谢谢!
答案 0 :(得分:1)
首先:
def convertVideotoNewFormat(newFormat, fileLoc):
newFilePath = fileLoc[0:len(fileLoc)-4]
ffmpegString = ["ffmpeg64","-i", fileLoc,"-qscale","0","-ar","22050","-vcodec","libx264",newFilePath,newFormat]
try:
subprocess.check_call(newFilePath)
except OSError:
print('OS Error')
except subprocess.CalledProcessError:
print('Subprocess Error')
这部分不可能做任何有用的事情。 newFilePath
是您通过从视频文件中删除最后4个字符而创建的路径。你不能在那条路上运行程序,因为(除非你非常非常不幸)没有这样的问题。
这解释了第一个OSError
。
对于第二个错误,它告诉您ffmpeg64
上没有PATH
。您说PATH
上的 ,但是没有其他方法可以从that line of code获得该错误。如果需要,您可以查找CreateProcess
所做的事情。
这有三个常见原因:
SET
修改特定cmd.exe会话(DOS提示符)中的PATH
,但您在其他DOS提示符下运行代码,或运行GUI代码,或者由于某些其他原因会有不同的会话。PATH
,但您正在以不同的用户身份运行Python脚本(例如,作为WSGI服务的一部分)。PATH
;您依赖于cd
与ffmpeg64
放在同一目录中的事实,.
在Windows中的默认PATH
上。作为旁注,这是:
newFilePath = fileLoc[0:len(fileLoc)-4]
...与:
相同newFilePath = fileLoc[:-4]
...除了它更难阅读,而且不太健壮(如果fileLoc
小于4个字符错误会引发异常),并且更慢更容易出错。
但实际上,如果您要剥离扩展程序,则不希望 。如果您有foobar.mpeg
,是否真的想将其转换为foobar..mp4
?使用os.path
模块来修改路径:
newFilePath, ext = os.path.splitext(fileLoc)
虽然我们正在使用它,但您的代码中还有其他一些问题:
myFile = subprocess.Popen(ffmpegString)
print(myFile)
subprocess.Popen
创建一个子进程对象,您最终将需要wait
。打印出来不会做任何特别有用的事情。
如果您想一次进行一次转化,等待每次转化完成,请先使用check_call
,而不是Popen
。
如果你想在这里return myFile
并行地完成所有这些操作,然后执行以下操作:
children = []
for x in listOfFiles:
print('Converting ' + x + ' to .mp4')
children.append(convertVideotoNewFormat('.mp4', x))
for child in children:
child.wait()
print('Finished File Conversion')