Way to manipulate Flash Video (FLV) files with .NET code?

  • Thread starter Thread starter noneya22
  • Start date Start date
N

noneya22

I am building an asp.net 2.0 application and I need to be able to
convert existing FLV files on the server. Specifically, I need to be
able to take an FLV file and convert it to another, smaller/scaled
down FLV file. I'm trying to create a small, preview of the original
FLV file. Is there a .NET library that will allow me to do this?

Thanks!
 
There aren't very many at all. Aspose has one that worked fairly well to
create regular SWF animations and it does support FLV though I'm not sure if
it can resample them on the fly.
http://www.aspose.com/Products/Aspose.Flash/ That's actually a pretty tough
task to put a server through since video encoding or re-encoding is rather
an intensive operation.
 
You probably know this, and this may not work for your scenario, but if you
have a "throwaway" server available to dedicate to your encoding, Sorenson
Squeeze supports watch folders that will process anything dropped into it
according to a profile or profiles, naming the rendered files predictably.
No good if you don't have a dedicated server.

I imagine Silverlight technologies just might eventually do what you're
looking for, here...
 
I believe you can use ffmpeg to resize an FLV, but that's not .NET
code.

HTH,

Sam
 
Back
Top