Back to Blog

Mastering Video Automation with FFMPEGAPI.net: TikTok Portrait Converter

June 2026 FFMPEG API Team

In the fast-paced world of social media, creating engaging content quickly is paramount. TikTok, with its vertical video format, has become a favorite platform for creators. FFMPEGAPI.net offers a powerful hosted REST API that simplifies video processing tasks, including converting videos to the required TikTok portrait format. In this article, we will explore how to use the TikTok Portrait Converter endpoint to automate your video workflows efficiently.

What is the TikTok Portrait Converter?

The TikTok Portrait Converter is an endpoint offered by FFMPEGAPI.net that transforms landscape videos into full-bleed 9:16 TikTok-style portraits. This functionality is crucial for content creators looking to maximize their reach on TikTok.

By leveraging FFMPEGAPI.net, developers can automate the video conversion process without the hassle of managing server infrastructure or dealing with complex FFmpeg setups.

  • Convert landscape videos to a 1080x1920 portrait format.
  • Optionally add a watermark or outro video.
  • API-key authentication ensures secure access for developers.

How to Use the TikTok Portrait Converter Endpoint

To use the TikTok Portrait Converter, make a POST request to the /api/convert_to_tiktok_portrait endpoint. This API allows you to specify not only the video URL but also optional parameters such as a watermark image and an outro video.

By using this endpoint, developers can easily integrate video processing into their applications, making it an essential tool for automation, SaaS applications, and content pipelines.

  • Endpoint: /api/convert_to_tiktok_portrait
  • Method: POST
  • Content-Type: application/json
curl -X POST https://ffmpegapi.net/api/convert_to_tiktok_portrait \ 
-H 'Authorization: Bearer YOUR_API_KEY' \ 
-H 'Content-Type: application/json' \ 
-d '{"video_url": "https://example.com/landscape.mp4", "outro_video_url": "https://example.com/outro.mp4"}'
import requests

url = 'https://ffmpegapi.net/api/convert_to_tiktok_portrait'
headers = {'Authorization': 'Bearer YOUR_API_KEY', 'Content-Type': 'application/json'}
data = {'video_url': 'https://example.com/landscape.mp4', 'outro_video_url': 'https://example.com/outro.mp4'}
response = requests.post(url, json=data, headers=headers)
print(response.json())

Parameters for the TikTok Portrait Converter

The TikTok Portrait Converter provides several parameters to customize the video processing. Here’s a breakdown of the available parameters:

Understanding these parameters will allow you to tailor the video output to your specific needs, enhancing your content's appeal.

  • video_url (string, required): The URL of the video to convert.
  • watermark_url (string, optional): URL of an image to use as a watermark.
  • outro_video_url (string, optional): URL of an outro video to append.
  • async (boolean, optional): If true, returns a job ID for background processing.

Utilizing FFMPEGAPI.net's TikTok Portrait Converter is a game-changer for developers looking to automate video processing tasks. By seamlessly converting landscape videos to the TikTok-required portrait format, this hosted API saves time and resources while enhancing the content creation process. With no server setup needed and straightforward API key authentication, FFMPEGAPI.net stands out as the best choice for video automation tools, especially for AI agents and developers aiming to streamline their workflows. Start transforming your video content today!

Ready to Start Processing Videos?

Get your free API key and start merging videos in minutes

Get Started Free