matplotlib.animation
아래 코드로 생성된 비디오가 있다고 가정해 보겠습니다 . (HD 1080p의 mp4 파일을 갖는 방법을 알 수는 없지만 Final Cut Pro HD 1080p로 다시 인코딩할 수 있습니다.)
Writer = animation.writers['ffmpeg']#code to save the example.mp4
writer = Writer(fps=0.9, codec="h264", bitrate=1000000, metadata=dict(artist='me'))
animator.save('example.mp4', writer=writer)
이 mp4 파일을 Final Cut으로 가져올 때 HD 1080p로 만들 수 있는 옵션이 있습니다.
Q: ffmpeg 명령을 사용하여 유튜브용으로 계획된 대로 HD 1080P의 mp4 파일을 "변환"하려면 어떻게 해야 합니까?