vdrconvert-vdr-1.7.0+

Message ID 1245959417.2925.6.camel@localhost.localdomain
State New
Headers

Commit Message

Martin Gansser June 25, 2009, 7:50 p.m. UTC
  I have also tested your patch with vdrconvert-0.2.0 but with a few
Extensions in vdr2dvd.sh.

The final error message in vdr2dvd.log says, that no audio traces
exists.


> Am Mittwoch, den 24.06.2009, 17:41 -0400 schrieb hu_emulator:
> > I edited your changes and when I run vdrconvert with the new vdr2dvd.sh it 
> > errors out. Could you post or make available your vdr2dvd.sh?
> 
> What kind of error do you get?
  

Comments

Falk Spitzberg June 26, 2009, 7:43 a.m. UTC | #1
Am Donnerstag, den 25.06.2009, 21:50 +0200 schrieb Martin Gansser:
> I have also tested your patch with vdrconvert-0.2.0 but with a few
> Extensions in vdr2dvd.sh.
> 
> The final error message in vdr2dvd.log says, that no audio traces
> exists.


Oops, i compared my hacked version with the wrong file. 

Here a diff against the original vdr2dvd.sh from vdrconvert-0.2.1

My hack assumes that you are using ProjectX.

Sorry for the confusion!

Falk


> 
> 
> > Am Mittwoch, den 24.06.2009, 17:41 -0400 schrieb hu_emulator:
> > > I edited your changes and when I run vdrconvert with the new vdr2dvd.sh it 
> > > errors out. Could you post or make available your vdr2dvd.sh?
> > 
> > What kind of error do you get?
> _______________________________________________
> vdr mailing list
> vdr@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
  

Patch

--- cap.sh.orig	2009-06-25 21:12:21.000000000 +0200
+++ cap.sh	2009-06-25 21:12:42.000000000 +0200
@@ -22,7 +22,7 @@ 
             for i in `cat $SPOOLFILE`
             do
                 let res=0
-                for k in `ls -Ls ${i}/[0-9]*.vdr|awk '{print $1'}`
+                for k in `ls -Ls ${i}/[0-9]*.ts|awk '{print $1'}`
                 do 
                     res=`expr $res + $k`
                 done
@@ -39,7 +39,7 @@ 
         for i in `cat $SPOOLFILE|tail -n 1`
         do
            let res=0
-           for k in `ls -Ls ${i}/[0-9]*.vdr|awk '{print $1'}`
+           for k in `ls -Ls ${i}/[0-9]*.ts|awk '{print $1'}`
            do 
                res=`expr $res + $k`
            done