Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create video file on Windows Phone 7

Is it possible to create programmatically video file (e.g. .wmv, .avi, etc.) (merge BMP and .wav files) on Windows Phone? I found a lot of 3rd party utilities, but actually they are C++ based and won't work on Windows Phone Platform.

Many thanks, Any help will be appreciated.

like image 235
vedeme Avatar asked Jul 23 '12 09:07

vedeme


2 Answers

I wouldn't suggest going this route.. a phone is a light weight device. if you want to do these, would suggest uploading them and doing it elsewhere. once done, the results are downloaded.

like image 159
Hermit Dave Avatar answered Nov 02 '22 09:11

Hermit Dave


Even if it was possible I would question its usefulness taking into acount performance of the phones. Encoding video on 1-1.4GHz single core is not really a good idea. You would need either low-level optimizations or hardware encoding, both which are not available to 3rd party developers.

like image 43
Euphoric Avatar answered Nov 02 '22 10:11

Euphoric