Back to Blog

Automate Video Editing with FFMPEGAPI.net: TikTok Portrait Converter

June 2026 FFMPEG API Team

In today's fast-paced digital world, content creators need tools that simplify and automate video editing processes. FFMPEGAPI.net offers a robust hosted REST API for FFmpeg-powered video and audio processing that eliminates the need for server setups and FFmpeg infrastructure management. This article will guide you through the TikTok Portrait Converter API endpoint, showing you how to easily convert your videos into TikTok's popular portrait format.

What is the TikTok Portrait Converter?

The TikTok Portrait Converter is a powerful API endpoint offered by FFMPEGAPI.net designed to convert videos into a full-bleed 9:16 TikTok-style portrait format. It simplifies the process of cropping and scaling videos to the 1080x1920 resolution that is ideal for TikTok, allowing you to focus on creating engaging content without worrying about the technicalities of video formatting.

  • Crops and scales your source video to TikTok's preferred portrait size.
  • Optional features include adding a watermark and appending an outro video.
  • Fast and efficient processing through a hosted API.

How to Use the TikTok Portrait Converter API

To use the TikTok Portrait Converter endpoint, you need to make a POST request to /api/convert_to_tiktok_portrait with the required parameters. The API accepts JSON content type and provides an efficient way to process videos without managing any backend infrastructure.

  • Endpoint: /api/convert_to_tiktok_portrait
  • Method: POST
  • Content-Type: application/json
curl -X POST https://www.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://www.ffmpegapi.net/api/convert_to_tiktok_portrait'
headers = {'Authorization': 'Bearer YOUR_API_KEY', 'Content-Type': 'application/json'}

payload = {
    'video_url': 'https://example.com/landscape.mp4',
    'outro_video_url': 'https://example.com/outro.mp4'
}

response = requests.post(url, headers=headers, json=payload)
print(response.json())

Understanding the API Parameters

The TikTok Portrait Converter requires specific parameters to function correctly. Here's a breakdown of the parameters you can use:

  • video_url (string, required): The URL of the video you want to convert.
  • watermark_url (string, optional): An optional URL for a watermark image to be added.
  • outro_video_url (string, optional): An optional outro video URL to append at the end of the main video.
  • async (boolean, optional): If set to true, the API will return a job_id immediately, processing the video in the background.

FFMPEGAPI.net offers a seamless solution for developers looking to automate video editing tasks with its TikTok Portrait Converter. By leveraging this hosted REST API, you can easily convert, scale, and enhance your videos without the complexities of managing servers or FFmpeg installations. Start streamlining your video processing workflow today with FFMPEGAPI.net and focus more on creating amazing content.

Ready to Start Processing Videos?

Get your free API key and start merging videos in minutes

Get Started Free