ok, but moviemaze offers a lot of (high quality) trailers in german (and also english) - there also is an other plugin (Moviemazer), which could scrape the site - but this Addon doesn't download the trailers
Best would be a way to set up a own scraper, but this is beyond my capabilities ... (I think).
The standard RSS feed looks like:
Trailer zu "Madea's Big Happy Family"
Länge: 1.35 Minuten Sprache: en
### could be filtered by language (no idea if there is also an mmpa filter)
+++ After opening the link (title), the page is like following:
http://www.moviemaze.de/media/trailer/63...html#11326
### could be filtered by resolution
+++ HTML says:
<a href="/media/trailer/view/58930/9553dbf42e07b0c35697d4c31617d03c/6327_trailer02-en_1920.mov" target="_blank" title="Trailer 2 (1920x1036) zu Madeas Big Happy Family ansehen" rel="nofollow"><img src="http://cdn2.mm-static.de/media/trailer/grafiken/new_view.gif" width="15" height="15" border="0" alt="Trailer 2 (1920x1036) zu Madeas Big Happy Family ansehen"></a>
EDIT
-----------------
MORE easy than I first thought:
just replace the /media/trailer/
view with
delivery and there it is - skiping one page
-----------------
/EDIT
+++ Next page is:
http://www.moviemaze.de/media/trailer/vi...n_1920.mov
+++ says:
Code:
<td align="center" style="padding: 20px 30px 20px 30px;"><object width="1920" height="1052" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="controller" value="true"><param name="autoplay" value="true"><param name="target" value="myself"><param name="pluginspage" value="http://www.apple.com/quicktime/download/"><param name="src" value="/media/trailer/delivery/58930/9553dbf42e07b0c35697d4c31617d03c/makeplaylist.dll"><param name="volume" value="100"><embed width="1920" height="1052" volume="100" controller="true" target="myself" autoplay="true" src="/media/trailer/delivery/58930/9553dbf42e07b0c35697d4c31617d03c/makeplaylist.dll" bgcolor="#000000" border="0" pluginspage="http://www.apple.com/quicktime/download/"></object></td>
### Hello again apple
### .dl
But a german source (
http://www.moviemaze.de/media/trailer/vi...de_720.mov ) says:
Code:
<td align="center" style="padding: 20px 30px 20px 30px;"><object width="720" height="450" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="controller" value="true"><param name="autoplay" value="true"><param name="target" value="myself"><param name="pluginspage" value="http://www.apple.com/quicktime/download/"><param name="src" value="/media/trailer/delivery/58780/72305ab8d0adf29a696fe66689eef1cf/dark-ride_trailer02-de_xhigh.mov"><param name="volume" value="100"><embed width="720" height="450" volume="100" controller="true" target="myself" autoplay="true" src="/media/trailer/delivery/58780/72305ab8d0adf29a696fe66689eef1cf/dark-ride_trailer02-de_xhigh.mov" bgcolor="#000000" border="0" pluginspage="http://www.apple.com/quicktime/download/"></object></td>
There it is: http://www.moviemaze.de/media/trailer/de..._xhigh.mov
Seems simple
1. Scrape the Rss-feed of moviemaze for newest movies
2. look for language and if selected (de
) scrape next link
3. look for best (selected) resolution (in selected language table - because the page shows all available languages and often more than one version of the trailer) and scrape next link
( 4. look for the .mov file and stream / download it ) - just replace view with delivery and the 4. isn't needed any longer.
Maybe I could do a script in perl, but there are much better scripter out there