renjucool
renjucool

Reputation: 312

How we can perform live encoding of videos to mp4 and stream it in ASP.NET

I'm using flow player for streaming videos to my browser.The videos are uploaded by the users and they may upload different formats. What will be solution to stream the videos as mp4 , what ever be the format they upload. I'm currently using ffmpeg commands.

The problem is after encoding the video is getting down scaled.Also if the user upload large video file the encoding itself takes more time.

I need to stream the videos as soon as its uploaded to the server, what ever may be the format(like in youtube).

Upvotes: 2

Views: 2765

Answers (2)

Dimestore Cowboy
Dimestore Cowboy

Reputation: 329

I think you could do this by automating expression encoder on the server even though it is mainly used for smooth streaming format but expression encoder isn't opensource or free :(

Upvotes: 1

Greg B
Greg B

Reputation: 14888

I'd look into ffmpeg as it allows yo to transcode just about every video format on the planet.

However; I'm not sure of it's real-time capabilities or it's abilities to stream it's output. Might be a good place to start though.

Upvotes: 1

Related Questions