views:

235

answers:

2

VB.Net

This works fine for me

"-i ""C:\myfile.flv"" -ar 22050 FileName.mp4"

but can i use this one i.e.

"-i ""http://www.example.com/myfile.flv"" -ar 22050 FileName.mp4"
+1  A: 

According to the documentation:

The protocol http: is currently used only to communicate with FFserver (see the FFserver documentation). When FFmpeg will be a video player it will also be used for streaming :-)

Chris Haas
A: 

I suggest that you pull the file via http and write it to disk before trying to transcode it. This will also prevent having fragmented encodings should something go wrong when consuming it via ffmpeg.

Mondain