Reputation: 1
I have been trying to convert a flv file into swf file. How can I convert the flv video into swf file using C#?
Upvotes: 0
Views: 611
Reputation: 36300
If you are asking for the algorithm for how to do the conversion in C# then that is far outside the scope of a simple SO-question.
But instead of doing that I would recommend you use one of many existing command-line tools for doing the conversion. The tools can be called from your C# code using the Process class. When the conversion tool finishes you can read out the converted file and do whatever you want with it.
Upvotes: 2