mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Small changes to the ffmpeg args when writing video files
This commit is contained in:
parent
8c28017239
commit
c79474a57c
1 changed files with 4 additions and 4 deletions
|
@ -230,16 +230,16 @@ class SceneFileWriter(object):
|
|||
'-pix_fmt', 'rgba',
|
||||
'-r', str(fps), # frames per second
|
||||
'-i', '-', # The imput comes from a pipe
|
||||
'-c:v', 'h264_nvenc',
|
||||
'-an', # Tells FFMPEG not to expect any audio
|
||||
'-loglevel', 'error',
|
||||
]
|
||||
# TODO, the test for a transparent background should not be based on
|
||||
# the file extension.
|
||||
if self.movie_file_extension == ".mov":
|
||||
# This is if the background of the exported video
|
||||
# should be transparent.
|
||||
# This is if the background of the exported
|
||||
# video should be transparent.
|
||||
command += [
|
||||
'-vcodec', 'qtrle',
|
||||
# '-vcodec', 'png',
|
||||
]
|
||||
else:
|
||||
command += [
|
||||
|
|
Loading…
Add table
Reference in a new issue