将带有FFMPEG的视频转换为PowerPoint 2016兼容的视频格式

时间:2017-05-23 09:04:22

标签: video ffmpeg powerpoint mp4 h.264

我正在尝试将一堆视频转换为Windows 2013系统上PowerPoint 2013/2016本机支持的视频格式。

Microsoft建议在他们的网站mp4上使用h264和aac。

Video and audio file formats supported in PowerPoint

  

在PowerPoint 2013及更高版本以及PowerPoint 2016 for Mac中,为了获得最佳视频播放体验,我们建议您使用以H.264视频(a.k.a. MPEG-4 AVC)和AAC音频编码的.mp4文件。在PowerPoint 2010中,我们建议您使用.wmv文件。

     

我们建议使用以AAC音频编码的.m4a文件。在PowerPoint 2010中,我们建议您使用.wav或.wma文件。

音频对我来说并不重要。 我尝试使用以下选项使用ffmpeg转换我的视频:

ffmpeg -i Input.avi -c:v libx264 -preset slow -crf 22 -c:a copy Output.mp4

但是我无法将视频导入PowerPoint 2016(32或64位,我尝试了两者)。我总是得到一个丢失的编解码器错误。

PPT Error when including video files

有没有人成功将视频编码为本机支持的PowerPoint视频格式?

1 个答案:

答案 0 :(得分:5)

我找到了一个适合我的解决方案:

我强迫ffmpeg使用h264的'high'配置文件和aac音频编解码器。因为高轮廓不支持任何色度平面,所以我选择像素格式YUV 4:2:0

ffmpeg -i Input.avi -c:v libx264 -preset slow  -profile:v high -level:v 4.0 -pix_fmt yuv420p -crf 22 -codec:a aac Output.mp4

现在它适用于Windows 7 64位的PP 2016 64位。