What to use to quickly cut Audio/Video
If simply require to chop Audio/Video from a longer track, what can I make use of? I attempted OpenShot, yet I locate the export video clip slow-moving, probably its compling all the "layers" right into a new flick? Probably I simply require a straightforward "crop" device for audio/video will surfice?
For reducing, combining, scaling etc one can make use of
I'm making use of ffmpeg CLI user interface for that. It is really simple and also rapid:
-
to reduce video clip:
ffmpeg -i InputFile -vcodec copy -acodec copy -ss 00:00:00 -t 00:01:32 OutPutFile
-
to reduce sound:
ffmpeg -i InputFile -vn -acodec copy -ss 00:00:00 -t 00:01:32 OutPutFile
In both of these -ss
is the start factor, while -t
is the period of the item.
You can compute period as an example making use of LibreOffice Calc or python is dateutil
plan, or you can make use of the -to
alternative which approves completion time straight.
kdenlive is (in my experience) the most convenient software program which will certainly permit you to execute that job in a couple of actions and also without troubles. Nevertheless, the OpenShot Video Editor task is additionally valuable yet it yet requires great deals of effort to get closer to the kdenlive.
Below are a screenshot of the kdenlive and also openshot specifically:
Good good luck!
- Avidemux (From PPA) - http://avidemux.sourceforge.net/
- OpenShot (From PPA) - https://launchpad.net/openshot/ http://www.openshot.org/ppa/
- Pitivi (From PPA) - http://www.pitivi.org/?go=download
I was mosting likely to state commands like ffmpeg or avconv (The new one) which can OBVIOUSLY divide documents right into teams. As an example:
FFMPEG
ffmpeg -ss 00:00:00 -t 00:30:00 -i input.avi -vcodec copy -acodec copy output1.avi
ffmpeg -ss 00:30:00 -t 00:30:00 -i input.avi -vcodec copy -acodec copy output2.avi
ffmpeg -ss 01:00:00 -t 00:30:00 -i input.avi -vcodec copy -acodec copy output3.avi
Or
ffmpeg -ss 0 -t 100 -i source.m4v -vcodec copy -acodec copy part1.m4v
ffmpeg -ss 100 -t 100 -i source.m4v -vcodec copy -acodec copy part2.m4v
ffmpeg -ss 200 -t 100 -i source.m4v -vcodec copy -acodec copy part3.m4v
ffmpeg -ss 300 -t 100 -i source.m4v -vcodec copy -acodec copy part4.m4v
AVCONV
avconv -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi
avconv -i input.avi -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi
avconv -i input.avi -vcodec copy -acodec copy -ss 01:00:00 -t 00:30:00 output3.avi
Or
avconv -ss 0 -i source.m4v -t 100 -vcodec copy -acodec copy part1.m4v
avconv -ss 100 -i source.m4v -t 100 -vcodec copy -acodec copy part2.m4v
avconv -ss 200 -i source.m4v -t 100 -vcodec copy -acodec copy part3.m4v
avconv -ss 300 -i source.m4v -t 100 -vcodec copy -acodec copy part4.m4v
Or do some manuscript like below: http://icephoenix.us/notes-for-myself/auto-splitting-video-file-in-equal-chunks-with-ffmpeg-and-python/
In PiTiVi 0.13.5 (Ubuntu 10.10) I had the ability to merely select a clip and also most likely to Timeline > Split (or simply press "S").
I make use of Kdenlive, yet I would not be stunned if you can also cut video clip in this manner in PiTiVi :
- Create a new task with your complete lecture.
- Set your start and also end factors for the first "manageable chunk" in the clip display.
- Drag from the video clip in the clip display to your timeline. It will certainly be simply the portion you picked.
- Set new start and also end factors in the clip display and also repeat as required.
I such as kdenlive for ending up too or clipping out tiny portions ...yet if he intends to divide a LARGE lecture right into smaller sized items he can attempt :
ffmpeg -i input.mpg -ss 00:00:10 -t 00:00:30 out1.mpg -ss 00:00:35 -t 00:00:30 out2.mpg
conversation of the command is below : http://ubuntuforums.org/showthread.php?t=480343
OpenShot Video Editor looks encouraging. Have you examined it?. Check out the attributes : http://www.openshot.org/features/
The main installment method is using AppImage readily available at https://www.openshot.org/download/
To install it simply open an incurable and also run the adhering to commands :
sudo add-apt-repository ppa:jonoomph/openshot-edge
sudo apt-get update
sudo apt-get install openshot openshot-doc
Just offer a shot.
Related questions