Create video file on Windows Phone 7

陌路散爱 提交于 2019-12-23 09:25:53

问题


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.


回答1:


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.




回答2:


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.




回答3:


Imaging scenario when you writing RAW video to backend. 1 frame is about 1.5 MB and for several seconds you will get about 100MB to upload. This couldn't be handled by the mobile data connection (and not mobile as well). Instead client should pre-process the data and convert RAW video data to compact video files right on the phone (and then submit to server, e.g. for persistent storage).



来源:https://stackoverflow.com/questions/11609673/create-video-file-on-windows-phone-7

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!