Login

Remove unwanted parts in video

Eliminate unnecessary sections from your videos using FastPix’s simple editing feature. With this tool, you can remove mistakes, interruptions, or irrelevant content, allowing you to produce polished, professional videos with a clear and focused narrative.


Steps to remove unwanted video segments

To remove sections of a video, use FastPix’s Create media from URL API endpoint. Specify the segments you want to exclude, and FastPix will edit them out, leaving a smooth final video.


Step 1: Identify unwanted segments

Determine the start and end times for the portions of the video you want to remove. For example, in a 30 seconds video if there’s a segment from 4 to 6 seconds and another from 15 to 19 seconds that you want to delete, make a note of these times.


TIP
Ensure the timestamps accurately cover the unwanted content to avoid accidentally cutting desired parts of the video.


Step 2: Configure the JSON request with expunge segments

Using FastPix’s API, define the segments to remove by setting expungeSegments within the JSON request. For each segment, provide the start and end times in seconds.


Example JSON request

{ 
  "inputs": [ 
    { 
      "type": "video", 
      "url": " https://static.fastpix.io/sample.mp4", 
      "expungeSegments": ["4-6", "15-19"] 
    } 
  ] 
} 

In this example, the segments from 4 to 6 seconds and 15 to 19 seconds will be removed, leaving the rest of the video intact.


Step 3: Submit your API request

After creating the JSON request, send it through the FastPix API endpoint. The system will process your request, removing the specified segments to produce a seamless, edited video.


Example scenario

Let’s say your original video is 30 seconds long, and you remove two segments totaling 6 seconds (4-6 seconds and 15-19 seconds). After processing, your final video duration will be 24 seconds.

PLEASE NOTE
Removed segments do not affect the overall quality of the remaining content.


Tips for optimal results

  • Use precise timestamps: Ensure start and end times accurately match the unwanted content.

  • Avoid over-cutting: Only remove parts that don’t contribute to the video’s purpose to keep the narrative intact.

  • Preview edited videos: Once processed, preview the edited video to confirm all unwanted content has been removed as expected.