Re: video editor

2009-02-24 Thread prad
On Tue, 24 Feb 2009 09:17:15 -0900
Mel  wrote:

> I've actually had bad experiences with mencoder.
>
well i've been successful in joining, but i think there was a
slight deterioration in quality. i likely didn't use it properly,
because i simply followed the instructions on that page i found on the
web. i'll be examining things more closely and trying different things
with it later.

-- 
In friendship,
prad

  ... with you on your journey
Towards Freedom
http://www.towardsfreedom.com (website)
Information, Inspiration, Imagination - truly a site for soaring I's
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: video editor

2009-02-24 Thread Mel
On Friday 20 February 2009 14:20:45 prad wrote:
> On Fri, 20 Feb 2009 17:36:19 +0100
>
> t-u-t  wrote:
> > there is versions of hjsplit if u ever used that in
> > windows. i've used a good and simple command line version b4 but i
> > can't remember exactly where it is in ports it maybe hjsplit or
> > lhjsplit. (google to their site).
>
> it is lxsplit, but i can't figure out how to work it.
>
> i settled on mencoder and installed it from ports since there is no pkg
> for it. it's a bit of an overkill for my present needs (which have
> been met) but it looks like something that is worth learning!

I've actually had bad experiences with mencoder. Apart from 1200 options in 
one manpage, converting from one format to another ends premature (missing 
the last few seconds).
While I loath transcode for what it's meant to do (it will always segfault on 
exit during a typical transcoding run), the avimerge/avisplit tools actually 
work well and are easy to use.
There are similar tools for Ogg media in multimedia/ogmtools.

-- 
Mel

Problem with today's modular software: they start with the modules
and never get to the software part.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: video editor

2009-02-20 Thread prad
On Fri, 20 Feb 2009 17:36:19 +0100
t-u-t  wrote:

> there is versions of hjsplit if u ever used that in 
> windows. i've used a good and simple command line version b4 but i
> can't remember exactly where it is in ports it maybe hjsplit or
> lhjsplit. (google to their site).
>
it is lxsplit, but i can't figure out how to work it.

i settled on mencoder and installed it from ports since there is no pkg
for it. it's a bit of an overkill for my present needs (which have
been met) but it looks like something that is worth learning!

thanks to everyone for your suggestions.

-- 
In friendship,
prad

  ... with you on your journey
Towards Freedom
http://www.towardsfreedom.com (website)
Information, Inspiration, Imagination - truly a site for soaring I's
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: video editor

2009-02-20 Thread Roland Smith
On Fri, Feb 20, 2009 at 02:32:43AM -0800, prad wrote:
> any recommendations for software that can join or split wmv, mpg, avi
> etc etc?

The program you found, mencoder, will work fine. E.g. Cutting one minute
from a video starting at 8:09, and converting to msmpeg video goes like
this:

  mencoder -ovc lavc -lavcopts vcodec=msmpeg4v2 -vf decimate -oac copy \
  -ss 8:09 -endpos 1:00 -o small.avi foo.flv

Another example to join several files into one H.264 encoded video with
mp3 sound:

  mencoder -ovc x264 -x264encopts nr=500:keyint=25:qp=26 \
  -vf decimate -oac mp3lame -o outfile.avi one.wmv two.wmv three.wmv

This program is very versatile, and has a lot of advanced options. But
you don't have to use them if you don't want to. Reading the manual page
carefully is advised, though.

Roland
-- 
R.F.Smith   http://www.xs4all.nl/~rsmith/
[plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)


pgpHPCE0WbOwW.pgp
Description: PGP signature


Re: video editor

2009-02-20 Thread Adam Vandemore

prad wrote:

any recommendations for software that can join or split wmv, mpg, avi
etc etc?

i came across mencoder for joining on this page 
http://mindspill.net/computing/linux-notes/how-to-join-video-files-in-linux.html

but i don't really know much about this sort of thing so i'm looking
for suggestions.
  
Some files like mpg's you can just cat together and pipe to files then 
run through ffmpeg.  Merging files of different and various types can be 
done with ffmpeg -i.  I've had occasional troubles with ffmpeg choking 
on certain files then having to turn to mencoder or vice versa.  
mencoder is more powerful than ffmpeg in general which means ffmpeg is 
easier to learn.  If you prefer more of a gui approach, avidemux2 is a 
good app.


--
Adam Vandemore
Systems Administrator
IMED Mobility
(605) 498-1610

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: video editor

2009-02-20 Thread Polytropon
On Fri, 20 Feb 2009 02:32:43 -0800, prad  wrote:
> any recommendations for software that can join or split wmv, mpg, avi
> etc etc?

I think it can be done with mplayer / (g)mencoder and avidemux2.
The advantage of them is having a GUI (if this is an advantage
to you).



-- 
Polytropon
>From Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: video editor

2009-02-20 Thread t-u-t

Brent Clark wrote:

prad wrote:

any recommendations for software that can join or split wmv, mpg, avi
etc etc?

i came across mencoder for joining on this page 
http://mindspill.net/computing/linux-notes/how-to-join-video-files-in-linux.html 


but i don't really know much about this sort of thing so i'm looking
for suggestions.

  

Hiya

This is a more Ubuntu / Debian based site, but im sure most of those 
ports are available.


http://www.goodbyemicrosoft.net/news.php?item.417.2

HTH.

Kind Regards
Brent Clark
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
"freebsd-questions-unsubscr...@freebsd.org"


if you are looking for a small app that simply splits and joins kind of 
like an archiver, there is versions of hjsplit if u ever used that in 
windows. i've used a good and simple command line version b4 but i can't 
remember exactly where it is in ports it maybe hjsplit or lhjsplit. 
(google to their site). if you have wine, i actually use the windows 
version.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: video editor

2009-02-20 Thread Brent Clark

prad wrote:

any recommendations for software that can join or split wmv, mpg, avi
etc etc?

i came across mencoder for joining on this page 
http://mindspill.net/computing/linux-notes/how-to-join-video-files-in-linux.html

but i don't really know much about this sort of thing so i'm looking
for suggestions.

  

Hiya

This is a more Ubuntu / Debian based site, but im sure most of those 
ports are available.


http://www.goodbyemicrosoft.net/news.php?item.417.2

HTH.

Kind Regards
Brent Clark
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


video editor

2009-02-20 Thread prad
any recommendations for software that can join or split wmv, mpg, avi
etc etc?

i came across mencoder for joining on this page 
http://mindspill.net/computing/linux-notes/how-to-join-video-files-in-linux.html
but i don't really know much about this sort of thing so i'm looking
for suggestions.

-- 
In friendship,
prad

  ... with you on your journey
Towards Freedom
http://www.towardsfreedom.com (website)
Information, Inspiration, Imagination - truly a site for soaring I's
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"