summaryrefslogtreecommitdiffstats
path: root/abs/extra/mythappletrailers/gen_trailer_menu.sh
blob: 43b2fae99c6639f0d9c121ddd360d270c718be23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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 &amp;&amp; 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