> I was wondering if anyone has a solution to the problem I'm 
> having with 
> my HD-3000 stream?  I can view the recording fine, but when 
> it comes to 
> cutting it to MP2, I have audio problems.  Here is my output from 
> nuvexport - exporting to mpeg2 (I believe it's option 9).

> Finding the AV Offset to use with lvemux: 0 (not detected)
> Indexing the file with avidemux2
> Cutting out commercials with avidemux2
> /usr/local/bin/mpeg2cut: line 160: 13565 Aborted              

I don't have HDTV myself, but I can give you some hints about debuging
nuvexport mpegcut issues:

Unfortunately these error messages don't give any insight at what point
the process failed because all output of the failing commands is
redirected to /dev/null.

Try removing the redirects to /dev/null from mpeg2cut for the avidemux2
commands to see what's going wrong.

change
    echo Indexing the file with avidemux2
    nice -n 19 avidemux2 --index-mpeg ${FILENAME} ${FILENAME}.idx C0 \
        --audio-codec MP2 --quit 2> /dev/null > /dev/null
 
To 
    echo Indexing the file with avidemux2
    nice -n 19 avidemux2 --index-mpeg ${FILENAME} ${FILENAME}.idx C0 \
        --audio-codec MP2 --quit
 
And do the same for the actual cutting command

echo Cutting out commercials with avidemux2
nice -n 19 avidemux2 --load-workbench ${BASENAME}.cut \
    --audio-codec MP2 --save-raw-video ${BASENAME}.m2v \
    --save-raw-audio ${BASENAME}.mp2 --quit

Oh, and output from tcprobe -i yourfile.nuv wouild also be interesting.
Bye, Martin
_______________________________________________
mythtv-users mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users

Reply via email to