Video Post

Upon successful completion of the video upload process, you can include the video data as a parameter when creating a video post, as demonstrated in the code sample below.

Here's an explanation of the method's parameters:

  • text: This is a required parameter of type String, which represents the text content of the new post. You can pass in any text you want to include in the post, up to a maximum length of 20,000 characters.

  • videos: Which represents an array of videos uploaded by the user on Android, iOS and Flutter and videoIds for Typescript and Javascript to include in the new post. You can pass up to 10 videos in a post.

  • targetType - Type of the target, either a particular community or a user feed.

  • tags - Arbitrary strings that can be used for defining and querying for the posts.

  • metaData - Additional properties to support custom fields.

Requirements for Video

  • Supported video types are 3gp, avi, f4v, flv, m4v, mov, mp4, ogv, 3g2, wmv, vob, webm, mkv

  • The maximum file size of the video is 1 GB

  • The maximum duration of the video is 2 hours

We can build the post first by using AmityVideoPostBuilder. Then use the createVideoPost method in AmityPostRepository to create a video post.

  • A post can have a maximum of ten videos.

  • Uploading HDR video format is not supported on iOS.

Last updated