diff options
Diffstat (limited to 'abs/extra/mythappletrailers/gen_trailer_menu.sh')
-rw-r--r-- | abs/extra/mythappletrailers/gen_trailer_menu.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/abs/extra/mythappletrailers/gen_trailer_menu.sh b/abs/extra/mythappletrailers/gen_trailer_menu.sh new file mode 100644 index 0000000..43b2fae --- /dev/null +++ b/abs/extra/mythappletrailers/gen_trailer_menu.sh @@ -0,0 +1,29 @@ +#!/bin/bash +cp /home/mythtv/appletrailer.xml /tmp +sed -n -e 's/.*<action>\(.*\)<\/action>.*/\1/p' /tmp/appletrailer.xml > /tmp/a.log +awk < /tmp/a.log '{ print $NF }' > /tmp/b.log +sort -R /tmp/b.log > /tmp/c.log +echo "<mythmenu name=\"TRAILERS\">" > /tmp/appletrailer.2.xml +echo " <button>" >> /tmp/appletrailer.2.xml +echo " <type>VIDEO_BROWSER</type>" >> /tmp/appletrailer.2.xml +echo " <text>Play All Trailers</text>" >> /tmp/appletrailer.2.xml +echo " <action>EXEC /usr/bin/play_trailer.sh /home/mythtv/all_trailers</action>" >> /tmp/appletrailer.2.xml +echo " </button>" >> /tmp/appletrailer.2.xml +echo "" >> /tmp/appletrailer.2.xml +echo " <button>" >> /tmp/appletrailer.2.xml +echo " <type>VIDEO_BROWSER</type>" >> /tmp/appletrailer.2.xml +echo " <text>Shuffle Play Trailers</text>" >> /tmp/appletrailer.2.xml +echo " <action>EXEC /usr/bin/play_trailer.sh /home/mythtv/shuffle_trailers</action>" >> /tmp/appletrailer.2.xml +echo " </button>" >> /tmp/appletrailer.2.xml +echo "" >> /tmp/appletrailer.2.xml +echo " <button>" >> /tmp/appletrailer.2.xml +echo " <type>VIDEO_BROWSER</type>" >> /tmp/appletrailer.2.xml +echo " <text>Play Random Trailer</text>" >> /tmp/appletrailer.2.xml +echo " <action>EXEC loading.sh && mplayer -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 \$(sort -R /home/mythtv/all_trailers | tail -1)</action>" >> /tmp/appletrailer.2.xml +echo " </button>" >> /tmp/appletrailer.2.xml +echo "" >> /tmp/appletrailer.2.xml + +grep -v TRAILERS /tmp/appletrailer.xml >> /tmp/appletrailer.2.xml +mv /tmp/b.log /home/mythtv/all_trailers +mv /tmp/c.log /home/mythtv/shuffle_trailers +mv /tmp/appletrailer.2.xml /home/mythtv/appletrailer.xml |