1

I have a set of WMV files that I need to convert to H.264. I have Expression Encoder 3 and can do each through the UI. Just trying to find a script to batch it through PowerShell using the Encoder 3 SDK. Thanks

Todd Main
  • 28,951
  • 11
  • 82
  • 146
Chris Woodruff
  • 1,323
  • 3
  • 14
  • 30

1 Answers1

4

Try something like:

import-module ExpressionEncoder
ls | Convert-Media -VC1IISSmoothStreamingSD480pVBR -TemplateBlackGlass -Output $home\desktop

Source: http://blog.johndeutscher.com/2009/07/13/expression-encoder-3-0-and-powershell-scripting-the-api/

Carlos GutiƩrrez
  • 13,972
  • 5
  • 37
  • 47