假設我們有一個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 指令「轉換」高清 1080P 的 mp4 檔案以供 YouTube 使用?