Reply to Thread
Results 1 to 3 of 3
  1. Default nuvexport fails sometimes - SOLVED #1
    gmtl3 is offline MythTV Friend in Training
    Join Date
    Oct 2005
    Posts
    9
    MythTV Gallery
    0
    Any idea why nuvexport has a fairly high failure rate for me? I guess actually it's probably not nuvexport, but one of the programs it calls. I've hacked together the command line options for /usr/bin/mpeg2cut and it fails with the same error messages. Here's an example:
    Code:
    mpeg2cut /second/mythtv/1037_20051017105900_20051017120000.nuv /second/media/ds9..resurrection-needsEncoding.mpg 109590 "-3120 3433-10268 16604-26538 32578-46354 53145-67422 73762-91195 97249-"
    mpeg2cut v178
    Using mode Xvfb
    Filename "/second/mythtv/1037_20051017105900_20051017120000.nuv"
    OutFile "/second/media/ds9..resurrection-needsEncoding.mpg"
    Last Frame 109590
    Cutlist "-3120 3433-10268 16604-26538 32578-46354 53145-67422 73762-91195 97249-"
    Finding the AV Offset to use with lvemux: -33
    Indexing the file with avidemux2
    Cutting out commercials with avidemux2
    /usr/bin/mpeg2cut: line 162: 12963 Aborted                 nice -n 19 avidemux2 --load-workbench ${BASENAME}.cut --audio-codec MP2 --save-raw-video ${BASENAME}.m2v --save-raw-audio ${BASENAME}.mp2 --quit 2>/dev/null >/dev/null
    Remultiplexing video
    GOP timestamps will be rebuild
    ERROR: opening A/V streams (0/1)
    Cleaning up
    rm: cannot remove `1037_20051017105900_20051017120000.mp2': No such file or directory
    
    Here's lines #159 - #162 of mpeg2cut:
    Code:
    nice -n 19 avidemux2 --load-workbench ${BASENAME}.cut \
        --audio-codec MP2 --save-raw-video ${BASENAME}.m2v \
        --save-raw-audio ${BASENAME}.mp2 --quit 2> /dev/null > /dev/null
    
    Any ideas?
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
    Reply With Quote  

  2. Default #2
    gmtl3 is offline MythTV Friend in Training
    Join Date
    Oct 2005
    Posts
    9
    MythTV Gallery
    0
    I found an email thread about it here http://mythtv.org/pipermail/mythtv-u...ay/090437.html

    One thing I've noticed that I don't know if it's significant or not. I input the last frame as 107835 and my cut list ends with "93750-". My .cut file ends with
    Code:
    Start : 93750
    Size : 14086
    Ref : 0
    
    If you add 93750 and 14086 you get 107836 which is 1 more than 107835 (the last frame). Is this significant?

    Just peering into /usr/bin/mpeg2cut, line 139 of version 178 is
    Code:
    END=${LASTFRAME}
    
    Then line 141 is
    Code:
    LENGTH=$((${END} - ${START} + 1))
    
    This appears to be what produces this "end + 1" problem. However, changing line 139 to
    Code:
    END=$(( ${LASTFRAME} - 1 ))
    
    ... didn't really seem to help. It still had start 93750 and size 14086.


    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
    Reply With Quote  

  3. Default #3
    gmtl3 is offline MythTV Friend in Training
    Join Date
    Oct 2005
    Posts
    9
    MythTV Gallery
    0
    I stand corrected. Once I edited /usr/bin/mpeg2cut on the same machine I was executing it on it did appear to fix this problem.


    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
    Reply With Quote  

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Replies: 2
    Last Post: 10-31-2008, 12:30 PM
  2. Replies: 0
    Last Post: 03-30-2008, 05:07 PM
  3. SOLVED: SVN 14967 PROBLEM. setup fails, mythcoverg no tables
    By dishbert in forum Installation Issues
    Replies: 0
    Last Post: 11-29-2007, 04:19 PM
  4. Nuvexport Fails Before Second Pass
    By tbryant87 in forum General
    Replies: 0
    Last Post: 10-20-2006, 04:47 AM
  5. nuvexport SOLVED
    By jafenske in forum General
    Replies: 3
    Last Post: 08-06-2006, 12:50 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts