user283494
user283494

Reputation: 1907

Android: Serializing video files

I want to send video files from the Android via network to server. How can I serialize video files in Android?

Upvotes: 0

Views: 603

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006704

You cannot "serialize video files" on any platform, let alone Android. Files are already "serialized" by definition.

If you want to send it to a Web service, you will need to research the API of that Web service (e.g., HTTP PUT for uploading videos) and then implement that in Android (e.g., using HttpClient).

Upvotes: 3

Related Questions