[mythtv-users] convert nuv to vob

Nick knowledgejunkie at gmail.com
Tue Aug 16 00:36:58 UTC 2005


On 8/16/05, A JM <vbtalent at gmail.com> wrote:
> I'm looking for the command line options for using the following
> script to convert a .nuv or .mpeg/.mpg file to a DVD, can any one help
> me with this?
> 
> #!/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
> 
> 
> I recall you were supposed to give it a DVD/dirrectory name to create
> and the file to create ad it would do the rest. You would have a
> burnable DVD in the end.

Looking at the script, I'd imagine there are 2 arguments: the first
being the name of the input mpg file, and the second being the name of
the output DVD file.

Nick


More information about the mythtv-users mailing list