We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c6fd88 commit 4831fd1Copy full SHA for 4831fd1
ReferenceImporter/imageSequence.py
@@ -30,7 +30,7 @@ def getDuration(self, video_file):
30
raise e
31
return process
32
def createSequence(self,input_file, frameRate,start_trim,end_trim, output_file):
33
- command = ('"%s" -i "%s" -r %s -vf scale=1280:-1 -ss %s -to %s "%s"' % (self.ffmpeg_path,input_file,frameRate,start_trim,end_trim,output_file)).encode(self.encoding)
+ command = ('"%s" -i "%s" -r %s -vf scale=1280:-1 -q:v 3 -ss %s -to %s "%s"' % (self.ffmpeg_path,input_file,frameRate,start_trim,end_trim,output_file)).encode(self.encoding)
34
try:
35
subprocess.call(command)
36
except Exception as e:
0 commit comments