ffmpeg:在Mac上生成的wmv文件无法在Windows中播放

时间:2015-06-15 23:34:36

标签: windows macos ffmpeg file-conversion wmv

在Mac OS X 10.6.8上,我使用

将动画gif转换为wmv(所请求的文件格式)的视频文件
ffmpeg -i File.gif -s 400x400 NewFile.wmv

使用Mac上的VLC可以很好地播放视频文件。 无法使用Windows Media Player在Windows 7计算机上播放该文件。有没有办法可以将动画gif保存为可以在Windows 7计算机上使用Windows Media Player播放的WMV文件?

非常感谢你的时间!

1 个答案:

答案 0 :(得分:0)

您可以尝试使用编解码器进行编码。试试这个。

//controller
roleBasedComponentName: Ember.computed('currentUser.role', function() {
  return ((this.get('currentUser.role') === 'admin') ? 'admin-header' : 'user-header');
})

//template
{{component roleBasedComponentName user=currentUser}}

您可能会发现this很重要。