Create a video file on Windows Phone 7

Is it possible to create a program video file (eg .wmv, .avi, etc.) (merge BMP and .wav files) on a Windows Phone? I found many third-party utilities, but in reality they are based on C ++ and will not work on the Windows Phone platform.

Thanks a lot, Any help would be appreciated.

+6
source share
3 answers

I would not suggest going along this route. A phone is a lightweight device. if you want to do this, suggest downloading them and doing it elsewhere. after execution, the results are loaded.

+1
source

Even if it were possible, I would question its usefulness, given the performance of the phones. Encoding video on a single core of 1-1.4 GHz is not a good idea. You will need either low-level optimization or hardware encoding that is not available to third-party developers.

+1
source

Visualization script for recording RAW video in the backend. 1 frame is about 1.5 MB, and in a few seconds you will get about 100 MB to download. This cannot be accomplished by a mobile data connection (rather than a mobile). Instead, the client must pre-process the data and convert the RAW video data into compact video files directly on the phone (and then send it to the server, for example, for permanent storage).

0
source

Source: https://habr.com/ru/post/921112/


All Articles