diff options
| author | Britney Fransen <brfransen@gmail.com> | 2013-01-03 17:16:24 (GMT) | 
|---|---|---|
| committer | Britney Fransen <brfransen@gmail.com> | 2013-01-03 17:16:24 (GMT) | 
| commit | c45cbc5cb9ac370b049c5c016d651b07b07c6ef9 (patch) | |
| tree | 4ac27e505929ba80bf634dbec303c8e615f2f865 | |
| parent | 6927c8defd4a95a61a90373f0babc5f376aa5763 (diff) | |
| download | linhes_pkgbuild-R7-testing.zip linhes_pkgbuild-R7-testing.tar.gz linhes_pkgbuild-R7-testing.tar.bz2 | |
linhes-scripts: myth2mp3, myth2x264, myth2xvid: use mythutil to get cutlistR7-testing
In mythtv .25 mythcommflag --getcutlist is depreciated
| -rw-r--r-- | abs/core/linhes-scripts/PKGBUILD | 8 | ||||
| -rwxr-xr-x | abs/core/linhes-scripts/myth2mp3 | 4 | ||||
| -rwxr-xr-x | abs/core/linhes-scripts/myth2x264 | 5 | ||||
| -rwxr-xr-x | abs/core/linhes-scripts/myth2xvid | 7 | 
4 files changed, 13 insertions, 11 deletions
| diff --git a/abs/core/linhes-scripts/PKGBUILD b/abs/core/linhes-scripts/PKGBUILD index 1dfe1ed..942893a 100644 --- a/abs/core/linhes-scripts/PKGBUILD +++ b/abs/core/linhes-scripts/PKGBUILD @@ -3,7 +3,7 @@  pkgname=linhes-scripts  pkgver=7 -pkgrel=51 +pkgrel=52  pkgdesc="Various scripts that help to make LinHES, LinHES."  arch=('i686' 'x86_64')  license=('GPL2') @@ -68,17 +68,17 @@ build() {    mkdir -p ${pkgdir}/etc/logrotate.d/    cp pause_mythcommflag ${pkgdir}/etc/logrotate.d/  } -md5sums=('f56985b2d602e11dc1e10d3e7848b2a5' +md5sums=('47a66238d95259d75c9c5cbcbb6da19f'           '10ad1a4da669adccd01e0be6e5e4a3ed'           '9ae2cd7a0c42d57ad8b5f515d7d60196'           '1274bad3fb7296f00acd2d44804bad14'           '47225fa9b6c953d56f6ede84d921a300'           '6b6e7d34a4bda6d608d150039adefd07' -         'f8df7665903ddf822f5148bc8a074e4a' +         '4a1fda884dcd7d65fb2690fbdbd92a83'           '18263972b6326e140bbef0bb7dfa2da9'           '410795ef9039e4c6c0484e706ecfd567'           'ad98d51e79f83df7c03f828dbeaea7f4' -         'ac2a4a6b4100f4d7bfb9ecd9356c8c6e' +         '3b1c44a0818b35b6939c3cb2b723ce9e'           'd2b475821f902c5e081e7da43a35e6ac'           '95c092f67036a361ef7a57436f44332e'           '92950f0ffb1faf1ed64c6be2b8fbc3f6' diff --git a/abs/core/linhes-scripts/myth2mp3 b/abs/core/linhes-scripts/myth2mp3 index 5ce72c1..69d5d3f 100755 --- a/abs/core/linhes-scripts/myth2mp3 +++ b/abs/core/linhes-scripts/myth2mp3 @@ -1,6 +1,6 @@  #!/bin/sh  # convert recordings to as mp3 audio only -# version 1.1.2 +# version 1.1.3  # usage:  # first parameter must be %DIR%/%FILE% of the recording @@ -37,7 +37,7 @@ beforetime="$(date +%s)"  # check if using cutlist  if [ $USECUTLIST = Y ];then -    MYTHCOMMFRAMES=`mythcommflag --getcutlist -f "$FFINPUTFILE" | grep 'Cutlist:' | cut -d \  -f 2` +    MYTHCOMMFRAMES=`mythutil --getcutlist --chanid "$3" --starttime "$4" | grep 'Cutlist:' | cut -d \  -f 2`      if [ -n "$MYTHCOMMFRAMES" ]; then          echo "Extracting Cutlist..." >> $LOGFILE          /usr/bin/nice -n19 /usr/bin/mythtranscode --chanid "$3" --starttime "$4" --outfile "$TMPCUTFILE" --mpeg2 --honorcutlist diff --git a/abs/core/linhes-scripts/myth2x264 b/abs/core/linhes-scripts/myth2x264 index 014fcbe..4c234d5 100755 --- a/abs/core/linhes-scripts/myth2x264 +++ b/abs/core/linhes-scripts/myth2x264 @@ -1,6 +1,7 @@  #!/bin/sh  # convert recording to x264 encoded avi -# version 0.6 +# version 0.7 +# consider using myth2mkv instead of this script  # usage:  # first parameter must be %DIR%/%FILE% of the recording @@ -154,7 +155,7 @@ check_myth_jobcmds  # check if using cutlist  if [ $USECUTLIST = Y ]; then -    MYTHCOMMFRAMES=`mythcommflag --getcutlist -f $MENINPUTFILE | grep 'Cutlist:' | cut -d \  -f 2` +    MYTHCOMMFRAMES=`mythutil --getcutlist --chanid "$3" --starttime "$4" | grep 'Cutlist:' | cut -d \  -f 2`      if [ -n "$MYTHCOMMFRAMES" ]; then          echo "Extracting Cutlist..." >> $LOGFILE          update_comment "Extracting Cutlist" diff --git a/abs/core/linhes-scripts/myth2xvid b/abs/core/linhes-scripts/myth2xvid index d0fcb42..033026d 100755 --- a/abs/core/linhes-scripts/myth2xvid +++ b/abs/core/linhes-scripts/myth2xvid @@ -1,6 +1,7 @@  #!/bin/sh  # convert recording to xvid encoded avi -# version 1.3 +# version 1.4 +# consider using myth2mkv instead of this script  # usage:  # first parameter must be %DIR%/%FILE% of the recording @@ -154,7 +155,7 @@ check_myth_jobcmds  # check if using cutlist  if [ $USECUTLIST = Y ]; then -    MYTHCOMMFRAMES=`mythcommflag --getcutlist -f $MENINPUTFILE | grep 'Cutlist:' | cut -d \  -f 2` +    MYTHCOMMFRAMES=`mythutil --getcutlist --chanid "$3" --starttime "$4" | grep 'Cutlist:' | cut -d \  -f 2`      if [ -n "$MYTHCOMMFRAMES" ]; then          echo "Extracting Cutlist..." >> $LOGFILE          update_comment "Extracting Cutlist" @@ -220,4 +221,4 @@ else      echo "ERROR: $ERROR" >> $LOGFILE  fi -clean_up_files
\ No newline at end of file +clean_up_files | 
