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 /abs/core/linhes-scripts/myth2xvid | |
parent | 6927c8defd4a95a61a90373f0babc5f376aa5763 (diff) | |
download | linhes_pkgbuild-c45cbc5cb9ac370b049c5c016d651b07b07c6ef9.zip linhes_pkgbuild-c45cbc5cb9ac370b049c5c016d651b07b07c6ef9.tar.gz linhes_pkgbuild-c45cbc5cb9ac370b049c5c016d651b07b07c6ef9.tar.bz2 |
linhes-scripts: myth2mp3, myth2x264, myth2xvid: use mythutil to get cutlistR7-testing
In mythtv .25 mythcommflag --getcutlist is depreciated
Diffstat (limited to 'abs/core/linhes-scripts/myth2xvid')
-rwxr-xr-x | abs/core/linhes-scripts/myth2xvid | 7 |
1 files changed, 4 insertions, 3 deletions
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 |