[mythtv-users] nuvexport or mplex?
Thomas Rokamp
crax at crax.dk
Thu Apr 15 04:55:41 EDT 2004
Hi!
I am using this script to convert .nuv files to DVD. It works good.
--------------------------
#!/bin/sh
mkfifo aud0
mkfifo vid0
mkfifo dvdmpg
mpeg2desc -a0 < $1 > aud0 &
mpeg2desc -v0 < $1 > vid0 &
mplex -f 8 -V -o dvdmpg aud0 vid0 &
dvdauthor -o $2 -f dvdmpg
dvdauthor -o $2 -T
rm aud0
rm vid0
rm dvdmpg
--------------------------
But I have a lot of unwanted video, that I would like to cut away (i.e.
commercials, time before tvshow, time after tvshow).
I have used avidemux2 to do this job, but when saving the result, it
seems to be incompatible with the script.
What format should I save in, to make it work? Or maybe use another
method?
I'm not very familiar with the cutlist-editor built into myth frontend,
and nuvexport is way too slow compared to the script.
And I like to keep it inside linux (no windows please :)
Any suggestions appreciated :)
Thanks in advance,
Thomas Rokamp
More information about the mythtv-users
mailing list