-1

I need to create a command-line program that accepts a .avi file and converts it into a .wmv so that I can display it using Silverlight.

Does anyone know any examples of how to convert a .avi file to a .wmv?

JavaAndCSharp
  • 1,507
  • 3
  • 23
  • 47
seema
  • 11
  • 2

3 Answers3

1

use ffmpeg.exe that wil solve your purpose for converting avi to wmv via commandline

shirish
  • 21
  • 3
0

I am not quite sure why you would need to create a program when Expression Encoder can do it for you using the commandline

Emond
  • 50,210
  • 11
  • 84
  • 115
0

Expression Encoder 4 comes with an SDK that includes a simple command line program called CommandEncoder. You have to build the CommandEncoder.exe using Visual Studio.

CommandEncoder.exe -m[p][d] [Preset] [Destination]

jbrass
  • 941
  • 7
  • 26