summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--abs/core/gdb/PKGBUILD6
-rw-r--r--abs/core/gdb/__changelog2
-rw-r--r--abs/core/python_modules/python-beautifulsoup4/PKGBUILD51
-rw-r--r--abs/core/python_modules/python-beautifulsoup4/__changelog2
-rw-r--r--abs/core/python_modules/python-distribute/PKGBUILD54
-rw-r--r--abs/core/python_modules/python-distribute/__changelog2
-rw-r--r--abs/core/python_modules/python-distribute/distribute-python2_and_3.patch36
-rw-r--r--abs/core/python_modules/python-libconcord/PKGBUILD (renamed from abs/extra/python-libconcord/PKGBUILD)0
-rw-r--r--abs/extra/mythappletrailers/PKGBUILD20
-rw-r--r--abs/extra/mythappletrailers/all_trailers134
-rw-r--r--abs/extra/mythappletrailers/appletrailer.xml622
-rw-r--r--abs/extra/mythappletrailers/gen_trailer_menu.sh29
-rw-r--r--abs/extra/mythappletrailers/play_trailer.sh8
-rw-r--r--abs/extra/mythappletrailers/shuffle_trailers134
-rwxr-xr-xabs/extra/mythappletrailers/trailers2
-rw-r--r--abs/extra/pyxis/PKGBUILD27
-rw-r--r--abs/extra/pyxis/__changelog2
-rw-r--r--abs/extra/pyxis/python2.patch90
18 files changed, 1012 insertions, 209 deletions
diff --git a/abs/core/gdb/PKGBUILD b/abs/core/gdb/PKGBUILD
index d96cb93..10f751d 100644
--- a/abs/core/gdb/PKGBUILD
+++ b/abs/core/gdb/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=gdb
pkgver=7.2
-pkgrel=2
+pkgrel=3
pkgdesc="The GNU Debugger"
arch=('i686' 'x86_64')
url="http://www.gnu.org/software/gdb/"
@@ -14,8 +14,7 @@ makedepends=('texinfo')
backup=('etc/gdb/gdbinit')
options=('!libtool')
install=gdb.install
-source=(http://ftp.gnu.org/gnu/gdb/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('64260e6c56979ee750a01055f16091a5')
+source=(http://ftp.gnu.org/gnu/gdb/${pkgname}-${pkgver}a.tar.bz2)
build() {
cd ${srcdir}/${pkgname}-${pkgver}
@@ -42,3 +41,4 @@ package() {
rm ${pkgdir}/usr/lib/{libbfd,libiberty,libopcodes}.a
rm ${pkgdir}/usr/share/info/{bfd,configure,standards}.info
}
+md5sums=('ae6c7c98de35dc14b6720c9c321e4d94')
diff --git a/abs/core/gdb/__changelog b/abs/core/gdb/__changelog
new file mode 100644
index 0000000..7541a7f
--- /dev/null
+++ b/abs/core/gdb/__changelog
@@ -0,0 +1,2 @@
+9/17/12 -chw-
+Changed source to archive as there is a new version. Needed to recompile against Python 2.6.
diff --git a/abs/core/python_modules/python-beautifulsoup4/PKGBUILD b/abs/core/python_modules/python-beautifulsoup4/PKGBUILD
new file mode 100644
index 0000000..e5eba14
--- /dev/null
+++ b/abs/core/python_modules/python-beautifulsoup4/PKGBUILD
@@ -0,0 +1,51 @@
+# $Id: PKGBUILD 73500 2012-07-08 17:25:45Z dwallace $
+# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com>
+# Contributor: Giovanni Scafora <giovanni@archlinux.org>
+
+pkgbase=python-beautifulsoup4
+pkgname=('python2-beautifulsoup4' 'python-beautifulsoup4')
+pkgver=4.1.1
+pkgrel=2
+pkgdesc="A Python HTML/XML parser designed for quick turnaround projects like screen-scraping"
+arch=('any')
+url="http://www.crummy.com/software/BeautifulSoup/index.html"
+license=('PSF')
+#makedepends=('python-distribute' 'python2-distribute')
+makedepends=('python2-distribute')
+source=("http://www.crummy.com/software/BeautifulSoup/bs4/download/${pkgver%\.*}/${pkgbase#*-}-${pkgver}.tar.gz")
+md5sums=('fccee58b4d914fb489385d672fe89f43')
+
+build() {
+ cd "${srcdir}"
+ cp -a beautifulsoup4-${pkgver}{,-python2}
+
+ # Build python 3 module
+ cd "${srcdir}/beautifulsoup4-${pkgver}"
+ python setup.py build
+
+ # Build python 2 module
+ cd "${srcdir}/beautifulsoup4-${pkgver}-python2"
+ python2 setup.py build
+}
+
+package_python2-beautifulsoup4() {
+ depends=('python2-distribute')
+ optdepends=('python2-chardet: universal encoding detector'
+ 'python2-lxml: pythonic binding for the libxml2 and libxslt libraries')
+
+ cd "${srcdir}/beautifulsoup4-${pkgver}-python2"
+ python2 setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+
+ rm -rf ${pkgdir}/usr/lib/python2.7/site-packages/bs4/tests
+}
+
+package_python-beautifulsoup4() {
+# depends=('python-distribute')
+ optdepends=('python-chardet: universal encoding detector'
+ 'python-lxml: pythonic binding for the libxml2 and libxslt libraries')
+
+ cd "${srcdir}/beautifulsoup4-${pkgver}"
+ python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+
+ rm -rf ${pkgdir}/usr/lib/python3.2/site-packages/bs4/{__pycache__,tests,builder/__pycache__}
+}
diff --git a/abs/core/python_modules/python-beautifulsoup4/__changelog b/abs/core/python_modules/python-beautifulsoup4/__changelog
new file mode 100644
index 0000000..1cdf6fa
--- /dev/null
+++ b/abs/core/python_modules/python-beautifulsoup4/__changelog
@@ -0,0 +1,2 @@
+9/3/12 - chw
+commented python-distribute as dep since we don't include python3. Built with mp.py --pkg=python2-beautisoup4.
diff --git a/abs/core/python_modules/python-distribute/PKGBUILD b/abs/core/python_modules/python-distribute/PKGBUILD
new file mode 100644
index 0000000..625bcf7
--- /dev/null
+++ b/abs/core/python_modules/python-distribute/PKGBUILD
@@ -0,0 +1,54 @@
+# $Id: PKGBUILD 159385 2012-05-22 22:16:56Z stephane $
+# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
+# Contributor: Sebastien Binet <binet@farnsworth>
+pkgbase=python-distribute
+pkgname=('python-distribute' 'python2-distribute')
+pkgver=0.6.27
+pkgrel=2
+pkgdesc="Easily build and distribute Python packages"
+arch=('any')
+license=('PSF')
+url="http://pypi.python.org/pypi/distribute"
+makedepends=('python' 'python2')
+source=(http://pypi.python.org/packages/source/d/distribute/distribute-${pkgver}.tar.gz
+ distribute-python2_and_3.patch)
+sha1sums=('cebaaf91938581cb8c4a2f708f2b3e770232d3a5'
+ '9c19c12edac507b0f76696d282b9831c4b653a7e')
+build() {
+ cd "${srcdir}"
+
+ pushd distribute-${pkgver}
+ patch -Np1 -i ../distribute-python2_and_3.patch
+ popd
+
+ cp -a distribute-${pkgver}{,-python2}
+
+ # Build python 3 module
+ cd distribute-${pkgver}
+ python setup.py build
+# python setup.py test
+
+ # Build python 2 module
+ cd ../distribute-${pkgver}-python2
+
+ sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python2|" setuptools/tests/test_resources.py
+
+ python2 setup.py build
+# python2 setup.py test
+}
+
+package_python-distribute() {
+ depends=('python>=3.2')
+
+ cd "${srcdir}/distribute-${pkgver}"
+ python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
+}
+
+package_python2-distribute() {
+ depends=('python2>=2.6')
+ provides=('setuptools')
+ conflicts=('setuptools')
+
+ cd "${srcdir}/distribute-${pkgver}-python2"
+ python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
+}
diff --git a/abs/core/python_modules/python-distribute/__changelog b/abs/core/python_modules/python-distribute/__changelog
new file mode 100644
index 0000000..837fd43
--- /dev/null
+++ b/abs/core/python_modules/python-distribute/__changelog
@@ -0,0 +1,2 @@
+9/3/12
+For python2-distribute, change dep to python2.6.
diff --git a/abs/core/python_modules/python-distribute/distribute-python2_and_3.patch b/abs/core/python_modules/python-distribute/distribute-python2_and_3.patch
new file mode 100644
index 0000000..2c51100
--- /dev/null
+++ b/abs/core/python_modules/python-distribute/distribute-python2_and_3.patch
@@ -0,0 +1,36 @@
+diff -Naur distribute-0.6.27.ori/distribute.egg-info/entry_points.txt distribute-0.6.27/distribute.egg-info/entry_points.txt
+--- distribute-0.6.27.ori/distribute.egg-info/entry_points.txt 2012-05-18 15:46:04.000000000 -0400
++++ distribute-0.6.27/distribute.egg-info/entry_points.txt 2012-05-22 18:14:17.443383039 -0400
+@@ -11,6 +11,8 @@
+ install_egg_info = setuptools.command.install_egg_info:install_egg_info
+ alias = setuptools.command.alias:alias
+ easy_install = setuptools.command.easy_install:easy_install
++easy_install-2.7 = setuptools.command.easy_install:main
++easy_install-3.2 = setuptools.command.easy_install:main
+ install_scripts = setuptools.command.install_scripts:install_scripts
+ bdist_wininst = setuptools.command.bdist_wininst:bdist_wininst
+ bdist_egg = setuptools.command.bdist_egg:bdist_egg
+diff -Naur distribute-0.6.27.ori/distribute_setup.py distribute-0.6.27/distribute_setup.py
+--- distribute-0.6.27.ori/distribute_setup.py 2012-05-18 15:45:03.000000000 -0400
++++ distribute-0.6.27/distribute_setup.py 2012-05-22 18:14:17.443383039 -0400
+@@ -299,8 +299,7 @@
+ log.warn('Could not find the install location')
+ return
+ pyver = '%s.%s' % (sys.version_info[0], sys.version_info[1])
+- setuptools_file = 'setuptools-%s-py%s.egg-info' % \
+- (SETUPTOOLS_FAKED_VERSION, pyver)
++ setuptools_file = 'setuptools-%s.egg-info' % SETUPTOOLS_FAKED_VERSION
+ pkg_info = os.path.join(placeholder, setuptools_file)
+ if os.path.exists(pkg_info):
+ log.warn('%s already exists', pkg_info)
+diff -Naur distribute-0.6.27.ori/setup.py distribute-0.6.27/setup.py
+--- distribute-0.6.27.ori/setup.py 2012-05-18 15:19:51.000000000 -0400
++++ distribute-0.6.27/setup.py 2012-05-22 18:14:17.443383039 -0400
+@@ -100,6 +100,7 @@
+ finally:
+ f.close()
+
++console_scripts = ["easy_install-%s = setuptools.command.easy_install:main" % sys.version[:3]]
+
+ # if we are installing Distribute using "python setup.py install"
+ # we need to get setuptools out of the way
diff --git a/abs/extra/python-libconcord/PKGBUILD b/abs/core/python_modules/python-libconcord/PKGBUILD
index fb638f8..fb638f8 100644
--- a/abs/extra/python-libconcord/PKGBUILD
+++ b/abs/core/python_modules/python-libconcord/PKGBUILD
diff --git a/abs/extra/mythappletrailers/PKGBUILD b/abs/extra/mythappletrailers/PKGBUILD
index 2f36a4d..57b6b72 100644
--- a/abs/extra/mythappletrailers/PKGBUILD
+++ b/abs/extra/mythappletrailers/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=mythappletrailers
pkgver=0.04.3
-pkgrel=41
+pkgrel=45
pkgdesc="Unofficial Add-on for MythTV to get Apple.com Movie Trailers."
arch=('i686' 'x86_64')
license=('GPL2')
@@ -11,7 +11,8 @@ url="http://www.mythtv.org/wiki/index.php/Myth_Apple_Trailers"
depends=('php' 'mythtv' 'mplayer-wrapper')
install=mythappletrailers.install
source=('myth_trailers_grabber' 'appletrailer.xml'
-'trailers' 'loading.sh' 'fix_aple_url.sh')
+'trailers' 'loading.sh' 'fix_aple_url.sh'
+'play_trailer.sh' 'gen_trailer_menu.sh' 'all_trailers' 'shuffle_trailers')
build() {
mkdir -p $startdir/pkg/usr/bin
@@ -27,9 +28,18 @@ build() {
cp loading.sh $startdir/pkg/usr/bin/
cp trailers $startdir/pkg/etc/cron.daily/
install -m755 $srcdir/fix_aple_url.sh $pkgdir/usr/bin
+ install -m755 $srcdir/play_trailer.sh $pkgdir/usr/bin
+ install -m755 $srcdir/gen_trailer_menu.sh $pkgdir/usr/bin
+ install -m644 $srcdir/all_trailers $pkgdir/home/mythtv
+ install -m644 $srcdir/shuffle_trailers $pkgdir/home/mythtv
+ chown 1000:1000 $startdir/pkg/home/mythtv/*_trailers
}
md5sums=('336e68953d0e1e8a0c7a4990f8d43a2b'
- 'c7da92600afe2a3b1f564764500315a0'
- '5fdd4aa17b9c1e77b272437ae42a1827'
+ 'be0d071981e5536f24aaf67545a96cc5'
+ 'a508f2de763f5bec5b4549885c062c8a'
'ece3c5f8a605b6e2270c6f7671705631'
- 'a2349f844e47fd95a672739177ca44ff')
+ 'a2349f844e47fd95a672739177ca44ff'
+ '14f153c1efa7ae4e192d87010cbf9f7c'
+ '3e9d8014a0e76e2cf8057291d20c9291'
+ '7af1e58dfab2772dbb6f339481ae8d5d'
+ 'd26681921482cbf334b43f700adf0d29')
diff --git a/abs/extra/mythappletrailers/all_trailers b/abs/extra/mythappletrailers/all_trailers
new file mode 100644
index 0000000..186c49c
--- /dev/null
+++ b/abs/extra/mythappletrailers/all_trailers
@@ -0,0 +1,134 @@
+http://trailers.apple.com/movies/independent/10years/10years-tlr1_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/2daysinny/2daysinny-tlr1_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/360/360-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/7500/7500-tlr1_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/aroyalaffair/aroyalaffair-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/after/after-tlr2_h640w.mov
+http://trailers.apple.com/movies/lionsgate/alexcross/alexcross-tlr1_h640w.mov
+http://trailers.apple.com/movies/focus_features/annakarenina/annakerenina-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/arbitrage/arbitrageroad-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/argo/argo-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/bachelorette/bachelorette-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/battleoftheyear/battleoftheyear-tlr1_h640w.mov
+http://trailers.apple.com/movies/fox_searchlight/beastsofthesouthernwild/beastsofthesouthernwild-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/branded/branded-tlr1_h640w.mov
+http://trailers.apple.com/movies/disney/brave/brave-tlr5_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/celesteandjesseforever/celesteandjesse-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/chained/chained-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/championsofthedeep/championsofthedeep-tlr1_h640w.mov
+http://trailers.apple.com/movies/fox/chasingmavericks/chasingmaverics-tlr2_h640w.mov
+http://trailers.apple.com/movies/sony/chickenwithplums/chickenwithplums-tlr1_h640w.mov
+http://trailers.apple.com/movies/paramount/cirque/cirque-tl1_h640w.mov
+http://trailers.apple.com/movies/wb/cloudatlas/cloudatlas-trailer1b_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/compliance/compliance-tlr1_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/deadfall/deadfall-tlr1_h640w.mov
+http://trailers.apple.com/movies/universal/despicableme2/despicableme2-tsr1_h640w.mov
+http://trailers.apple.com/movies/fox/diaryofawimpykiddogdays/diaryofawimpykiddogday-tlr1_h640w.mov
+http://trailers.apple.com/movies/weinstein/djangounchained/django-tsr1_h640w.mov
+http://trailers.apple.com/movies/independent/doggieb/doggieb-tlr1_h640w.mov
+http://trailers.apple.com/movies/lionsgate/dredd/dredd-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/endofwatch/endofwatch-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/escapefire/escapefire-tlr1_h640w.mov
+http://trailers.apple.com/movies/disney/finding_nemo/findingnemo-tlr1_h640w.mov
+http://trailers.apple.com/movies/paramount/flight/flight-tlr1zyx77_h640w.mov
+http://trailers.apple.com/movies/focus_features/foragoodtimecall/foragoodtimecall-tlr1_h640w.mov
+http://trailers.apple.com/movies/disney/frankenweenie/frankenweenie-tlr2_h640w.mov
+http://trailers.apple.com/movies/lionsgate/freelancers/freelancers-tlr1_h640w.mov
+http://trailers.apple.com/movies/paramount/funsize/funsize-tlr1_h640w.mov
+http://trailers.apple.com/movies/paramount/gijoeretaliation/gijoeretaliation-tlr2_h640w.mov
+http://trailers.apple.com/movies/independent/generaleducation/generaleducation-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/goats/goats-tlr1_h640w.mov
+http://trailers.apple.com/movies/paramount/hanselandgretel/hanselandgretel-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/helloimustbegoing/helloimustbegoing_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/herecomestheboom/herecomestheboom-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/hitandrun/hitandrun-tl1_h640w.mov
+http://trailers.apple.com/movies/sony/hopesprings/hopesprings-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/hoteltransylvania/hoteltransylvania-tlr2_h640w.mov
+http://trailers.apple.com/movies/independent/houseattheendofthestreet/houseattheendofthestreet-tlr3_h640w.mov
+http://trailers.apple.com/movies/focus_features/hydeparkonthehudson/hydeparkonthehudson-tlr1_h640w.mov
+http://trailers.apple.com/movies/fox/iceage4/iceage4-tlr2_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/jackanddiane/jackanddiane-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/killerjoe/killerjoe-tlr1_h640w.mov
+http://trailers.apple.com/movies/weinstein/killingthemsoftly/killingthemsoftly-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/klown/klown-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/luv/luv_h640w.mov
+http://trailers.apple.com/movies/weinstein/lawless/lawless-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/leastamongsaints/leastamongsaints-tlr1_h640w.mov
+http://trailers.apple.com/movies/universal/lesmiserables/lesmiserables-tsr1_h640w.mov
+http://trailers.apple.com/movies/fox/lifeofpi/lifeofpi-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/looper/looper-tlr2_h640w.mov
+http://trailers.apple.com/movies/dreamworks/madagascar3/madagascar3-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/manofsteel/manofsteel-tlr1-r_h640w.mov
+http://trailers.apple.com/movies/independent/middleofnowhere/middleofnowhere-tlr1_h640w.mov
+http://trailers.apple.com/movies/disney/monstersuniversity/monstersuniversity-tlr1_h640w.mov
+http://trailers.apple.com/movies/disney/monstersinc3d/monstersinc3d-tlr3_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/nobodywalks/nobodywalks-tlr1_h640w.mov
+http://trailers.apple.com/movies/disney/ozthegreatandpowerful/oz-tlr1-2938tyz_h640w.mov
+http://trailers.apple.com/movies/focus_features/paranorman/paranorman-tlr2_h640w.mov
+http://trailers.apple.com/movies/paramount/paranormalactivity4/paranormalactivity4-tlr1_h640w.mov
+http://trailers.apple.com/movies/universal/pitchperfect/pitchperfect-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/premiumrush/premiumrush-tlr2_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/rec3/rec3-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/redhooksummer/redhooksummer-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/residentevilretribution/residentevil-tlr2_h640w.mov
+http://trailers.apple.com/movies/dreamworks/riseoftheguardians/riseoftheguardians-tlr2_h640w.mov
+http://trailers.apple.com/movies/independent/robotfrank/robotandfrank-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/sacrifice/sacrifice-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/saintsandsoldiers2/saintsandsoldiers2-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/samsara/samsara-tlr2_h640w.mov
+http://trailers.apple.com/movies/sony/searchingforsugarman/searchingforsugarman-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/sevenpsychopaths/sevenpsychopaths-tlr1_h640w.mov
+http://trailers.apple.com/movies/weinstein/silverliningsplaybook/silverlinings-tlr1_h640w.mov
+http://trailers.apple.com/movies/summit/sinister/sinister-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/skyfall/skyfall-tlr2_h640w.mov
+http://trailers.apple.com/movies/independent/soldiersoffortune/soldiersoffortune-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/solomonkane/solomonkane-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/somewherebetween/somewherebetween-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/sparkle/sparkle-tlr1_h640w.mov
+http://trailers.apple.com/movies/summit/stepuprevolution/stepuprevolution-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/stolen/stolen-tlr2_h640w.mov
+http://trailers.apple.com/movies/fox/taken2/taken2-tlr1_h640w.mov
+http://trailers.apple.com/movies/universal/ted/ted-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/theapparition/theapparition-tlr1_h640w.mov
+http://trailers.apple.com/movies/marvel/theavengers/avengers-7c7b7a-tlr3_h640w.mov
+http://trailers.apple.com/movies/independent/theawakening/awakening-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/babymakers/babymakers-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/thebay/thebay-tlr_h640w.mov
+http://trailers.apple.com/movies/lionsgate/thebigwedding/bigwedding-tlr1_h640w.mov
+http://trailers.apple.com/movies/universal/bournelegacy/bournelegacy-tlr2_h640w.mov
+http://trailers.apple.com/movies/wb/thecampaign/thecampaign-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/thedarkknightrises/darkknightrises-tlr4_h640w.mov
+http://trailers.apple.com/movies/lionsgate/expendables2/expendables2-tlr2_h640w.mov
+http://trailers.apple.com/movies/independent/flyingswords/flyingswords-tlr1b_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/thegooddoctor/gooddoctor-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/thegreatgatsby/greatgatsby-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/thehobbit1/thehobbit-tlr1_h640w.mov
+http://trailers.apple.com/movies/lionsgate/thehungergames/thehungergames-tlr1a_h640w.mov
+http://trailers.apple.com/movies/summit/theimpossible/theimpossible-tlr1_h640w.mov
+http://trailers.apple.com/movies/newline/thelaststand/laststand-tlr1_h640w.mov
+http://trailers.apple.com/movies/universal/themanwiththeironfists/manwiththeironfists-tlr1_h640w.mov
+http://trailers.apple.com/movies/weinstein/themaster/themaster-tlr1_h640w.mov
+http://trailers.apple.com/movies/disney/theoddlifeoftimothygreen/oddlifeoftimothygreen-tlr2_h640w.mov
+http://trailers.apple.com/movies/independent/oogieloves/oog-tlr2_h640w.mov
+http://trailers.apple.com/movies/independent/theoranges/oranges-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/thepaperboy/thepaperboy-tlr1_h640w.mov
+http://trailers.apple.com/movies/summit/theperksofbeingawallflower/perksofbeingawallflower-tlr1_h640w.mov
+http://trailers.apple.com/movies/lionsgate/thepossession/possession-tlr1_h640w.mov
+http://trailers.apple.com/movies/fox_searchlight/thesessions/thesessions-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/thetallman/thetallman-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/troublewiththetruth/troublewiththetruth-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/thetroublewiththecurve/troublewiththecurve-tlr1_h640w.mov
+http://trailers.apple.com/movies/summit/twilightbreakingdawn2/twilightbd2-tlr2_h640w.mov
+http://trailers.apple.com/movies/independent/thevictim/thevictim-tlr1_h640w.mov
+http://trailers.apple.com/movies/fox/thewatch/thewatch-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/thewords/thewords-tlr1_h640w.mov
+http://trailers.apple.com/movies/universal/thisis40/thisis40-tlr3_h640w.mov
+http://trailers.apple.com/movies/weinstein/thismustbetheplace/thismustbetheplace-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/thunderstruck/thunderstruck-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/totalrecall/totalrecall-tlr4_h640w.mov
+http://trailers.apple.com/movies/independent/toysintheattic/toysintheattic-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/unconditional/unconditional-tlr1_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/vhs/vhs-tlr1_h640w.mov
+http://trailers.apple.com/movies/weinstein/warofthebuttons/warofthebuttons-tlr1_h640w.mov
+http://trailers.apple.com/movies/fox/wontbackdown/wontbackdown-tlr1_h640w.mov
+http://trailers.apple.com/movies/disney/wreckitralph/wreakitralph-tlr1_h640w.mov
diff --git a/abs/extra/mythappletrailers/appletrailer.xml b/abs/extra/mythappletrailers/appletrailer.xml
index 9aa19f5..aa18391 100644
--- a/abs/extra/mythappletrailers/appletrailer.xml
+++ b/abs/extra/mythappletrailers/appletrailer.xml
@@ -1,602 +1,824 @@
<mythmenu name="TRAILERS">
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Play All Trailers</text>
+ <action>EXEC /usr/bin/play_trailer.sh /home/mythtv/all_trailers</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Shuffle Play Trailers</text>
+ <action>EXEC /usr/bin/play_trailer.sh /home/mythtv/shuffle_trailers</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Play Random Trailer</text>
+ <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>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>10 Years</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/10years/10years-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>2 Days in New York</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/magnolia_pictures/2daysinny/2daysinny-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>360</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/magnolia_pictures/360/360-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>7500</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/7500/7500-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>A Royal Affair</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/magnolia_pictures/aroyalaffair/aroyalaffair-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>After</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/after/after-tlr2_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Alex Cross</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/lionsgate/alexcross/alexcross-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Anna Karenina</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/focus_features/annakarenina/annakerenina-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Arbitrage</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/arbitrage/arbitrageroad-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Argo</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/argo/argo-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Bachelorette</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/bachelorette/bachelorette-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Battle of the Year</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony_pictures/battleoftheyear/battleoftheyear-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Beasts of the Southern Wild</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox_searchlight/beastsofthesouthernwild/beastsofthesouthernwild-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Branded</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/branded/branded-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Brave</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/brave/brave-tlr5_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Celeste and Jesse Forever</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony_pictures/celesteandjesseforever/celesteandjesse-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Chained</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/chained/chained-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Champions of the Deep</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/championsofthedeep/championsofthedeep-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Chasing Mavericks</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox/chasingmavericks/chasingmaverics-tlr2_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Chicken with Plums</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony/chickenwithplums/chickenwithplums-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Cirque du Soleil: Worlds Away 3D</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/paramount/cirque/cirque-tl1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Cloud Atlas</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/cloudatlas/cloudatlas-trailer1b_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Compliance</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/magnolia_pictures/compliance/compliance-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Deadfall</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/magnolia_pictures/deadfall/deadfall-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Despicable Me 2</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/universal/despicableme2/despicableme2-tsr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Diary of a Wimpy Kid: Dog Days</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox/diaryofawimpykiddogdays/diaryofawimpykiddogday-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Django Unchained</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/weinstein/djangounchained/django-tsr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Doggie B</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/doggieb/doggieb-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Dredd</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/lionsgate/dredd/dredd-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>End of Watch</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/endofwatch/endofwatch-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Escape Fire: The Fight to Rescue American Healthcare</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/escapefire/escapefire-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Finding Nemo 3D</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/finding_nemo/findingnemo-tlr1_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>Flight</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/paramount/flight/flight-tlr1zyx77_h640w.mov</action>
+ </button>
+
+ <button>
+ <type>VIDEO_BROWSER</type>
+ <text>For a Good Time, Call...</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/focus_features/foragoodtimecall/foragoodtimecall-tlr1_h640w.mov</action>
+ </button>
+
<button>
<type>VIDEO_BROWSER</type>
- <text>Morning Glory</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/paramount/morningglory/morningglory-tlr1_h640w.mov</action>
+ <text>Frankenweenie</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/frankenweenie/frankenweenie-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Scott Pilgrim vs. The World</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/universal/scottpilgrim/scottpilgrim-tlr2_h640w.mov</action>
+ <text>Freelancers</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/lionsgate/freelancers/freelancers-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Adjustment Bureau</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/universal/adjustmentbureau/adjustmentbureau-tlr1_h640w.mov</action>
+ <text>Fun Size</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/paramount/funsize/funsize-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Grease Sing-A-Long</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/paramount/greasesingalong/greasesingalong-tlr1_h640w.mov</action>
+ <text>GI Joe: Retaliation</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/paramount/gijoeretaliation/gijoeretaliation-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Solitary Man</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/solitaryman/solitaryman-tlr1_h640w.mov</action>
+ <text>General Education</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/generaleducation/generaleducation-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Racing Dreams</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/racingdreams/racingdreams-tlr1_h640w.mov</action>
+ <text>Goats</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/goats/goats-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Joan Rivers: A Piece of Work</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/joanriversapieceofwork/joanriversapieceofwork-tlr1_h640w.mov</action>
+ <text>Hansel </text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/paramount/hanselandgretel/hanselandgretel-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>The Killer Inside Me</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/ifc_films/killerinsideme/killerinsideme-tlr1_h640w.mov</action>
+ <text>Hello I Must Be Going</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/helloimustbegoing/helloimustbegoing_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>You Again</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/youagain/youagain-tlr1_h640w.mov</action>
+ <text>Here Comes the Boom</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony_pictures/herecomestheboom/herecomestheboom-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Love Ranch</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/loveranch/loveranch-tlr1_h640w.mov</action>
+ <text>Hit </text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/hitandrun/hitandrun-tl1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Charlie St. Cloud</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/universal/charliestcloud/charliestcloud-tlr1_h640w.mov</action>
+ <text>Hope Springs</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony/hopesprings/hopesprings-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Step Up 3D</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/touchstone/stepup3d/stepup3d-tlr2_h640w.mov</action>
+ <text>Hotel Transylvania</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony_pictures/hoteltransylvania/hoteltransylvania-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Secretariat</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/secretariat/secretariat-tlr1_h640w.mov</action>
+ <text>House at the End of the Street</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/houseattheendofthestreet/houseattheendofthestreet-tlr3_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>African Cats</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/africancats/africancats-tlr1_h640w.mov</action>
+ <text>Hyde Park on Hudson</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/focus_features/hydeparkonthehudson/hydeparkonthehudson-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Nowhere Boy</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/weinstein/nowhereboy/nowhereboy-tlr1_h640w.mov</action>
+ <text>Ice Age: Continental Drift</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox/iceage4/iceage4-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Jonah Hex</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/weinstein/jonahhex/jonahhex-tlr1_h640w.mov</action>
+ <text>Jack and Diane</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/magnolia_pictures/jackanddiane/jackanddiane-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Splice</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/splice/splice-tlr2_h640w.mov</action>
+ <text>Killer Joe</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/killerjoe/killerjoe-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Winter's Bone</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/wintersbone/wintersbone-tlr1_h640w.mov</action>
+ <text>Killing Them Softly</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/weinstein/killingthemsoftly/killingthemsoftly-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Super 8</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/paramount/super8/super8-tlr1_h640w.mov</action>
+ <text>Klown</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/klown/klown-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Piranha 3D</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/weinstein/piranha3d/piranha3d-tlr2_h640w.mov</action>
+ <text>LUV</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/luv/luv_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Gangster Paradise: Jerusalema</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/gangsterparadise/gangsterparadise-tlr1_h640w.mov</action>
+ <text>Lawless</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/weinstein/lawless/lawless-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Waiting for Superman</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/paramount_vantage/waitingforsuperman/waitingforsuperman-tlr1a_h640w.mov</action>
+ <text>Least Among Saints</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/leastamongsaints/leastamongsaints-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Survival of the Dead</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/survivalofthedead/survivalofthedead-tlr1_h640w.mov</action>
+ <text>Les Miserables</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/universal/lesmiserables/lesmiserables-tsr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Countdown to Zero</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/magnolia_pictures/countdowntozero/countdowntozero-tlr1_h640w.mov</action>
+ <text>Life of Pi</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox/lifeofpi/lifeofpi-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Nanny McPhee Returns</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/universal/nannymcpheereturns/nannymcpheereturns-tlr1_h640w.mov</action>
+ <text>Looper</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony_pictures/looper/looper-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>I Spit On Your Grave</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/ispitonyourgrave/ispitonyourgrave-tlr1_h640w.mov</action>
+ <text>Madagascar 3: Europe's Most Wanted</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/dreamworks/madagascar3/madagascar3-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Buried</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/lionsgate/buried/buried-tlr1_h640w.mov</action>
+ <text>Man of Steel</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/manofsteel/manofsteel-tlr1-r_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Lottery Ticket</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/lotteryticket/lotteryticket-tlr1_h640w.mov</action>
+ <text>Middle of Nowhere</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/middleofnowhere/middleofnowhere-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Get Low</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony/getlow/getlow-tlr2_h640w.mov</action>
+ <text>Monsters University</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/monstersuniversity/monstersuniversity-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Princess Kaiulani</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/princesskaiulani/princesskaiulani-tlr1_h640w.mov</action>
+ <text>Monsters, Inc. 3D</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/monstersinc3d/monstersinc3d-tlr3_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>The Twilight Saga: Eclipse</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/summit/twilightsagaeclipse/twilightsagaeclipse-tlr2_h640w.mov</action>
+ <text>Nobody Walks</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/magnolia_pictures/nobodywalks/nobodywalks-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>8: The Mormon Proposition</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/8themormonproposition/8themormonproposition_h640w.mov</action>
+ <text>Oz the Great and Powerful</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/ozthegreatandpowerful/oz-tlr1-2938tyz_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Predators</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox/predators/predators-tlr1_h640w.mov</action>
+ <text>ParaNorman</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/focus_features/paranorman/paranorman-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Acts of Violence</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/actsofviolence/actsofviolence-tlr1_h640w.mov</action>
+ <text>Paranormal Activity 4</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/paramount/paranormalactivity4/paranormalactivity4-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>The Disappearance of Alice Creed</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/thedisappearanceofalicecreed/disappearanceofalicecreed-tlr2_h640w.mov</action>
+ <text>Pitch Perfect</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/universal/pitchperfect/pitchperfect-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>The Expendables</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/lionsgate/theexpendables/expendables-tlr2_h640w.mov</action>
+ <text>Premium Rush</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony_pictures/premiumrush/premiumrush-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>TiMER</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/timer/timer-tlr1_h640w.mov</action>
+ <text>Rec 3</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/magnolia_pictures/rec3/rec3-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Paper Man</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/paperman/paperman-tlr1_h640w.mov</action>
+ <text>Red Hook Summer</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/redhooksummer/redhooksummer-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Holy Rollers</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/holyrollers/holyrollers-tlr1_h640w.mov</action>
+ <text>Resident Evil: Retribution</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony_pictures/residentevilretribution/residentevil-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Ondine</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/magnolia_pictures/ondine/ondine-tlr1_h640w.mov</action>
+ <text>Rise of the Guardians</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/dreamworks/riseoftheguardians/riseoftheguardians-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>DCI 2010: The Countdown</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/dci2010thecountdown/dcicountdown-tlr1_h640w.mov</action>
+ <text>Robot </text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/robotfrank/robotandfrank-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>The Other Guys</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony_pictures/theotherguys/theotherguys-tlr1_h640w.mov</action>
+ <text>Sacrifice</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/sacrifice/sacrifice-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>The Kids Are All Right</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/focus_features/thekidsareallright/kidsarealright-tlr1_h640w.mov</action>
+ <text>Saints and Soldiers: Airborne Creed</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/saintsandsoldiers2/saintsandsoldiers2-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Dinner for Schmucks</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/paramount/dinnerforschmucks/dinnerforschmucks-tlr1_h640w.mov</action>
+ <text>Samsara</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/samsara/samsara-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Micmacs</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony/micmacs/micmacs-tlr1_h640w.mov</action>
+ <text>Searching for Sugar Man</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony/searchingforsugarman/searchingforsugarman-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Coco Chanel and Igor Stravinsky</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony/cocoandigor/cocoigor-tlr1_h640w.mov</action>
+ <text>Seven Psychopaths</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/sevenpsychopaths/sevenpsychopaths-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Casino Jack and the United States of Money</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/magnolia_pictures/casinojack/casinojack-tlr1_h640w.mov</action>
+ <text>Silver Linings Playbook</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/weinstein/silverliningsplaybook/silverlinings-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>I Am Love</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/magnolia_pictures/iamlove/iamlove-tlr1_h640w.mov</action>
+ <text>Sinister</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/summit/sinister/sinister-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Mother and Child</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony/motherandchild/motherandchild-tlr1_h640w.mov</action>
+ <text>Skyfall</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony_pictures/skyfall/skyfall-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Just Wright</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox_searchlight/justwright/justwright-tlr1_h640w.mov</action>
+ <text>Soldiers of Fortune</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/soldiersoffortune/soldiersoffortune-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>In My Sleep</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/inmysleep/inmysleep_h640w.mov</action>
+ <text>Solomon Kane</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/solomonkane/solomonkane-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>My Girlfriend's Boyfriend</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/mygirlfriendsboyfriend/mygirlfriendsboyfriend-tlr1_h640w.mov</action>
+ <text>Somewhere Between</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/somewherebetween/somewherebetween-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Wild Grass</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony/wildgrass/wildgrass-tlr1_h640w.mov</action>
+ <text>Sparkle</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony_pictures/sparkle/sparkle-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Eat Pray Love</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony/eatpraylove/eatpraylove-tlr1_h640w.mov</action>
+ <text>Step Up: Revolution</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/summit/stepuprevolution/stepuprevolution-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>The Secret In Their Eyes</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony/thesecretintheireyes/thesecretintheireyes-tlr1_h640w.mov</action>
+ <text>Stolen</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/stolen/stolen-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>The Switch</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/miramax/theswitch/theswitch-tlr1_h640w.mov</action>
+ <text>Taken 2</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox/taken2/taken2-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Harry Brown</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/harrybrown/harrybrown-tlr1a_h640w.mov</action>
+ <text>Ted</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/universal/ted/ted-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Please Give</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony/pleasegive/pleasegive-tlr1_h640w.mov</action>
+ <text>The Apparition</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/theapparition/theapparition-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Touching Home</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/touchinghome/touchinghome-tlr1_h640w.mov</action>
+ <text>The Avengers</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/marvel/theavengers/avengers-7c7b7a-tlr3_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Hey Hey It's Esther Blueburger </text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/heyheyitsestherblueburger/heyhey-tlr1_h640w.mov</action>
+ <text>The Awakening</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/theawakening/awakening-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>The Good Heart</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/magnolia_pictures/thegoodheart/thegoodheart-tlr1_h640w.mov</action>
+ <text>The Babymakers</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/babymakers/babymakers-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Killers</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/lionsgate/killers/killers-tlr1_h640w.mov</action>
+ <text>The Bay</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/thebay/thebay-tlr_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Get Him To The Greek</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/universal/gethimtothegreek/gethimtothegreek-tlr_h640w.mov</action>
+ <text>The Big Wedding</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/lionsgate/thebigwedding/bigwedding-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>The A-Team</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox/theateam/ateam-tlr2_h640w.mov</action>
+ <text>The Bourne Legacy</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/universal/bournelegacy/bournelegacy-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Alice In Wonderland</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/aliceinwonderland/aliceinwonderland-tlr1_h640w.mov</action>
+ <text>The Campaign</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/thecampaign/thecampaign-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Avatar</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox/avatar/avatar-tlrf_h640w.mov</action>
+ <text>The Dark Knight Rises</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/thedarkknightrises/darkknightrises-tlr4_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Babies</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/focus_features/babies/babies-tlr1_h640w.mov</action>
+ <text>The Expendables 2</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/lionsgate/expendables2/expendables2-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>The Back-up Plan</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/thebackupplan/backupplan-tlr1_h640w.mov</action>
+ <text>The Flying Swords of Dragon Gate</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/flyingswords/flyingswords-tlr1b_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Beastly</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/beastly/beastly-tlr1b_h640w.mov</action>
+ <text>The Good Doctor</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/magnolia_pictures/thegooddoctor/gooddoctor-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Cats and Dogs: The Revenge of Kitty Galore 3D</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/catsanddogs2/catsanddogs2-tlr1_h640w.mov</action>
+ <text>The Great Gatsby</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/thegreatgatsby/greatgatsby-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Cyrus</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox_searchlight/cyrus/cyrus-tlr1_h640w.mov</action>
+ <text>The Hobbit: An Unexpected Journey</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/thehobbit1/thehobbit-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Date Night</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox/datenight/datenight-tlr1_h640w.mov</action>
+ <text>The Hunger Games</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/lionsgate/thehungergames/thehungergames-tlr1a_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Despicable Me</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/universal/despicableme/despicableme-tlr5i_h640w.mov</action>
+ <text>The Impossible</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/summit/theimpossible/theimpossible-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Furry Vengeance</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/summit/furryvengeance/furryvengeance-tlr1_h640w.mov</action>
+ <text>The Last Stand</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/newline/thelaststand/laststand-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Grown Ups</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony_pictures/grownups/grownups-tlr2_h640w.mov</action>
+ <text>The Man with the Iron Fists</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/universal/themanwiththeironfists/manwiththeironfists-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Hot Tub Time Machine</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/mgm/hottubtimemachine/hottubtimemachine-tlr2_h640w.mov</action>
+ <text>The Master</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/weinstein/themaster/themaster-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>How To Train Your Dragon</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/dreamworks/howtotrainyourdragon/howtotrainyourdragon-tlr2_h640w.mov</action>
+ <text>The Odd Life of Timothy Green</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/theoddlifeoftimothygreen/oddlifeoftimothygreen-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Hubble 3D</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/imax/hubble3d/hubble3d-tlr1_h640w.mov</action>
+ <text>The Oogieloves in the Big Balloon Adventure</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/oogieloves/oog-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Inception</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/inception/inception-tlr3_h640w.mov</action>
+ <text>The Oranges</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/theoranges/oranges-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Iron Man 2</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/paramount/ironman2/ironman2-34rgrwt9-tlr2_h640w.mov</action>
+ <text>The Paperboy</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/thepaperboy/thepaperboy-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Karate Kid</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony_pictures/karatekid/karatekid-tlr2_h640w.mov</action>
+ <text>The Perks of Being a Wallflower</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/summit/theperksofbeingawallflower/perksofbeingawallflower-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Knight and Day</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox/knightandday/knightandday-tlr2_h640w.mov</action>
+ <text>The Possession</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/lionsgate/thepossession/possession-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>The Last Airbender</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/paramount/thelastairbender/lastairbender-tlr3_h640w.mov</action>
+ <text>The Sessions</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox_searchlight/thesessions/thesessions-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Letters To Juliet</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/summit/letterstojuliet/letterstojuliet-tlr1_h640w.mov</action>
+ <text>The Tall Man</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/thetallman/thetallman-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>The Losers</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/thelosers/thelosers-tlr1b_h640w.mov</action>
+ <text>The Trouble With The Truth</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/troublewiththetruth/troublewiththetruth-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>MacGruber</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/universal/macgruber/macgruber-tlr4_h640w.mov</action>
+ <text>The Trouble with the Curve</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/thetroublewiththecurve/troublewiththecurve-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Multiple Sarcasms</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/multiplesarcasms/multiplesarcasms-tlr1_h640w.mov</action>
+ <text>The Twilight Saga: Breaking Dawn - Part 2</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/summit/twilightbreakingdawn2/twilightbd2-tlr2_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>A Nightmare On Elm Street</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/newline/anightmareonelmstreet/nightmareonelmstreet-tlr2_h640w.mov</action>
+ <text>The Victim</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/thevictim/thevictim-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Oceans</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/oceans/oceans-tsr1_h640w.mov</action>
+ <text>The Watch</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox/thewatch/thewatch-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Prince of Persia: the Sands of Time</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/princeofpersia/princeofpersia-tlr1_h640w.mov</action>
+ <text>The Words</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/thewords/thewords-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Robin Hood</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/universal/robinhood/robinhood-tlr3_h640w.mov</action>
+ <text>This Is 40</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/universal/thisis40/thisis40-tlr3_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Salt</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony_pictures/salt/salt-tlr2_h640w.mov</action>
+ <text>This Must Be the Place</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/weinstein/thismustbetheplace/thismustbetheplace-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Sex and the City 2</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/sexandthecity2/sexandthecity2-tlr2_h640w.mov</action>
+ <text>Thunderstruck</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/wb/thunderstruck/thunderstruck-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Shrek Forever After</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/dreamworks/shrekforeverafter/shrek4-tlr2_h640w.mov</action>
+ <text>Total Recall</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/sony_pictures/totalrecall/totalrecall-tlr4_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Shutter Island</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/paramount/shutterisland/shutterisland-tlr1r2r_h640w.mov</action>
+ <text>Toys in the Attic</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/toysintheattic/toysintheattic-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>The Sorcerer's Apprentice</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/thesorcerersapprentice/sorcerersapprentice-tlr2_h640w.mov</action>
+ <text>Unconditional</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/independent/unconditional/unconditional-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Toy Story 3</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/toystory3/toystory3-tlr3_h640w.mov</action>
+ <text>V/H/S</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/magnolia_pictures/vhs/vhs-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Tron Legacy</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/tronlegacy/tronlegacy-tsr1_h640w.mov</action>
+ <text>War of the Buttons</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/weinstein/warofthebuttons/warofthebuttons-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Tyler Perry's Why Did I Get Married Too</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/lionsgate/whydidigetmarriedtoo/whydidigetmarriedtoo-tlr2_h640w.mov</action>
+ <text>Won't Back Down</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox/wontbackdown/wontbackdown-tlr1_h640w.mov</action>
</button>
<button>
<type>VIDEO_BROWSER</type>
- <text>Wall Street: Money Never Sleeps</text>
- <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/fox/wallstreetmoneyneversleeps/wallstreet-tlrf_h640w.mov</action>
+ <text>Wreck-It Ralph</text>
+ <action>EXEC loading.sh &amp;&amp; mplayer-wrapper.pl -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 http://trailers.apple.com/movies/disney/wreckitralph/wreakitralph-tlr1_h640w.mov</action>
</button>
</mythmenu>
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 &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
diff --git a/abs/extra/mythappletrailers/play_trailer.sh b/abs/extra/mythappletrailers/play_trailer.sh
new file mode 100644
index 0000000..b584bd1
--- /dev/null
+++ b/abs/extra/mythappletrailers/play_trailer.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+for TRAILER in $(cat $1)
+do
+ /usr/bin/loading.sh
+ mplayer -fs -zoom -really-quiet -user-agent "QuickTime/7.6.2" -cache 16000 $TRAILER
+done
+
+
diff --git a/abs/extra/mythappletrailers/shuffle_trailers b/abs/extra/mythappletrailers/shuffle_trailers
new file mode 100644
index 0000000..f2d3a5e
--- /dev/null
+++ b/abs/extra/mythappletrailers/shuffle_trailers
@@ -0,0 +1,134 @@
+http://trailers.apple.com/movies/lionsgate/expendables2/expendables2-tlr2_h640w.mov
+http://trailers.apple.com/movies/dreamworks/riseoftheguardians/riseoftheguardians-tlr2_h640w.mov
+http://trailers.apple.com/movies/focus_features/hydeparkonthehudson/hydeparkonthehudson-tlr1_h640w.mov
+http://trailers.apple.com/movies/weinstein/themaster/themaster-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony/searchingforsugarman/searchingforsugarman-tlr1_h640w.mov
+http://trailers.apple.com/movies/focus_features/paranorman/paranorman-tlr2_h640w.mov
+http://trailers.apple.com/movies/summit/theperksofbeingawallflower/perksofbeingawallflower-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/flyingswords/flyingswords-tlr1b_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/aroyalaffair/aroyalaffair-tlr1_h640w.mov
+http://trailers.apple.com/movies/dreamworks/madagascar3/madagascar3-tlr1_h640w.mov
+http://trailers.apple.com/movies/paramount/funsize/funsize-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/samsara/samsara-tlr2_h640w.mov
+http://trailers.apple.com/movies/universal/despicableme2/despicableme2-tsr1_h640w.mov
+http://trailers.apple.com/movies/independent/killerjoe/killerjoe-tlr1_h640w.mov
+http://trailers.apple.com/movies/universal/ted/ted-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/luv/luv_h640w.mov
+http://trailers.apple.com/movies/fox/thewatch/thewatch-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/thewords/thewords-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/chained/chained-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/thedarkknightrises/darkknightrises-tlr4_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/thegooddoctor/gooddoctor-tlr1_h640w.mov
+http://trailers.apple.com/movies/paramount/gijoeretaliation/gijoeretaliation-tlr2_h640w.mov
+http://trailers.apple.com/movies/independent/escapefire/escapefire-tlr1_h640w.mov
+http://trailers.apple.com/movies/lionsgate/thebigwedding/bigwedding-tlr1_h640w.mov
+http://trailers.apple.com/movies/disney/monstersinc3d/monstersinc3d-tlr3_h640w.mov
+http://trailers.apple.com/movies/sony/hopesprings/hopesprings-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/cloudatlas/cloudatlas-trailer1b_h640w.mov
+http://trailers.apple.com/movies/independent/somewherebetween/somewherebetween-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/herecomestheboom/herecomestheboom-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/soldiersoffortune/soldiersoffortune-tlr1_h640w.mov
+http://trailers.apple.com/movies/summit/sinister/sinister-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/thehobbit1/thehobbit-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/after/after-tlr2_h640w.mov
+http://trailers.apple.com/movies/paramount/hanselandgretel/hanselandgretel-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/thevictim/thevictim-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/7500/7500-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/thunderstruck/thunderstruck-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/championsofthedeep/championsofthedeep-tlr1_h640w.mov
+http://trailers.apple.com/movies/summit/twilightbreakingdawn2/twilightbd2-tlr2_h640w.mov
+http://trailers.apple.com/movies/paramount/cirque/cirque-tl1_h640w.mov
+http://trailers.apple.com/movies/fox/taken2/taken2-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/10years/10years-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/stolen/stolen-tlr2_h640w.mov
+http://trailers.apple.com/movies/weinstein/thismustbetheplace/thismustbetheplace-tlr1_h640w.mov
+http://trailers.apple.com/movies/marvel/theavengers/avengers-7c7b7a-tlr3_h640w.mov
+http://trailers.apple.com/movies/newline/thelaststand/laststand-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/klown/klown-tlr1_h640w.mov
+http://trailers.apple.com/movies/lionsgate/freelancers/freelancers-tlr1_h640w.mov
+http://trailers.apple.com/movies/disney/finding_nemo/findingnemo-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/hitandrun/hitandrun-tl1_h640w.mov
+http://trailers.apple.com/movies/independent/theoranges/oranges-tlr1_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/jackanddiane/jackanddiane-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/arbitrage/arbitrageroad-tlr1_h640w.mov
+http://trailers.apple.com/movies/weinstein/lawless/lawless-tlr1_h640w.mov
+http://trailers.apple.com/movies/summit/stepuprevolution/stepuprevolution-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/thetroublewiththecurve/troublewiththecurve-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/leastamongsaints/leastamongsaints-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/middleofnowhere/middleofnowhere-tlr1_h640w.mov
+http://trailers.apple.com/movies/focus_features/foragoodtimecall/foragoodtimecall-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/endofwatch/endofwatch-tlr1_h640w.mov
+http://trailers.apple.com/movies/paramount/flight/flight-tlr1zyx77_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/2daysinny/2daysinny-tlr1_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/vhs/vhs-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/sevenpsychopaths/sevenpsychopaths-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/helloimustbegoing/helloimustbegoing_h640w.mov
+http://trailers.apple.com/movies/universal/lesmiserables/lesmiserables-tsr1_h640w.mov
+http://trailers.apple.com/movies/weinstein/warofthebuttons/warofthebuttons-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/redhooksummer/redhooksummer-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/saintsandsoldiers2/saintsandsoldiers2-tlr1_h640w.mov
+http://trailers.apple.com/movies/universal/pitchperfect/pitchperfect-tlr1_h640w.mov
+http://trailers.apple.com/movies/disney/frankenweenie/frankenweenie-tlr2_h640w.mov
+http://trailers.apple.com/movies/independent/toysintheattic/toysintheattic-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/battleoftheyear/battleoftheyear-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/oogieloves/oog-tlr2_h640w.mov
+http://trailers.apple.com/movies/summit/theimpossible/theimpossible-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/sparkle/sparkle-tlr1_h640w.mov
+http://trailers.apple.com/movies/fox/wontbackdown/wontbackdown-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/argo/argo-tlr1_h640w.mov
+http://trailers.apple.com/movies/universal/themanwiththeironfists/manwiththeironfists-tlr1_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/360/360-tlr1_h640w.mov
+http://trailers.apple.com/movies/lionsgate/alexcross/alexcross-tlr1_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/rec3/rec3-tlr1_h640w.mov
+http://trailers.apple.com/movies/weinstein/silverliningsplaybook/silverlinings-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/looper/looper-tlr2_h640w.mov
+http://trailers.apple.com/movies/lionsgate/thehungergames/thehungergames-tlr1a_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/premiumrush/premiumrush-tlr2_h640w.mov
+http://trailers.apple.com/movies/lionsgate/dredd/dredd-tlr1_h640w.mov
+http://trailers.apple.com/movies/fox/chasingmavericks/chasingmaverics-tlr2_h640w.mov
+http://trailers.apple.com/movies/independent/doggieb/doggieb-tlr1_h640w.mov
+http://trailers.apple.com/movies/weinstein/djangounchained/django-tsr1_h640w.mov
+http://trailers.apple.com/movies/fox/iceage4/iceage4-tlr2_h640w.mov
+http://trailers.apple.com/movies/independent/thetallman/thetallman-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/troublewiththetruth/troublewiththetruth-tlr1_h640w.mov
+http://trailers.apple.com/movies/fox_searchlight/thesessions/thesessions-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/sacrifice/sacrifice-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/houseattheendofthestreet/houseattheendofthestreet-tlr3_h640w.mov
+http://trailers.apple.com/movies/disney/theoddlifeoftimothygreen/oddlifeoftimothygreen-tlr2_h640w.mov
+http://trailers.apple.com/movies/independent/babymakers/babymakers-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/robotfrank/robotandfrank-tlr1_h640w.mov
+http://trailers.apple.com/movies/weinstein/killingthemsoftly/killingthemsoftly-tlr1_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/compliance/compliance-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/celesteandjesseforever/celesteandjesse-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/skyfall/skyfall-tlr2_h640w.mov
+http://trailers.apple.com/movies/independent/thepaperboy/thepaperboy-tlr1_h640w.mov
+http://trailers.apple.com/movies/paramount/paranormalactivity4/paranormalactivity4-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/generaleducation/generaleducation-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/thegreatgatsby/greatgatsby-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/residentevilretribution/residentevil-tlr2_h640w.mov
+http://trailers.apple.com/movies/fox/diaryofawimpykiddogdays/diaryofawimpykiddogday-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/unconditional/unconditional-tlr1_h640w.mov
+http://trailers.apple.com/movies/universal/thisis40/thisis40-tlr3_h640w.mov
+http://trailers.apple.com/movies/independent/theawakening/awakening-tlr1_h640w.mov
+http://trailers.apple.com/movies/disney/ozthegreatandpowerful/oz-tlr1-2938tyz_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/totalrecall/totalrecall-tlr4_h640w.mov
+http://trailers.apple.com/movies/wb/thecampaign/thecampaign-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/solomonkane/solomonkane-tlr1_h640w.mov
+http://trailers.apple.com/movies/wb/manofsteel/manofsteel-tlr1-r_h640w.mov
+http://trailers.apple.com/movies/wb/theapparition/theapparition-tlr1_h640w.mov
+http://trailers.apple.com/movies/universal/bournelegacy/bournelegacy-tlr2_h640w.mov
+http://trailers.apple.com/movies/independent/bachelorette/bachelorette-tlr1_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/nobodywalks/nobodywalks-tlr1_h640w.mov
+http://trailers.apple.com/movies/fox_searchlight/beastsofthesouthernwild/beastsofthesouthernwild-tlr1_h640w.mov
+http://trailers.apple.com/movies/magnolia_pictures/deadfall/deadfall-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/branded/branded-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/thebay/thebay-tlr_h640w.mov
+http://trailers.apple.com/movies/sony/chickenwithplums/chickenwithplums-tlr1_h640w.mov
+http://trailers.apple.com/movies/disney/brave/brave-tlr5_h640w.mov
+http://trailers.apple.com/movies/focus_features/annakarenina/annakerenina-tlr1_h640w.mov
+http://trailers.apple.com/movies/lionsgate/thepossession/possession-tlr1_h640w.mov
+http://trailers.apple.com/movies/fox/lifeofpi/lifeofpi-tlr1_h640w.mov
+http://trailers.apple.com/movies/disney/wreckitralph/wreakitralph-tlr1_h640w.mov
+http://trailers.apple.com/movies/sony_pictures/hoteltransylvania/hoteltransylvania-tlr2_h640w.mov
+http://trailers.apple.com/movies/disney/monstersuniversity/monstersuniversity-tlr1_h640w.mov
+http://trailers.apple.com/movies/independent/goats/goats-tlr1_h640w.mov
diff --git a/abs/extra/mythappletrailers/trailers b/abs/extra/mythappletrailers/trailers
index 241a60a..9611439 100755
--- a/abs/extra/mythappletrailers/trailers
+++ b/abs/extra/mythappletrailers/trailers
@@ -1,2 +1,2 @@
#!/bin/sh
-su mythtv -c '/usr/bin/php -q /usr/bin/myth_trailers_grabber > /home/mythtv/appletrailer.xml && /usr/bin/fix_aple_url.sh' 2>/dev/null
+su mythtv -c '/usr/bin/php -q /usr/bin/myth_trailers_grabber > /home/mythtv/appletrailer.xml && /usr/bin/fix_aple_url.sh && /usr/bin/gen_trailer_menu.sh' 2>/dev/null
diff --git a/abs/extra/pyxis/PKGBUILD b/abs/extra/pyxis/PKGBUILD
new file mode 100644
index 0000000..436db6e
--- /dev/null
+++ b/abs/extra/pyxis/PKGBUILD
@@ -0,0 +1,27 @@
+# Contributor: Corey Ling <kasuko@gmail.com>
+
+pkgname=pyxis
+pkgver=0.2.3
+pkgrel=2
+pkgdesc="SIRIUS/XM Internet Radio Player for Command Line"
+url="http://www.ionshard.com/pyxis"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('python2-beautifulsoup4' 'mplayer' 'python2')
+makedepends=('python2' 'setuptools')
+optdepends=('python-notify: for OSD notifications')
+conflicts=()
+replaces=()
+backup=()
+options=(!emptydirs)
+install=
+source=( "https://github.com/Kasuko/pyxis/tarball/v$pkgver" "python2.patch" )
+
+build() {
+ cd $srcdir/Kasuko-pyxis*
+ patch -p0 < ../../python2.patch
+ python2 setup.py install --root=$pkgdir
+}
+
+md5sums=('b2f42dc7bb5e2a0a6c0ef0ff6f327790'
+ '3096a832aac9e155cd21e2d108168516')
diff --git a/abs/extra/pyxis/__changelog b/abs/extra/pyxis/__changelog
new file mode 100644
index 0000000..2410a63
--- /dev/null
+++ b/abs/extra/pyxis/__changelog
@@ -0,0 +1,2 @@
+9/3/12 chw
+Changed dep from python-beautiful to python2-beautifulsoup4.
diff --git a/abs/extra/pyxis/python2.patch b/abs/extra/pyxis/python2.patch
new file mode 100644
index 0000000..e53cf99
--- /dev/null
+++ b/abs/extra/pyxis/python2.patch
@@ -0,0 +1,90 @@
+diff --git bin/pyxis bin/pyxis
+index 9b447fb..0350278 100755
+--- bin/pyxis
++++ bin/pyxis
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python
++#!/usr/bin/env python2
+ #Pyxis and Original Sipie: Sirius Command Line Player
+ #Copyright (C) Corey Ling, Eli Criffield
+ #
+diff --git pyxis/Config.py pyxis/Config.py
+index d4d6d29..a36778e 100644
+--- pyxis/Config.py
++++ pyxis/Config.py
+@@ -1,4 +1,4 @@
+-#!/usr/bin/python
++#!/usr/bin/python2
+ #Pyxis and Original Sipie: Sirius Command Line Player
+ #Copyright (C) Corey Ling, Eli Criffield
+ #
+diff --git pyxis/Debug.py pyxis/Debug.py
+index d4af851..bf1bd6e 100644
+--- pyxis/Debug.py
++++ pyxis/Debug.py
+@@ -1,4 +1,4 @@
+-#!/usr/bin/python
++#!/usr/bin/python2
+ #Pyxis
+ #Copyright (C) Corey Ling
+ #
+diff --git pyxis/Exceptions.py pyxis/Exceptions.py
+index a1b5f8d..0270a02 100644
+--- pyxis/Exceptions.py
++++ pyxis/Exceptions.py
+@@ -1,4 +1,4 @@
+-#!/usr/bin/python
++#!/usr/bin/python2
+ #Pyxis and Original Sipie: Sirius Command Line Player
+ #Copyright (C) Corey Ling, Eli Criffield
+ #
+diff --git pyxis/Interface.py pyxis/Interface.py
+index 3c60a7c..1b0c05c 100644
+--- pyxis/Interface.py
++++ pyxis/Interface.py
+@@ -1,4 +1,4 @@
+-#!/usr/bin/python
++#!/usr/bin/python2
+ #Pyxis and Original Sipie: Sirius Command Line Player
+ #Copyright (C) Corey Ling, Eli Criffield
+ #
+diff --git pyxis/Player.py pyxis/Player.py
+index 8e945ba..c467acd 100644
+--- pyxis/Player.py
++++ pyxis/Player.py
+@@ -1,4 +1,4 @@
+-#!/usr/bin/python
++#!/usr/bin/python2
+ #Pyxis and Original Sipie: Sirius Command Line Player
+ #Copyright (C) Corey Ling, Eli Criffield
+ #
+diff --git pyxis/ProviderCanada.py pyxis/ProviderCanada.py
+index 4d84952..9ff2aa6 100644
+--- pyxis/ProviderCanada.py
++++ pyxis/ProviderCanada.py
+@@ -1,4 +1,4 @@
+-#!/usr/bin/python
++#!/usr/bin/python2
+ #Pyxis and Original Sipie: Sirius Command Line Player
+ #Copyright (C) Corey Ling, Eli Criffield
+ #
+diff --git pyxis/ProviderUSA.py pyxis/ProviderUSA.py
+index 7c30eaf..b1fb950 100644
+--- pyxis/ProviderUSA.py
++++ pyxis/ProviderUSA.py
+@@ -1,4 +1,4 @@
+-#!/usr/bin/python
++#!/usr/bin/python2
+ #Pyxis and Original Sipie: Sirius Command Line Player
+ #Copyright (C) Corey Ling, Eli Criffield
+ #
+diff --git pyxis/Sirius.py pyxis/Sirius.py
+index 30a25d6..75f1fb6 100644
+--- pyxis/Sirius.py
++++ pyxis/Sirius.py
+@@ -1,4 +1,4 @@
+-#!/usr/bin/python
++#!/usr/bin/python2
+ #Pyxis and Original Sipie: Sirius Command Line Player
+ #Copyright (C) Corey Ling, Eli Criffield
+ #