EvilZone
Community => General discussion => : $Clone September 12, 2015, 04:42:09 AM
-
hey .....what are some of the linux video softwares that can merge two videos together into 1 and is there a tut to do this?
-
Like every single video editing software?
Or what do you mean by merging? For me that is e.g. playing one video after the other as one clip.
-
You may want to check ffmpeg : https://ffmpeg.org/ffmpeg.html
It can be very useful, when doing stuff with video/audio files.
Here is somethig that seems helpful for that merging: http://stackoverflow.com/questions/7333232/concatenate-two-mp4-files-using-ffmpeg
-
Review:
http://www.webupd8.org/2009/05/join-and-split-files-including-video-in.html
http://askubuntu.com/questions/161226/how-to-join-video-files-from-terminal
https://wiki.videolan.org/How_to_Merge_and_Transcode_Multiple_Videos/
You can use mencoder to concatenate multiple video files to one file:
mencoder -oac copy -ovc copy -idx -o output.avi video1.avi video2.avi video3.avi
-
Deque this is what i mean https://www.youtube.com/watch?v=PdyACzj1qz0 (https://www.youtube.com/watch?v=PdyACzj1qz0) but for linux
Thnx
-
So you want it to be graphical tool or why solutions above didn't work? I'm no video editor, but ffmpeg and mencoder are said(at least by some people) to be THE video editing tools for Linux. Even I have been able to do some neat stuff with ffmpeg.
But if gui is the thing here, maybe Openshot is what you are looking for:
https://youtube.com/watch?v=T9DyZtthr8c (https://youtube.com/watch?v=T9DyZtthr8c)
Some crappy video I quickly found about joining two video files with openshot.
-
Maybe this is what you are looking for:
http://fixounet.free.fr/avidemux/
http://forum.videohelp.com/threads/337246-how-to-join-files-in-Avidemux
-
http://m.alternativeto.net/software/virtualdub/?platform=linux
Codecs are going to be your biggest issue on nix, but alternatives for virtualdub mod should work. Just make sure you're doing a straight through and not re-encoding the file(s)
-
thnx guys 4 the advice