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/myth2mp3 | |
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
Diffstat (limited to 'abs/core/linhes-scripts/myth2mp3')
-rwxr-xr-x | abs/core/linhes-scripts/myth2mp3 | 4 |
1 files changed, 2 insertions, 2 deletions
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 |