From patchwork Tue Jun 14 04:36:14 2005 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jani Frilander X-Patchwork-Id: 11914 Received: from fep16.inet.fi ([194.251.242.241]) by www.linuxtv.org with esmtp (Exim 4.34) id 1Di39S-0005tC-3f for vdr@linuxtv.org; Tue, 14 Jun 2005 06:35:50 +0200 Received: from [192.168.1.100] ([80.221.242.15]) by fep16.inet.fi with ESMTP id <20050614043546.JWWA2488.fep16.inet.fi@[192.168.1.100]> for ; Tue, 14 Jun 2005 07:35:46 +0300 Message-ID: <42AE5EBE.6050105@quicknet.inet.fi> Date: Tue, 14 Jun 2005 07:36:14 +0300 From: Jani Frilander User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.8) Gecko/20050513 Fedora/1.7.8-1.3.1 X-Accept-Language: fi, en-us, en MIME-Version: 1.0 To: vdr@linuxtv.org Subject: [vdr] Problems with vdr-burn and a solution X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Klaus Schmidinger's VDR List-Id: Klaus Schmidinger's VDR List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Jun 2005 04:35:50 -0000 Status: O X-Status: X-Keywords: X-UID: 3027 Hello everybody. I had a problem with burning dvd's from my recordings on my system. The system is a FC3 based, and VDR and DVB packages are installed from cachalot repository. Some version information of conversion software: mjpegtools-1.6.3-0.lvn.0.1.rc1 y4mscaler-0.6.2-0.lvn.1 ImageMagick-6.2.2.0-2.fc3 vdr-burn-0.0.6g-0.6.pre3 The problem occured when the burn script started making menu, failing the mpeg2enc-command. I managed to burn DVD's changin one (actually two lines) line in the script. Here is the patch: mplex -f 8 -vbr -v 1 -o /dev/stdout "$2/menu-bg-$3.m2v" "$4/menu-silence.mp2" | Hope this helps. Cheers, Jani Frilander --- /usr/lib/vdr/bin/vdrburn.sh.orig 2005-06-13 22:54:02.000000000 +0300 +++ /usr/lib/vdr/bin/vdrburn.sh 2005-06-13 22:54:38.000000000 +0300 @@ -85,14 +85,14 @@ MKMENU) if [ "$USE_TCMPLEX" == "yes" ]; then convert "$2/menu-bg-$3.png" pnm:- | - ppmtoy4m -n 1 -F25:1 -A 59:54 -I t -L -r -v 0 | + ppmtoy4m -n 1 -F25:1 -A 59:54 -I t -L -r -v 0 -S 420mpeg2 | y4mscaler -O chromass=420_MPEG2 | mpeg2enc -q 2 -a 2 -n p -f 8 -v 0 -o "$2/menu-bg-$3.m2v" && $TCMPLEX -i "$2/menu-bg-$3.m2v" -p "$4/menu-silence.mp2" -m d -o /dev/stdout | spumux -v 2 "$2/menu-$3.xml" > "$2/menu-bg-$3.mpg" else convert "$2/menu-bg-$3.png" pnm:- | - ppmtoy4m -n 1 -F25:1 -A 59:54 -I t -L -r -v 0 | + ppmtoy4m -n 1 -F25:1 -A 59:54 -I t -L -r -v 0 -S 420mpeg2 | y4mscaler -O chromass=420_MPEG2 | mpeg2enc -q 2 -a 2 -n p -f 8 -v 0 -o "$2/menu-bg-$3.m2v" &&