Star Hype News.

Premium celebrity moments with standout appeal.

news

Application for trimming a video mp4 of ubuntu 16.04 LTS

By Sophia Hammond

I would like to trim a video I have in mp4 format and I can't seem to find the right tool to do this. My laptop has Ubuntu 16.04 LTS.

3

5 Answers

You need to install ffmpeg.

To install the ffmpeg sudo apt-get install ffmpeg to copy specific short durationg from the video file.

Sample :-

ffmpeg -i original.mp4 -ss 00:03:20 -c copy -t 00:00:30 output.mp4

-i -->Input file. The file name of the original video clip.

-ss -->Copy the new video from the original video started after 3 minute and 20 seconds.

-t -->Duration of the new video clip,(ex:- 30 seconds.)

5

Vidcutter is a simple tool that can trim your videos. Install with

sudo add-apt-repository ppa:ozmartian/apps
sudo apt update
sudo apt install vidcutter

Lauch vidcutter and select a file with the open button:

enter image description here

use the vertical bar to scroll to the first part to add to the video and click

start split. Drag the bar to where you want the video to end and click end clip. Then use the save button to join your videos. There is no loss in quality in the process

1

You could checkout my project called VideoCut.

It has a very fast muxer (you can cut without recoding). Its design has been kept simple and was inspired by DVB-Cut.

It supports mp4, AVCH ,avi, webm and supports TS transportstreams

Main Screen

and can be downloaded from github.

You can use my app dmMediaConverter for this. It has an option to trim the file without reencoding it, so, it is very fast and lossless.enter image description here

Avidemux is one of open-source GUI application doesn't need to install via PPA. Quite easy to comprehend, self-explained. To install avidemux

sudo apt-get update
sudo apt-get install avidemux2.6-qt

avidemux sample

To remove it

sudo apt-get remove --autoremove avidemux2.6-qt

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy