Page 1 of 1

Looking for simple video editor

Posted: Tue 21 Aug 2012, 14:20
by oliver69
Hi All,

i have a pvr to record tv programs - but it also records the ads during the movies. Now i looking for a simple! videoeditor to remove the ads from the videofile - no other options needed. pup-file preferred.

Posted: Wed 22 Aug 2012, 13:46
by chrome307
What video format is used by the PVR?

VOB
Mpeg2.TS
Mpeg2.PS
etc

Posted: Wed 22 Aug 2012, 15:44
by stu91
Perhaps a simpler solution than video editing is to use an mplayer .edl file to skip sections of the video you do not wish to watch:
http://www.mplayerhq.hu/DOCS/HTML/en/edl.html

Posted: Wed 22 Aug 2012, 16:48
by oliver69
stu91 wrote:Perhaps a simpler solution than video editing is to use an mplayer .edl file to skip sections of the video you do not wish to watch:
http://www.mplayerhq.hu/DOCS/HTML/en/edl.html
no ... i wan't to use other players too.

Posted: Wed 22 Aug 2012, 16:49
by oliver69
chrome307 wrote:What video format is used by the PVR?

VOB
Mpeg2.TS
Mpeg2.PS
etc
the video is mpeg2 and the audio mp2

Posted: Wed 22 Aug 2012, 17:33
by chrome307
You could try Cinelerra

I found this on the forum v2.1 ( latest v2.2 stable) , not sure which build of Puppy your using:

http://www.murga-linux.com/puppy/viewtopic.php?t=46346

If that fails to do the job, you could download it on a livecd from here:

http://cinelerra.org/getting_cinelerra.php

Or try Puppy Studio:

http://murga-linux.com/puppy/viewtopic.php?t=72402

Posted: Wed 22 Aug 2012, 17:50
by stu91
ffmpeg command line could probably do it - don't know about other gui video editors but maybe some of them require you re transcode the file after editing ( not good on low spec / slow systems ) worth checking out Avidemux to see if it supports the formats of your video files as you can edit / cut / join them with out re transcoding.

Posted: Wed 22 Aug 2012, 17:58
by chrome307
Doh!

AviDemux would be perfect :)

If you need addition codec info on your files, try MediaInfo:

http://murga-linux.com/puppy/viewtopic.php?t=76019

A video editor for Linux community users

Posted: Wed 22 Aug 2012, 18:54
by gcmartin
I have use this in another distro in the past. We do NOT have a PiTiVi.PET in this community though. But, its an open-source package for Linux community. We might find it extremely useful as we march into the future.

PiTiVi - a free and open-source video editor for Linux

Here to help

Posted: Wed 22 Aug 2012, 21:52
by oliver69
stu91 wrote:ffmpeg command line could probably do it - don't know about other gui video editors but maybe some of them require you re transcode the file after editing ( not good on low spec / slow systems ) worth checking out Avidemux to see if it supports the formats of your video files as you can edit / cut / join them with out re transcoding.
i use ffmpeg ... could you describe how i could split the file in single parts which exclude the ads? i think i need timestamps etc. .... from the single files i can create a new movie file with cat.

Posted: Thu 23 Aug 2012, 03:39
by stu91
http://linux.die.net/man/1/ffmpeg

-i = input video file
-vcodec copy -acodec copy = Do not re-enecode / transcode
-ss = Seek to given time position
-t = Duration

For instance this will cut first 15 minutes of file.

Code: Select all

ffmpeg -i input_file.mp4 -vcodec copy -acodec copy -ss 00:00:00 -t 00:15:00  output_file1.mp4
will cut 15 minutes of file from 18 minutes in.

Code: Select all

ffmpeg -i input_file.mp4 -vcodec copy -acodec copy -ss 00:18:00 -t 00:15:00  output_file2.mp4

Posted: Fri 24 Aug 2012, 22:39
by sc0ttman
Avidemux, GTK version (no Qt required): http://www.murga-linux.com/puppy/viewto ... 502#591502

Posted: Sat 25 Aug 2012, 17:35
by oliver69
using avidemux now - it's perfect ;-)

AVIdemux

Posted: Sat 25 Aug 2012, 17:45
by gcmartin
Have not ever used AVIdemux. I do have a need to combine 2 camera videos into a single video. And, I also would like to clip segments of my family videos and piece together into a single video.

Quesiton
  • Does anything discussed in this thread lend itself to that function?
Thanks, in advance, for any information

Posted: Sat 25 Aug 2012, 19:49
by chrome307
AviDemux will do this, if the files are in the same format then it's inbuilt wizard will recognise this and invoke 'Smart Copy' for joining files together; no need to encode as it will do a direct stream copy.

Posted: Sun 26 Aug 2012, 12:48
by oliver69
I have a problem now :-(
I have a wedding video produced by a professional company with a strange audio stream (they offer a converting service - but at a very high price).
avidemux tells me that i sees more than one audiostream and that i should select one, but in the selection window is only one selection (AC3 - 6 channels). ffmpeg shows me two streams, an ac3 5.1 channels and a ac3 0 channels. How can i convert it to a single mp2-stream? I think it's an mono signal only - no stereo.

audio mono with ffconvert

Posted: Sun 28 Feb 2016, 03:11
by Pelo
audio mono with ffconvert will trangorm several tracks in only one.